I have used swiffy to convert my swf to HTML5. I use aspx, its a small size banner which I want to appear on the left sidebar. The whole left side uses table for data. I want the object to appear in a table column. Currently it didn’t appear in table column. The following was old code for flash.
<td height="244"><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="158" height="244">
<param name="movie" value="images/image_left.swf">
<param name="quality" value="high">
<embed src="images/image_left.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="158" height="244"></embed></object>
Following is HTML5 script, which I want to appear at the same location.
<td height="244">
<script>var stage = new swiffy.Stage(document.body, swiffyobject);</script>
<script>stage.start();</script>
</td>
Please provide me help, I need it badly.
Sorry, put the id=”name_for_id” in the td tag.