PDA

View Full Version : 100% swf scale & loading movies inside


yizhi
03-24-2004, 04:43 AM
Hello Guys,

I'm actually working on a swf file that should be 100% streched to the explorer window, just like www.robertreich.de

My problem is, if I set my swf to 100% width and 100% height, the other movies that I use to load inside the streched main swf file doesn't keep the original height and width. The submovie is also streched then.

My question is: How do I make a main swf with 100% height and 100% width and all the internal swf files that the main swf will load keep its original size.

Just check the site http://www.robertreich.de and you will know what i mean.

Please help.

ultradeq
03-24-2004, 05:50 AM
add this code into <object> in html:

<object>
...
<param name="scale" value="noscale" />
<embed ... scale="noscale" ... />
</object>

yizhi
03-24-2004, 06:09 AM
hey it works,

thank you very much ultradeq