Using this code, it would allow me to make something in my animation clickable which would then open a link to whatever I linked into the code. Using this I made my font clickable which then took you straight to the PCA site and relevant course page.
box.addEventListener(MouseEvent.CLICK,fl_ClickToGoToWebPage);
function fl_ClickToGoToWebPage(event:MouseEvent):void
{
navigateToURL(new URLRequest("http://www.adobe.com"), "_blank");
}


No comments:
Post a Comment