1#!/usr/bin/php -c.
2<?php
3$m = new SWFMovie();
4
5
6/* SWF_SETBACKGROUNDCOLOR */
7$m->setBackground(0xff, 0xff, 0xff);
8
9/* SWF_FRAMELABEL */
10$m->labelFrame('frame0');
11
12/* SWF_SHOWFRAME */
13$m->nextFrame(); /* end of frame 1 */
14
15/* SWF_END */
16
17$m->save("test01.swf");
18?>
19