¿Por que StartDrag y StopDrag se aplican o comportan diferentes en un boton y en un mclip?
Para que funcionen desde la linea de tiempo los tengo que poner asi:
Código :
myMClip.onPress = function() { this.startDrag(); }; myMClip.onRelease = function() { this.stopDrag(); }; myBtn.onPress = function() { startDrag(this); }; myBtn.onRelease = function() { stopDrag(); };
porque poner el boton igual que el movie clip nain!, no hace nada
myBtn.onPress = function() { this.startDrag(); }; // NOP!
myBtn.onRelease = function() { this.stopDrag(); }; // Tampoco... menos...