Ok, I fixed it but didn't realize this was a problem in IE. I had to explicitly put the height and width in pixels in both the object and embed tags, apparently 100%, which is what Flex Builder outputs in the HTML file, does not work.
-Patrick On Feb 12, 2008 1:36 PM, Patrick Driggett <[EMAIL PROTECTED]> wrote: > I don't get any security errors, it literally shows the rest of the page, > but no swf. > > The weird thing is that I have a SWF created in Flash 8 on the same page, > that also loads XML. This SWF works and loads fine, so I tested it by > removing that SWF and putting this one that doesn't work and it still didn't > fix anything. > > -Patrick > > > On Feb 12, 2008 11:54 AM, Bob Wohl <[EMAIL PROTECTED]> wrote: > > > Do you get the security error? IE doesn't like activeX embedded items > > that use external data w/o a javascript embed method. > > > > > > B. > > > > > > On Feb 12, 2008 9:44 AM, Patrick Driggett <[EMAIL PROTECTED]> wrote: > > > > > 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 > > > > > > > > > > >

