Jump to content

Background For Flash Disabled Users


justinbriggs1

Recommended Posts

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

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>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...