PDA

View Full Version : Filling the Browswer with Flash in Firefox


aeon
08-10-2004, 01:37 PM
Anyone knows how to correctly fill an entire html page with flash, without any scaling?

My current code:

<style type="text/css">
<!--
body, html {
background-color: #F1F1F1;
margin: 0px;
}
-->
</style>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" name="base" width="100%" height="100%" id="base">
<param name="movie" value="base.swf" />
<param name="quality" value="high" />
<param name="menu" value="false" />
<param name="scale" value="noscale" />
<param name="salign" value="lt" />
<embed src="base.swf" width="100%" height="100%" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false" scale="nocale" salign="lt" name="base"></embed>
</object>


It works in IE but in Firefox it the movie scales to fit the whole screen.

Ruben
08-13-2004, 12:08 AM
Compare you're code to mine:

http://www.actionscript.org/forums/showthread.php3?t=50711

With my code everything works fine both in Firefox and IE

:) - Ruben

aeon
08-13-2004, 08:06 AM
Now I know what was wrong with my code.

I mispelled "noscale" as "nocale"!

Haha..

Ruben
08-13-2004, 10:27 AM
I mispelled "noscale" as "nocale"!

Browsers suck for not being creative with words, don't they...

:p - Ruben