hi all
i want to call a swf file in my page. now i want to increse width and height of this swf file and save in another swf file.
i use these code but width and height is not increase.if any know how to increase width and height please help me.
<?php
$m = new SWFMovie();
$m-> setDimension(800,600);
$m->setBackground(0, 0, 0 );
$strAction = "this.createEmptyMovieClip('amit',10);
loadMovie('lightmovie.swf',amit);
if(amit.width < lightmoviw.swf.width && amit.height < lightmovie.swf.height)
{
amit.width = 800;
amit.height = 600;
}
";
$m->add(new SWFAction(str_replace('\r','',$strAction)));
$m->save("new.swf");
?>
amit