Putting flash files in an HTML table

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jenniemsp
    New Member
    • Jul 2007
    • 1

    Putting flash files in an HTML table

    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
  • nomad
    Recognized Expert Contributor
    • Mar 2007
    • 664

    #2
    Originally posted by jenniemsp
    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"><d iv align="center">

    <object classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macrom edia.com/pub/shockwave/cabs/flash/swflash.cab#ver sion=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="ht tp://www.macromedia. com/go/getflashplayer" type="applicati on/x-shockwave-flash" width="" height=""></embed>

    </object>

    </div></td>



    <td height="178"><d iv align="center">

    <object classid="clsid: D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macrom edia.com/pub/shockwave/cabs/flash/swflash.cab#ver sion=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="ht tp://www.macromedia. com/go/getflashplayer" type="applicati on/x-shockwave-flash" width="" height=""></embed>

    </object>

    </div></td>

    </tr>

    [/HTML]

    nomad

    Comment

    Working...