html5 drag and drop
All I need is just a simple drag and drop. To be honest I have no idea about html 5 😃
I have a movieclip, let's call it exampleClip or something.
And all I want to do is make drag and drop possible, no extras.
exampleClip.on("pressmove", function(evt) {
evt.target.x = evt.stageX;
evt.target.y = evt.stageY;
});
This I have found already, but in test it didn't work. Just played the gif.
