justinbriggs1 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 Link to comment Share on other sites More sharing options...
Ingolme 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 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