Question : adding links to htmlText

i have a dynamic text box populated with html text.

how do i add hyper links to the following two points?

1. clicking GOOGLE should open a new browser window, loading http://www.google.com
2. clicking FRAME should advance my flash movie to a frame labeled "news"



Code Snippet:
1:
2:
introCopy.html =  true;
introCopy.htmlText = "

Some bold centered headline copy



Simple paragraph copy with links to GOOGLE and another FRAME in my flash movie

Open in New Window Select All

Answer : adding links to htmlText

here the working code:

 
1:
2:
3:
4:
5:
6:
7:
introCopy.html =  true;
introCopy.htmlText = "

Some bold centered headline copy



Simple paragraph copy with links to GOOGLE and another FRAME in my flash movie

"; function myfunction() { gotoAndPlay("news"); }
Open in New Window Select All
Random Solutions  
 
programming4us programming4us