primero especifica en que lenguaje estas trabajando
para el AS2
Código PHP:
boton.onRelease=function(){
boton.enabled=false
}
si colocas dentro del propio boton seri asi
Código PHP:
on(release){
this.enabled=false
}
en el AS3 es simillar peroen ves de poner enabled podrias utilizar removelistener
Código PHP:
boton.addEventListener(MouseEvent.MOUSE_DOWN,funcionBoton)
function funcionBoton(event:MouseEvent):void{
event.currentTarget.removeEventListener(MouseEvent.MOUSE_DOWN,funcionBoton)
}
y si quieres hacerlo como la funcion as2
Código PHP:
boton.addEventListener(MouseEvent.MOUSE_DOWN,funcionBoton)
function funcionBoton(event:MouseEvent):void{
event.currentTarget.enabled=false
}