I always thought FLASH navigation was bad because, if the viewer does not have Flash Player, you exclude that audience entirely.
You can simply eliminate the target window since you want to navigateToURL() -- to go to that URL page. And make sure your MovieClip has button behavior.
Code:
home_mc.addEventListener(MouseEvent.CLICK, hClick);
function hClick(event:MouseEvent):void {
var homeLink:URLRequest = new URLRequest("home.html");
navigateToURL(homeLink);
}
home_mc.buttonMode = true;
You could also use optional shorter version.
Code:
home_mc.addEventListener(MouseEvent.CLICK, hClick);
function hClick(e:MouseEvent):void {
navigateToURL(new URLRequest("home.html"));
}
home_mc.buttonMode = true;
Bookmarks