hi,
just getting started in as3.
I am getting this error
ArgumentError: Error #2109: Frame label call not found in scene Scene 1.
at flash.display::MovieClip/gotoAndStop()
at myWeb_fla::MainTimeline/clickCall()
I have the frame label on my movie clip.
heres the code:
callcenter.addEventListener(MouseEvent.CLICK, clickCall);
function clickCall (event:Event):void{
trace(“call clicked”);
gotoAndStop(“call”);
}
thanks!