I have HTML code I got from a designer of the form:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="100" height="20">
<param name="movie" value="PRODUCTS.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#FFFFFF" />
<embed src="PRODUCTS.swf" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="100" height="20" bgcolor="#FFFFFF"></embed>
</object>
I want to turn it into a link, so when I click it it will go to ./Products.html
can't figure out how.
I wrapped entire object
into <a href...></a>
but when I click it, it gives me warning about going through Internet, and doesn't change the page.
I have very little understanding of Flash. This is probably trivial, but I can't find right answer.
Note: I could get more info from the designer, but loosing that flash is also acceptable.