This was a highly requested tutorial by many different people. I said I would do it in another video, and here it is.
ACTIONS:
instanceNameHere.addEventListener(MouseE vent.CLICK, mouseClick);
function mouseClick
{
var request = new URLRequest(“link goes here”);
navigateToURL(request,”_blank”);
}




February 16, 2011 at 5:03 am
Thanks a million for the tutorial!! You saved my day!
BTW, there’s some missing part in the action script you provided.
unstanceNamehere.addEventListener(MouseEvent.CLICK,mouseClick);
function mouseClick(event:MouseEvent):void
{
var request = new URLRequest(“linkGoeshere”);
navigateToURL(request,”_blank”);
}
Again, thanks!