Question
Also gettin that 1009 error
ok this doesnt make any since and im about to distroy my comp
trying to figure this out, here my roll over and out functions
there are my functions so on each page after words i have this
it works for the first two frames but after that, it shoots me those errors on the mouse out event listener, any ideas why thats not working?
quote:
stop();
function overpdp(event:MouseEvent):void {
gotoAndStop(2);
}
function overCSUDSU(event:MouseEvent):void {
gotoAndStop(3);
}
function overredcom(event:MouseEvent):void {
gotoAndStop(4);
}
function overPSupply(event:MouseEvent):void {
gotoAndStop(5);
}
function overGateway(event:MouseEvent):void {
gotoAndStop(6);
}
function overUPS(event:MouseEvent):void {
gotoAndStop(7);
}
function out(event:MouseEvent):void {
gotoAndStop(1);
}
pdp.addEventListener(MouseEvent.MOUSE_OVER, overpdp);
CSUDSU.addEventListener(MouseEvent.MOUSE_OVER, overCSUDSU);
redcom.addEventListener(MouseEvent.MOUSE_OVER, overredcom);
PSupply.addEventListener(MouseEvent.MOUSE_OVER, overPSupply);
Gateway.addEventListener(MouseEvent.MOUSE_OVER, overGateway);
UPS.addEventListener(MouseEvent.MOUSE_OVER, overUPS);
there are my functions so on each page after words i have this
quote:
redcom.addEventListener(MouseEvent.MOUSE_OUT, out);
it works for the first two frames but after that, it shoots me those errors on the mouse out event listener, any ideas why thats not working?