Hi people,
Apologies for this basic question - I'm a self-taught technophobe trying to get my head around building a website!
I've done pretty well, I think, but now I'm stuck!
I'm trying to put 2 flash polls (from http://www.vizu.com) side by side. I thought I was being relly clever when I tried to put them in a bog-standard table (stop laughing).
Is there a special code, tag or ????, that I need to get it to work?
Sorry and thanks,
Jennie
Jennie:
It will look simular to this. You will have to play with it to get the right
settings. ie height, width...
[HTML]
<tr>
<td height="178"><div align="center">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="703" height="152">
<param name="movie" value="videos/your video here.swf">
<param name="quality" value="high">
<embed src="videos/ your video here.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="" height=""></embed>
</object>
</div></td>
<td height="178"><div align="center">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="703" height="152">
<param name="movie" value="videos/your video here2.swf">
<param name="quality" value="high">
<embed src="videos/ your video here2.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="" height=""></embed>
</object>
</div></td>
</tr>
[/HTML]
nomad