[FONT=Times New Roman][SIZE=3][/SIZE][/FONT]
[SIZE=3][FONT=Calibri][/FONT][/SIZE]
[SIZE=3][FONT=Calibri][/FONT][/SIZE]
[SIZE=3][FONT=Calibri][/FONT][/SIZE]
[SIZE=3][FONT=Calibri]Hi,[/FONT][/SIZE]
[SIZE=3][FONT=Calibri]I’ve seriousproblem with my animation in Fcs5. Trying figure out it for last 3 days.Everything is made following book exercise which I did before and it worked. Idecided do my own project and use the same way, but it doesn’t work. When Icheck the animation. Instead it react for pressing button, its going on andthere is no reaction for buttons at all, and afterward I get this communicate:[/FONT][/SIZE]
[FONT=Times New Roman][SIZE=3][/SIZE][/FONT]
Scene 1, Layer ‘action’, Frame 1, Line 3 1023: Incompatible override.
Scene 1, Layer ‘action’, Frame 1, Line 3 1021: Duplicate function definition.
the same in line 7 and 11
When I’m checking synatx it sems to be OK, and it looks like that:
stop();
statement2_btn.addEventListener(MouseEvent.CLICK, stat);
function stat(event:MouseEvent):void {
gotoAndStop(“label1”);
}
events2_btn.addEventListener(MouseEvent.CLICK, eve);
function eve(event:MouseEvent):void {
gotoAndStop(“label2”);
}
contactus2_btn.addEventListener(MouseEvent.CLICK, contact);
function contact(event:MouseEvent):void {
gotoAndStop(“label3”);
}
/* Click to Go To Frame and Stop
Clicking on the specified symbol instance moves the playhead to the specified frame in the timeline and stops the movie.
Can be used on the main timeline or on movie clip timelines.
Instructions:
- Replace the number 5 in the code below with the frame number you would like the playhead to move to when the symbol instance is clicked.
*/
button_1.addEventListener(MouseEvent.CLICK,
fl_ClickToGoToAndStopAtFrame);
function fl_ClickToGoToAndStopAtFrame(event:MouseEvent):void {
gotoAndStop(1);
}
It looks like there is no conection between action layer and content one.
Please help!