Salut,
Bon, y a plusieurs façon tu peux utiliser un enterFrame, ex:
btn.onPress = function() {
onEnterFrame = function () {
if (clip._x> -100) {
clip._x--;
}
}
};
delete this.onEnterFrame;
Ou alors tu peut essayer avec un setInterval, ex:
mouv = function () {
clip._x--;
}
btn.onPress = function() {
interval=setInterval(mouv, 10);
};
@+.
www.monblog.ch/telovtutoriels Flash pour débutants