ho inserito la movie clips "barra" nel filmato flash che segue il movimento del mouse con questo script:
onClipEvent (load) {
i = 15;
}
onClipEvent (enterFrame) {
this._y -= (this._y-../:_ymouse)/i;
this._x -= (this._x-../:_xmouse)/i;
i--;
if (i<1) {
i = 15;
}
}
vorrei aggiungere un'area delimitata per eseguire lo script (640 x 200)
Come facio??
mi potete aiutare??