MidnightRaven
Technical User
I have two buttons which are within a movieclip.
I have given the buttons actionscript to tell them to play a movieclip on the main timeline.
For some reason the buttons are playing the keyframes rather than its specified frame. Each time you press the button it will play one keyframe, press it again it plays the next one and so on...
Here is the actionscript...
on (release) {
this._parent._parent.play(20);
//plays the frame on the main timeline
this._parent.play(17);
//plays a motion on the movieclip in which the button is placed in
gotoAndPlay(11);
//moves the button back to its previous position
}
Any help would be appreciated.
Many Thanks