Hi,
i am trying to attach a movie and then drag it, this works but the code to stop the drag does not. any ideas why??
myButton.onPress = function() {
dragger = attachMovie("dragger", "dragger2", 5);
dragger._x = this._x
dragger._y = this._y
dragger.startDrag();
};
myButton.onRelease = function() {
dragger.stopDrag();
};