Click to See Complete Forum and Search --> : script error


npqster
04-19-2009, 08:13 PM
I am making a little slideshow where at some points, some Movie Clips have to be clickable and am getting a code error in my Actionscript 3.0 when trying to convert to .swf. I can't figure out what's wrong.


thumpy.addEventListerner(MouseEvent.CLICK, onClick);

function onClick(event:MouseEvent):void
{
getURL("http://www.thumpersf.com", "_blank");
}

thumpy.buttonMode = true

Eye for Video
04-20-2009, 01:05 AM
AS3 does not have "getURL", dang...!
So research "navigateToURL()" ..
EfV