I’m tryin to make a hyperlink button that opens in the same browser tab but when I click the button and then click the “Edit the ActionScript for this object” Arrow the ActionScript window says “Current selection cannot have actions applied to it.”…
Also is this the right code to have the page open in the same window
var url:String = "http://www.google.com";
var request:URLRequest = new URLRequest(url);
try {
navigateToURL(request, '_self'); // second argument is target
} catch (e:Error) {
trace("Error occurred!");
}
?