utiliza case para poder cambiar los eventos por ejemplo
Código PHP:
function mifuncion1() {
trace('soy la funcion 1');
}
function mifuncion2() {
trace('soy la funcion 2');
}
function mifuncion3() {
trace('soy la funcion 3');
}
function eventFunction(event) {
switch (event) {
case 'primerEvent' :
mifuncion1();
return 'segundoEvent';
break;
case 'segundoEvent' :
mifuncion2();
return 'tercerEvent';
break;
case 'tercerEvent' :
mifuncion3();
return 'primerEvent';
break;
}
return 'primerEvent';
}
var eventRegister='primerEvent'
miboton.onRelease=function(){
eventRegister=eventFunction(eventRegister)
}