I have swf file, im using code below to display it on my website:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="160" height="264">
<param name="movie" value="http://www.example.com/baner.swf" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<embed src="http://www.example.com/baner.swf" quality="high" type="application/x-shockwave-flash" width="160" height="264" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
How can I convert this swf file into link? Im trying to achieve it with flashVars so I’ve added something like that:
<param name=FlashVars value="targetURL="http://example.com/">
But what’s next? Can I make a link from this .swf file without having .fla?
Unfortunately, you cannot use the FlashVars method without being able to edit the FLA file. My only suggestion would be to absolutely position a transparent element over the top of the SWF, and have this element as a link.