This code works:
Code:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="125" height="125" id="MyFlash" align="top">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="test.swf" />
<param name="loop" value="false" />
<param name="menu" value="false" />
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<param name="bgcolor" value="#ffffff" />
<embed src="test.swf" loop="true" menu="false" quality="high" wmode="opaque" bgcolor="#ffffff" width="25" height="25" name="Finish" align="top" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
The only problem Im left with is that I have to hoover over the flash-button in order to make it visible.
Perhaps this has to do with the fact that Im using a technique to load partial code of html into the index.html so as to have several pages in a widget. It seems the page doesnt refresh properly doing this. Ive tried <meta http-equiv="refresh" content="600">, but that doesnt help. Is there any way to fix this?