I'm using this simple code in Flash MX 2004
________
George, M
Code:
someListener = new Object();
someListener.onMouseMove = function ()
{
};
Mouse.addListener(someListener);
I was wondering if there is posible to get the object on wich the mouse moved on. Something like this
someListener = new Object();
someListener.onMouseMove = function (targetObj)
{
trace(targetObj)
};
Mouse.addListener(someListener);
Bu there is no targetObj defined.
In html this is simple but here i cant find any example on that, unless some click events or something. but i'm nostly interested on the onMouseMove event.
________
George, M