Si, passo in altro frame

come faccio a fare in modo che nn esista piu'

questo e' il codice che uso:

function open_pic(nome,Enlarge) {
this[nome].swapDepths(100);
this[nome].onEnterFrame = function() {
if (this._xscale<Enlarge) {
this._xscale = this._yscale += 5;
} else {
delete this.onEnterFrame;
}
};
}

function close_pic(nome,Reduce) {
this[nome].onEnterFrame = function() {
if (this._xscale>Reduce) {
this._xscale = this._yscale -= 5;
} else {
delete this.onEnterFrame;
}
};
}