Hi everybody,
I'm not sure it's the good section to post this thread but I take a chance.
The AS3 flash web application is preloaded by a AS3 flash preloader.
When I run the application on an HTML web page with Firefox or Chrome, the MovieClip that should be always displayed at the foreground to show the progression, disappears, reappears, disappears partialy and randomly. With Internet Explorer, it's work fine. Nothing in the application can cause that or mask/hide the MovieClip. I try this on 3 computers.
I realy don't understand what's happen there.
Firefox 10.0.2
Chrome 17.0.963.79 m
Flash Player 11.1.102.63
Internet Explorer 9.0.8.112.16421
I think something in the HTML goes wrong but I can't find it.
That's the way I embed it :
Code:
<html lang="en" xml:lang="en">
<head>
<title>Application</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css" media="screen">
html, body { height:100%; background-color: #ffffff;}
body { margin:0; padding:0; overflow:auto;}
#flashContent { width:100%; height:100%; }
</style>
</head>
<body>
<div id="flashContent" align="center">
<object data="loader.swf" type="application/x-shockwave-flash" height="800" width="1200">
<param name="movie" value="loader.swf" />
<param name="quality" value="best" />
<param name="bgcolor" value="#ffffff" />
<param name="play" value="true" />
<param name="loop" value="true" />
<param name="scale" value="noscale" />
<param name="menu" value="false" />
<param name="devicefont" value="false" />
<param name="salign" value="" />
<param name="allowScriptAccess" value="sameDomain" />
<p>Alternate content goes here</p>
</object>
</div>
</body>
</html>
Thank you for your future help.
PS: English is not my native language. So, if you don't understand this, I will try to explain better.