I have a small little Flex app that loads a local XML file and displays
dynamically created objects based on that file on a custom timeline. I've
integrated it into an existing html file, here is the code snippet:
<td colspan="4" class="bodyText">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
id="SimILE" width="100%" height="100%"
codebase="
http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
<param name="movie" value="TimelineTest.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#869ca7" />
<param name="allowScriptAccess" value="sameDomain" />
<embed src="TimelineTest.swf" quality="high" bgcolor="#869ca7"
width="100%" height="100%" name="TimelineTest"
align="middle"
play="true"
loop="false"
quality="high"
allowScriptAccess="sameDomain"
type="application/x-shockwave-flash"
pluginspage="http://www.adobe.com/go/getflashplayer">
</embed>
</object>
</td>
It works perfectly in Firefox, it doesn't even attempt to show up in IE6 or
IE7 on multiple computers all with Flash Player 9 installed through the
Adobe website.
Any ideas?
Thanks,
Patrick Driggett