Click to See Complete Forum and Search --> : How to link flash image


linux1880
10-23-2005, 03:56 AM
I made a flash image using macromedia flash and I put it in my website using dreamweaver.

I don't see any option to link that flash image to any website.So that if I click the flash image it will link me to another site. Is there any code to put html link to the flash image ?

Brandon55
10-23-2005, 08:45 AM
You should be able to just add a link code around your flash image:
<a href="the_name_of_the_link.htm"> *your flash image here* </a>
or *.html, *.php, *.xml instead of *.htm, whatever format your page is saved as! Hope I answered your question!

linux1880
10-23-2005, 05:58 PM
nops

LJK
10-23-2005, 11:27 PM
Hi -
You could create an 'invisible' button in flash [hit state only]
and make it cover the entire stage area, then add code like:
on(press){
getURL("thispage.html");
}

Good luck -
El