Oh you need the current button to stay on as well then?
In the button onRelease function add this.gotoAndStop(‘active’); under the resetall() line.
So it’ll be:
[AS]mybutton1.onRelease=function(){
resetall();
this.gotoAndStop(‘active’);
this.enabled=false;
}[/AS]Hope this solves it.