Showing posts with label geturl. Show all posts
Showing posts with label geturl. Show all posts

GET URL

btn_intro.buttonMode = true;
btn_intro.addEventListener(MouseEvent.CLICK, myBtnClicked);

function myBtnClicked(e:MouseEvent):void {
var url:URLRequest = new URLRequest("myweekend.html");
navigateToURL(url,"_self");
}