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