Web Hosting Talk







View Full Version : Implementing image under flash


Tranix
12-27-2005, 08:08 PM
My site has a pretty big flash header and some of dial-uppers have turn off the flash and wonder if anyone who knows how to put the non-flash header under flash file?

Thank you

marsian
12-28-2005, 08:54 AM
use a background image using CSS.

sabian1982
12-29-2005, 06:49 AM
or u can have it so that if they dont have the flash plugin installed or that the flash isnt allowed to load and image loads in its place... however if ur using dreamweaver i think there is a tab when u select the flash item that allows u to select an alternative image... i think the correct code might be:

<img src="image.jpg" width="100" height="100" alt="Image Text" />

For example the valid flash code for HTML would be:


<object type="application/x-shockwave-flash" data="animation.swf" width="100" height="100">
<param name="movie" value="animation.swf" />
<img src="image.jpg" width="100" height="100" alt="Image Text" />
</object>


Try that...