Bonjour,
j'ai trouvé tout seul (merci à mon frère

) merci voici mon code :
on (press) {
// en avant : 48-148
// en arrière : 148-248
this.startDrag(false, 46, 48, 46, 248);
}
onClipEvent(mouseMove) {
var anglemax = 270;
var angle = 0;
var centre = 148;
var ymax;
if (this._y < centre)
{
// en avant (FW)
ymax = 48;
}
else if(this._y > centre)
{
// en arrière
ymax = 248;
}
else
{
// neutral
ymax = centre;
}
if (this._y != centre) {
angle = anglemax * (this._y - centre) / (ymax - centre);
}
_root.fleche._rotation = angle;
}
on (release) {
this.stopDrag();
}