Come si evi9nce dal titolo del mio post, ho problemi con uno script scaricato dal sito di rempox...
Ho riadattato alle mie esigenze un codicillo....
Dunque, ho tre pulsanti che su mouseover si alzano e su mouseout-release si abbassano (originale no?!). Inoltre andando sopra ciascun pulsante si visualizzano tre diverse foto.
Tutto funziona... tranne per la clip "appli" e il suo relativo pulsante "pulsa". Ovvero il pulsante si alza per non riabbassarsi mai più

Ecco lo script.... dove sbaglio????

//PRODOTTI
prodotti.pulsante.onRollOver = function(){
delete prodotti.onEnterFrame;
prodotti.onEnterFrame = function(){
if(this._currentframe < this._totalframes){
this.nextFrame();
_root.foto03.nextFrame();
} else {
delete this.onEnterFrame;
}
}
}
prodotti.pulsante.onRollOut = prodotti.pulsante.onReleaseOutside = function(){
delete prodotti.onEnterFrame;
prodotti.onEnterFrame = function(){
if(this._currentframe > 0){
this.prevFrame();
_root.foto03.prevFrame();
} else {
delete this.onEnterFrame;
}
}
}

//REFERENZE
referenze.pulsante.onRollOver = function(){
delete referenze.onEnterFrame;
referenze.onEnterFrame = function(){
if(this._currentframe < this._totalframes){
this.nextFrame();
_root.foto04.nextFrame();
} else {
delete this.onEnterFrame;
}
}
}
referenze.pulsante.onRollOut = referenze.pulsante.onReleaseOutside = function(){
delete referenze.onEnterFrame;
referenze.onEnterFrame = function(){
if(this._currentframe > 0){
this.prevFrame();
_root.foto04.prevFrame();
} else {
delete this.onEnterFrame;
}
}
}

//APPLICAZIONI
appli.pulsa.onRollOver = function(){
delete appli.onEnterFrame;
appli.onEnterFrame = function(){
if(this._currentframe < this._totalframes){
this.nextFrame();
_root.macchina.nextFrame();
} else {
delete this.onEnterFrame;
}
}
}
appli.pulsa.onRollOut = appli.pulsa.onReleaseOutside = function(){
delete appli.onEnterFrame;
appli.onEnterFrame = function(){
if(this._currentframe > 0){
this.prevFrame();
_root.macchina.prevFrame();
} else {
delete this.onEnterFrame;
}
}
}