justinbriggs1 0 Posted October 29, 2009 Report Share Posted October 29, 2009 Hey everyone, I was wondering how to implement a backup banner in case someone doesn't have the flash application installed on their browser. I tried just using a background on the flash container div, but it gives unintended results on some browsers. Is there any way to do this? Thanks,JW Quote Link to post Share on other sites
Ingolme 1,019 Posted October 29, 2009 Report Share Posted October 29, 2009 (edited) The <object> tag (which you should be using) renders the content within it if the Flash document doesn't load: <object data="file.swf" type="application/x-shockwave-flash" width="500" height="440"><param name="movie" value="file.swf"><!-- This content is displayed if the file isn't loaded --><div style="width: 500px; height: 440px; background-color: grey">Flash not available</div><!-- End alternate content --></object> Edited October 29, 2009 by Ingolme Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.