Would the oft mentioned “hit test” be of use for this?
I’m working on a demo movie where various screen shots are shown in Flash with fake mouse actions like “then you click here to print a report” type things.
I figured out a good way to control the fake mouse cursor via AS (see attached), but I’m wondering if there’s a better way?
Right now I have x and y coordinated in frames along the time line. Is there a way to make an MC that would say “Ease to HERE, mouse pointer!” That way I could drop instances of those MCs on the stage rather than figuring out the exact x and y for every movement.
something like this should work:
_root.cursorPosx = _root.dot1._x;
_root.cursorPosy = _root.dot1._y;
Adam
you could create a new movie clip called comeHere, on the first frame put
_root.cursorPosx = this._x;
_root.cursorPosy = this._y;
Now just put that on the stage where you want your cursor to go.
The only bug is that you need to make sure there is an empty keyFrame between different instances of comeHere or it doesn’t seem to work.
Thanks, guys. Poifect.