I’m posting again to try to get some help on this project.
I have a flash site that was embedded using SWFObject into an index.html that was working fine for a while until I added unloadAndStop(); into several places in the swf. After that it loads incorrectly in Chrome, not at all in Firefox, and decently in Safari with some errors when it comes to sizing text. I tried taking unloadAndStop(); out but that does nothing; I tried taking all actionscript out and that doesn’t help.
The embed from the index.html is below. The FLA of the main timeline is here. Thanks in advance.
<head>
<meta http-equiv=“Content-Type” content=“text/html; charset=UTF-8” />
<title>Julien Sicard, realisateur</title>
<meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1” />
<script type=“text/javascript” src=“swfobject.js”></script>
<script type=“text/javascript” src=“swfaddress.js”></script>
</head>
<body>
<div>
<object id=“myId” classid=“clsid:D27CDB6E-AE6D-11cf-96B8-444553540000” width=“100%” height=“100%”>
<param name=“movie” value=“julien-sicard.swf” />
<!–[if !IE]>–>
<object type=“application/x-shockwave-flash” data=“julien-sicard.swf” width=“100%” height=“100%”>
<!–<![endif]–>
<div>
<h1>Alternative content</h1>
<p><a href=“http://www.adobe.com/go/getflashplayer”><img src=“http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif” alt=“Get Adobe Flash player” /></a></p>
</div>
<!–[if !IE]>–>
</object>
<!–<![endif]–>
</object>
</div>
</body>