prova così...
imposta il nome istanza al trailer, p.es. "trail".
Sul 1° frame della timeline principale scrivi:
codice:
MovieClip.prototype.segui = function () {
disattivato = false;
this.onEnterFrame = function () {
this._x = this._x+(this._parent._xmouse-_x)*0.300000;
this._y = this._y+(this._parent._ymouse-_y)*0.300000;
this.img1._x = this._parent.img2._x-_x;
this.img1._y = this._parent.img2._y-_y;
this.onPress = function () {
disattivato = true;
delete this.onEnterFrame;
}
}
}
//
// poi associ al movieclip il prototipo:
//
trail.segui();