Question
Adding action script top open URL (in same window) produces a white screen
Trying to make this button open a URL in the same window, but apply this script just produces a white screen (does not render anyting).
myButton.addEventListener(MouseEvent.CLICK,goThere);
function goThere(e:MouseEvent):void{
var request = new URLRequest("https://www.google.com","blank_");
navigateToURL(request);
}Also, will this work for hash refferences (ID tags on header titles / wordpress)?
