Hello everybody
I’m new in the forum and new with Flash CS4…
I did one animation accordion,(attached the swf file) and I have a problem about ‘’ stage playing’’ …I think
When my accordion opens the first column, I have stop(); and closing the first column in the timeline is after the stop. So clicking on the second column is jumping directly to open the second…
But I need to close the first…
I hope somebody can understand and help.
there is some code to play the stage before jumping to other frame?
THANKS!!!
now I have only this in the actions and till here it’s Ok :
stop();
import flash.events.MouseEvent;
One_btn.addEventListener(MouseEvent.CLICK, oneClick);
Two_btn.addEventListener(MouseEvent.CLICK, twoClick);
Three_btn.addEventListener(MouseEvent.CLICK, threeClick);
function oneClick(event:MouseEvent):void{
gotoAndPlay (“getOne”);
}
function twoClick(event:MouseEvent):void{
gotoAndPlay (“getTwo”);
}
function threeClick(event:MouseEvent):void{
gotoAndPlay (“getThree”);
}