How to

link pictures, i have a picture of a url i like to link in flash how do i do that? thx

I’m assuming you’re trying to link your image to a URL. If that’s the case then convert your image to a button or movieclip symbol and then apply this actionscript to it:[AS]on (release) {
getURL(“http://www.yoursite.com”, “_blank”);
}[/AS]
That will link to a new browser window, if you want it to replace the current window then replace _blank with _self

thx alot bro…:slight_smile:

no problem. =)

what would i do if i want to link text to my email so if someone like to send me an email they can just click on “contact” i know its something like “mailto” but…

thx

[AS]on (release) {
getURL("mailto:[email protected]", “_self”);
}[/AS]