setDimension(550, 400); $movie->setBackground(rand(0,0xFF),rand(0,0xFF),rand(0,0xFF)); $f = new SWFFont("Webdings.fdb"); $fo=$f->getShape(116); $orig=array("\n","to ","moveto","lineto","curveto"," "); $new=array(")\n","to(","movepento","drawlineto","drawcurveto",","); $fo=str_replace($orig,$new,$fo); $fos=explode("\n",$fo); $sh=new SWFShape(); $sh->setRightFill(205,255,255); for($i=0;$i$fos[$i];"); } $f1=$movie->add($sh); $f1->moveto(-45,360); $f1->scaleto(0.6,0.5); // save swf with same name as filename $swfname = basename(__FILE__,".php"); $movie->save("$swfname.swf",9); ?>