Code: Select all
stage.addEventListener(KeyboardEvent.KEY_DOWN, detectKey);
var myURL:URLRequest = new URLRequest("http://www.mysite.com/anotherpage.html/");
function detectKey(event:KeyboardEvent):void {
navigateToURL(myURL, "_self");
}
Code: Select all
stage.addEventListener(KeyboardEvent.KEY_DOWN, detectKey);
var myURL:URLRequest = new URLRequest("http://www.mysite.com/anotherpage.html/");
function detectKey(event:KeyboardEvent):void {
navigateToURL(myURL, "_self");
}