Help with flash 8 professional, please?

  • Thread starter Thread starter Sophia
  • Start date Start date
S

Sophia

Guest
I have made a flash movie and embedded it in a html-document. In this flash movie I want to make links that opens in a new window/tab. I have a html-document and a swt-file i wanna link like this. How do I do this?
Thank you!
 
Hi,

To open links in your swf to new windows/tabs, you need to add a "_blank" value in your getURL command in your flash source (.fla). Example:
on(release){
getURL("http://www.yahoo.com/", "_blank");
}

Make sure you don't forget to prepend "http://" in your urls also.

Hope this helps.
 
Back
Top