Salve, tempo fa un moderatore mi suggerì questo codice action script per un pulsante di REWIND:

on (press) {
_root.onEnterFrame = function () {
gotoAndplay(_root._currentframe - 3)
};
}
on (release) {
delete _root.onEnterFrame;
}

Sapreste spiegarmi in poche parole "letteralmente" cosa significa?


Scusate per la domanda un po' troppo banale forse.
Grazie.