se associo questo codice
onClipEvent(load){
this.x = this._x;
this.y = this._y;
}
onClipEvent(enterFrame){
if(this.trema){
this._x += Math.round(Math.random() * 2) - 1;
this._y += Math.round(Math.random() * 2) - 1;
} else {
this._x = this.x;
this._y = this.y;
}
this.trema = !this.trema
}
ad un mc quando parte il filmato trema
ma se volessi che trema solo dopo aver cliccato un bottono o solo quando ci passo sopra?