Salut,
D'abord faut que tes formes aient un nom d'occurrence dans "Propriétés" par exemple "cercle_mc", ensuite essaye comme ça:
on(rollOver) {
Mouse.hide();
this.attachMovie("cursor_mc","cercle_mc",0);
this.cercle_mc.startDrag();
this.cercle_mc._x = this._xmouse;
this.cercle_mc._y = this._ymouse;
}
on(rollOut) {
Mouse.show();
this.cercle_mc.removeMovieClip();
}
@+.
telov.ch