PDA

View Full Version : Opening links in the same window


ksduded
07-08-2008, 05:12 PM
i want to use flash buttons but open the link in the same window. I used this code but it opens the link in a new window.

on(release){
getURL("http://www.cnet.com");
}

_Aerospace_Eng_
07-08-2008, 06:01 PM
You need to specify the target.
getURL("http://www.cnet.com","_self");