ciao, allora io ho 5 bottoni, ogni bottone ha questa funzione:

on (rollOver) {
_root.pulsanteA.onEnterFrame = function(){
if(this._xscale < 140){
this._xscale += 10
this._yscale += 10
}else{
delete this.onEnterFrame
}
}
}

on (rollOut) {
_root.pulsanteA.onEnterFrame = function(){
if(this._xscale > 100){
this._xscale -= 10
this._yscale -= 10
}else{
delete this.onEnterFrame
}
}
}

on (press) {
_root.pulsanteA.gotoandstop(2);
// in questo modo la timeline rimane ferma al frame 2 del "pulsanteA" dove c'è la versione
che rappresenta lo stato attivo...
getURL();
}

come faccio ad applicare il tuo esempio?

Grazie