someone anyone
someone anyone
Out of context: Reply #7
- Started
- Last post
- 8 Responses
- unfittoprint0
a more easy ButtonMC example:
// use 3 labeled frames: "up", "over" and "down"
this.onRollOver = function(){
gotoAndStop("over");
}this.onRollOut = function(){
gotoAndStop("up");
}this.onRelease= function(){
gotoAndStop("down");
dothis();
}