Hola!, no estoy muy seguro de lo que quieres, pero podrias intentar algo como esto:
Código PHP:
instancia.onRollOver = function() {
this.estado = true;
};
instancia.onRollOut = function() {
this.estado = false;
};
instancia.onEnterFrame = function() {
if (this.estado) {
this.nextFrame();
} else {
this.prevFrame();
}
};
Suerte!