Flash Q
Flash Q
Out of context: Reply #1
- Started
- Last post
- 5 Responses
- cinder0
give the animations all instance names
then when one is clicked set a variable
this.onrelease = function(){
_root[_root.lastClicked].play();
_root.lastClicked = this._name;
}basically, the first part inserts the clips name inbetween the brackets
and then makes itself the last clicked item for when you click the next button.