Use (stage ScaleX;) in a movie clip is invalid.
I use it in the scene (evt stagex/stage ScaleX;) to get the right position.
But when I use it in a movie clip, I can't find the right place.
wt.on("pressmove", function(evt)
{
evt.currentTarget.x = evt.stageX /stage.scaleX;
evt.currentTarget.y = evt.stageY /stage.scaleY;
stage.update();
});

