Hi guys.
Spent a lot of time searching for information but ...
I have not found a solution.
I came across a video which have completely done what I needed. And most important it is the mouse interface.
there:
http://www.youtube.com/watch?v=--qjZypZ6fQ
That I have:
https://www.youtube.com/watch?v=UeNDWpB3brM
In the second video I did point on mistakes I've got.
You can ask me any question, but i need to know what am I doing wrong.
Spent a lot of time searching for information but ...
I have not found a solution.
I came across a video which have completely done what I needed. And most important it is the mouse interface.
there:
http://www.youtube.com/watch?v=--qjZypZ6fQ
That I have:
https://www.youtube.com/watch?v=UeNDWpB3brM
In the second video I did point on mistakes I've got.
You can ask me any question, but i need to know what am I doing wrong.
Code:
import flash.external.ExternalInterface; Mouse.hide(); var mouseListener:Object = new Object(); mouseListener.onMouseMove = function () { // mouseCursor_mc._x = _root._xmouse; // mouseCursor_mc._y = _root._ymouse; startDrag("mouseCursor_mc", true); ExternalInterface.call("UpdateMousePosition", mouseCursor_mc._x, mouseCursor_mc._y); updateAfterEvent(); }; Mouse.addListener(mouseListener);
Comment