2/17/2010 11:14:02 PM
Title:
Animation to fill screen size
I have a slideshow-like animation. With the flash player, I can maximise the window and it looks good - how I want it to appear on my website. But using CS4, I've compiled it many different ways; changed the accompanying xlm file; the html file; nothing seems to make the size bigger! Recently I added % size - even smaller. Which section(s) should I modify? And what changes?
Inder
Points: 2480
Posts:0
2/17/2010 11:31:31 PM
If you are using Flash CS then you can set the width="100%" height="100%" in your html source. This will make flash file fill all the available area int the browser window.
You can also goto
File--> Publish Settings --> HTML
Now in the Dimensions filled select Percent the width and height values should be 100.
Press the Publish and your HTML file will be available where swf file is saved with maximize code inside HTML
2/17/2010 11:37:52 PM
Hi Matt , you just need to give 100% to width and height in the HTML source .
Make sure you have done it in the javascript function its like this in the html source
'width', '100%',
'height', '100%',
Also check that you have updated it in the "embed" and "Object" tag like this
width="100%" height="100%"
So its usually in three places in the html source.