Is it possible to embed a flash player in a table and retain the table properties
        Posted  
        
            by 
                user1494241
            
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by user1494241
        
        
        
        Published on 2012-07-08T21:12:30Z
        Indexed on 
            2012/07/08
            21:15 UTC
        
        
        Read the original article
        Hit count: 305
        
I'd like to embed a music (flash) player in a table with clickable images but the embed code seems to throw the table properties off - it extends the width of the table.
Is it possible to embed the player on the same row as the image whilst still retaining the table width?
Here's what I've been using:
<table width="620"  border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<div align="left"><object height="18" width="100%"> <param name="movie" value="https://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Fplaylists%2F1253725&auto_play=false&player_type=tiny&font=Georgia&color=9a6600&show_playcount=false&default_width=375&default_height=40&show_user=false"></param> <param name="allowscriptaccess" value="always"></param> <param name="wmode" value="transparent"></param><embed wmode="transparent" allowscriptaccess="always" height="18" src="https://player.soundcloud.com/player.swf?url=http%3A%2F%2Fapi.soundcloud.com%2Fplaylists%2F1253725&auto_play=false&player_type=tiny&font=Georgia&color=9a6600&show_playcount=false&default_width=375&default_height=40&show_user=false" type="application/x-shockwave-flash" width="100%"></embed> </object>
</td>
<td>
<div align="right"><img src="http://dl.dropbox.com/u/31856944/Virb/splash_freedownload-2.png" border="0" width="245" height="42" usemap="#Map" /></div>
</td>
<tr>
<td>
<div align="right"><img src="http://dl.dropbox.com/u/31856944/Virb/splash_share-2.png" border="0" width="620" height="31" usemap="#Map2" /></div>
</td>
</tr>
</table>
        © Stack Overflow or respective owner