Computer Science Canada

embedding flash into html...

Author:  abcdefghijklmnopqrstuvwxy [ Sun Feb 11, 2007 5:05 pm ]
Post subject:  embedding flash into html...

The most frustrating part of coding html is the browser inconsistancies!


I have a flash program that has been thorougly tested and works fine. When I embed it in FF it doesn't work properly... it displays but the scroll bar is frozen or something. Doesn't work.

In IE it displays and works fine.


Here is the code: trust me the answer lies in the html not in the flash actionscript.

code:

                <div id="news_swf">
                  <!--[if !IE]> -->
            <object type="application/x-shockwave-flash" data="fla_news_eagl3s.swf" width="400" height="500">
                                <param name="loop" value="true" />
                                <param name="allowScriptAccess" value="sameDomain" />
                                <param name="movie" value="fla_news_eagl3s.swf" />
                                <param name="quality" value="medium" />
                        <param name="menu" value="false" />
                        </object>
            <!-- <![endif]-->

            <!--[if IE]> -->
                        <object type="application/x-shockwave-flash" width="400" height="500"
                                codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0">
          <param name="loop" value="true" />
                                <param name="allowScriptAccess" value="sameDomain" />
                                <param name="movie" value="fla_news_eagl3s.swf" />
                                <param name="quality" value="medium" />
                        <param name="menu" value="false" />
                        </object>
         <!-- <![endif]-->                       
                </div>

Author:  abcdefghijklmnopqrstuvwxy [ Sun Feb 11, 2007 5:08 pm ]
Post subject:  RE:embedding flash into html...

Oh, and you can see for yourself what I'm talking about.

http://www.eagl3s.kicks-ass.net/

Author:  Amailer [ Sun Feb 11, 2007 8:00 pm ]
Post subject:  RE:embedding flash into html...

Site isn't loading for me :/

Author:  abcdefghijklmnopqrstuvwxy [ Sun Feb 11, 2007 8:14 pm ]
Post subject:  Re: embedding flash into html...

Haha go figure... I had momentarily taken it off. It's back up again... I"m still messing with the code trying to get it to work.


: