View Single Post
  #7 (permalink)  
Old 26-05-2008, 11:39
Eidolon Eidolon is offline
Premium Member
 
Join Date: May 2006
Location: Cambridgeshire
Posts: 482
Default

A W3C friendly version which seems to work in most browsers...
HTML Code:
 <object type="application/x-shockwave-flash" data="myfile.swf" width="460" height="300">
 	<param name="movie" value="myfile.swf" />
 	<param name="LOOP" value="false" />
 	<param name="quality" value="high" />
 	<img src="noflash.jpg" alt="Flash is not enabled" />
</object>
...the EMBED tag is no longer accepted as valid HTML. There are also versions which use JavaScript to load flash which work fairly well.

Note: Is it a bug that the above code attempted to convert to actual HTML when first entered in code tags.
__________________
To err is human, but to really screw up you need a computer.

Last edited by Eidolon; 26-05-2008 at 11:42.
Reply With Quote