I need to resize the .swf file. I know I can adjust it to 100% in the html and all and can do it w/ the stage class. But it still messes up in Firefox…tiny little movie at the top. not cool. if anyone could help i would appreciate it.
much love
I need to resize the .swf file. I know I can adjust it to 100% in the html and all and can do it w/ the stage class. But it still messes up in Firefox…tiny little movie at the top. not cool. if anyone could help i would appreciate it.
much love
hey. that firefox bug got me too…what we did to counter it was wrap the swf in a table. if u are like me though, and u hate tables, u can try using a bit of ascript to make the content inside your swf grow/shrink - relative to your browser dimensions. “stage.width” - take a look in your help files, its very straight forward. something like:
[AS]
stageW = stage.width;
stageH = stage.height;
myContent._height = stageH - 20;
myContent._width = stageW - 20;
stage.align = “CC”;
//this just centres our content and makes it grow with the browser dimensions
[/AS]
:: Copyright KIRUPA 2024 //--