CIAO
ho assegnato ad un clip uno script per accellerarlo solo nel momento in cui premo un determinato pulsante.
lo script assegnato al clip è questo:
onClipEvent (load) {
this.stop();
rate = 6;
}
onClipEvent (enterFrame) {
if (_root.ffw) {
this = gotoAndStop (this ._currentframe +rate);
}
}