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