Hi guys,
I have a quick question regarding URLRequests…
As you can see from the code below, I am currently on ‘page 1.html’ and when I click on ‘homeBtn’ I get taken to ‘Charlotte Kay Jarvis.html’.
My question is: Can I be more specific about where the URL Request takes me? Not only would I like to be taken to ‘Charlotte Kay Jarvis.html’, but I would like to be on frame 2 of that page…
Thanks so much!
homeBtn.addEventListener(MouseEvent.CLICK, home);
var home_req:URLRequest = new URLRequest("Charlotte Kay Jarvis.html");
function home(event:MouseEvent):void{
navigateToURL(home_req, "_self");
}