sul primo frame:
lista = new Array();
i = 0;
function corrente(ora) {
lista[i] = ora;
i += 1;
}
su tutti i frame:
corrente(this._currentframe);
sul tasto back:
on (release) {
i -= 2;
_root.gotoAndStop(lista[i]);
}
sul primo frame:
lista = new Array();
i = 0;
function corrente(ora) {
lista[i] = ora;
i += 1;
}
su tutti i frame:
corrente(this._currentframe);
sul tasto back:
on (release) {
i -= 2;
_root.gotoAndStop(lista[i]);
}