Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to include swf file

Status
Not open for further replies.

iffoiffy

Programmer
Feb 24, 2005
67
CA
Hi,

Someone told me to include swf file all you need is to use the same sytax as you use for jpg just replace with swf file ..i did the following but it does not work..

<td ><img src=Flash/header_1.swf></td>

Thanks
 
Code:
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="[URL unfurl="true"]http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"[/URL] width="300" height="300" id="Untitled-3" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value=".../Flash/header_1.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src=".../Flash/header_1.swf" quality="high" bgcolor="#ffffff" width="300" height="300" name="Untitled-3" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="[URL unfurl="true"]http://www.macromedia.com/go/getflashplayer"[/URL] />
</object>
 
oops 'mI bad... change where it says id="Untitled-3" to ".../Flash/header_1.swf
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top