PDA

View Full Version : Firefox sizing issues


tryin_to_learn
11-20-2005, 01:26 PM
I have a vector-only movie that I published at 100%. It works fine in IE, but in Firefox, it comes out very tiny. Anyone know how to correct that?

Rossman
11-20-2005, 07:22 PM
I had this problem once, it was related to the DOCTYPE is was using at the top of my HTML page. I think HTML 4.01 Transitional is the one I ended up using...

pan69
11-21-2005, 01:06 AM
Read through this thread: http://www.actionscript.org/forums/showthread.php3?t=70297

Cowgirl32
11-21-2005, 07:46 PM
I had this problem as well. to fix it I added this code to my html page:

<style type="text/css">
<!--
body,html {
margin: 0px;
padding: 0px;
height: 100%;
width: 100%;
}
-->
</style>

Check out the post that I did to get help.

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


That seemed to fix the problem. Hope this helps you out :)