Scaling an SWF to the size of a window

Im inserting an swf file in a web page using dreamweaver.
How do i insert it so that there is no border from the page around the swf file. I.e. how do i scale the window so that all that is in the window is the swf, and non of the actual html page can be seen?
David

Well you can specify the width and height as 100% when publishing your movie, but this causes serious lagging in some computer when they have it full screen.

Anyway you do it you will have a border around your movie, to get rid of that you can

A) Change the background color to the same color as your movie

B) Change your body tag to look like this

[BODY TOPMARGIN=“0” RIGHTMARGIN=“0” BOTTOMMARGIN=“0” LEFTMARGIN=“0”]

replace [] with <> you can also add any other info in your body tag such as your font color and link color things.

Hope this helps!

I’d been wondering about that myself. Thanks!

*Originally posted by lostinbeta *
**Well you can specify the width and height as 100% when publishing your movie, but this causes serious lagging in some computer when they have it full screen.

Anyway you do it you will have a border around your movie, to get rid of that you can

A) Change the background color to the same color as your movie

B) Change your body tag to look like this

[BODY TOPMARGIN=“0” RIGHTMARGIN=“0” BOTTOMMARGIN=“0” LEFTMARGIN=“0”]

replace with <> you can also add any other info in your body tag such as your font color and link color things.

Hope this helps! **