Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

new IE window 1

Status
Not open for further replies.

random260

Programmer
Mar 11, 2002
116
US
I have a flash web page that allows me to load dynamic text from a file. I can program in a link in the text, and when the link is clicked on it will go to that page, but it uses the same window, which means if the user wants to go back to my page the whole flash site has to load again. Is there a way to put this link into the text file that will make it open in a new window?

Thanks
 
From MM:

Targeting a browser frame or window. To target a browser frame or window use the standard TARGET attribute of the <A> tag:

Go to <A HREF=" TARGET="frame_Name" >Macromedia's website</A>

Note: Currently, the TARGET tag is an undocumented and, therefore, unsupported feature. This feature is accessible only through ActionScript and not in the authoring environment.


Thus in your case you should use...

... TARGET="_blank" ...

Regards. Affiliate Program - Web Hosting - Web Design
After 25,000 posts, banned on FK, but proud not to have bowed down to them!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top