drag N drop
drag N drop
- Started
- Last post
- 1 Response
- ganon
i have a button with this script on it...the button is then placed in a movie clip "clip" on the main timeline...it works well to drag, but then it wont drop...it follows my mouse...why?...
on (press) (
startDrag ("_level0.clip",true);
)
on (release) (
stopDrag ();
)thank you
- unformatted0
clip.onPress = function() {
this.startDrag();
}clip.onRelease = function() {
this.stopDrag();
}