Forum Moderators: open
<object type="application/x-shockwave-flash
data="c.swf?path=movie.swf"
width="400" height="300">
<param name="movie"
value="c.swf?path=movie.swf" />
<img src="noflash.gif"
width="200" height="100" alt="" />
</object>
I'm only loading flash buttons and so don't need the container movie. So does that mean that I can change my code to -
<object type="application/x-shockwave-flash
width="400" height="300">
<param name="movie"
value="movie.swf" />
<img src="noflash.gif"
width="200" height="100" alt="" />
</object>
You still need the
data in the object tag though: <object type="application/x-shockwave-flash
width="400" height="300" data="movie.swf">
<param name="movie"
value="movie.swf" />
<img src="noflash.gif"
width="200" height="100" alt="" />
</object>