I've already post this question to this phorum, but didn't get a proper answer on it 🙁
Please help:
it's very simple when I wrote
<a href="somewhere"><img src="something"></a>
i've got an image & i can click on it to go to the specificated URL. But when I try to insert a flash move:
<a href="somewhere">
<OBJECT classid="clsid😃27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH=100 HEIGHT=100>
<PARAM NAME=movie VALUE="TEST.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED src="TEST.swf" quality=high bgcolor=#FFFFFF WIDTH=100 HEIGHT=100 TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></EMBED>
</OBJECT>
</a>
Nothing happend when I click on it. 🙁
Please HELP...
Thanx....
Best regards
Pavlik Morozov
P.S.: There are some limitations:
I can't specify URL directly in Flash, 'couse I all HTML page is generated dynamicaly and links can be changed.
I can't make a Flash movie to read data from external source (I do know how to do this, but I can't) 🙁
P.P.S.
If there is a way to read params from
<PARAM NAME=xxxx VALUE="yyyy"> from Flash this can be the best solution to write
<PARAM NAME=URL VALUE="http://somewhere.com">
Thanx a lot.