westman Posted May 17, 2012 Report Share Posted May 17, 2012 Dreamweaver created code for me that is not working to good, i can not see my flash menu in IE here is my code... <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="700" height="250" id="FlashID" title="menu2"> <param name="movie" value="../flash/menu2.swf" /> <param name="quality" value="high" /> <param name="wmode" value="opaque" /> <param name="swfversion" value="6.0.65.0" /> <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. --> <param name="expressinstall" value="../Scripts/expressInstall.swf" /> <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. --> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="../flash/menu2.swf" width="700" height="250"> <!--<![endif]--> <param name="quality" value="high" /> <param name="wmode" value="opaque" /> <param name="swfversion" value="6.0.65.0" /> <param name="expressinstall" value="../Scripts/expressInstall.swf" /> <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. --> <div> <h4>Content on this page requires a newer version of Adobe Flash Player.</h4> <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p> </div> <!--[if !IE]>--> </object> <!--<![endif]--> </object> any help? Link to comment Share on other sites More sharing options...
Ingolme Posted May 17, 2012 Report Share Posted May 17, 2012 This is the valid, cross-browser way to display Flash documents: <object type="application/x-shockwave-flash" data="file.swf" width="700" height="250"> <param name="movie" value="file.swf"> <p>You need Flash player to view this</p></object> While it does work, it has a little problem with loading for some movies, the solution for that is given here:http://www.alistapart.com/articles/flashsatay Generally I don't bother with the loading movie. Link to comment Share on other sites More sharing options...
westman Posted May 17, 2012 Author Report Share Posted May 17, 2012 i did not get any info from that.my menu will load up but only show for 2sec then leave how do i get it to stay? Link to comment Share on other sites More sharing options...
Ingolme Posted May 17, 2012 Report Share Posted May 17, 2012 That sounds like a problem with how the manu was made and doesn't have to do with the HTML. Link to comment Share on other sites More sharing options...
thescientist Posted May 17, 2012 Report Share Posted May 17, 2012 i did not get any info from that.my menu will load up but only show for 2sec then leave how do i get it to stay?that would have been helpful to say the first time around in your original post. But as mentioned, it sounds like it's neither an issue with Javascript or the HTML. Unless it works perfectly in all other browsers. Do you have this up on a host so we could look at it? Link to comment Share on other sites More sharing options...
westman Posted May 17, 2012 Author Report Share Posted May 17, 2012 i can not link (spam) in this forum but it works well on all browsers just not IE Link to comment Share on other sites More sharing options...
thescientist Posted May 17, 2012 Report Share Posted May 17, 2012 what do you mean spam? Members provide links to their live code all the time. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now