E' possibile deletare un onEnterFrame() sulla root con un bottone del tipo:
on (press) {
delete pippo.onEnterFrame();
}
Grazie
mir
E' possibile deletare un onEnterFrame() sulla root con un bottone del tipo:
on (press) {
delete pippo.onEnterFrame();
}
Grazie
mir
Fotografario MultiUtente Interamente in Flash: QUI
certo, ma senza parentesi di funzione
on (press) {
delete pippo.onEnterFrame;
}
oppure
on (press) {
pippo.onEnterFrame = null;
}