I wonder if it is possible to detect when swf is loaded:
Follow the code below:
<object id="teste" name="teste" type="application/x-shockwave-flash" data="120x600.swf" width="550" height="400" onload="alert('carregado')">
<param name="movie" value="120x600.swf"/>
<param name="quality" value="high"/>
<param name="allowscriptaccess" value="always"/>
<a href="http://www.adobe.com/go/getflash">
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif"alt="Get Adobe Flash player"/>
</a>
</object>
* I tried to use the parameter onload
but it does not seem to work in the object tag
* I also can not use swfObject
, project limitations.