PDA

View Full Version : how to load movi clip in mouse point



parthy_ban_m
10-06-2004, 10:45 PM
hi, i have to call a movie clip at the mouse point. it should move along with the cursor, whereever the mouse moves. could you help me.

NTD
10-07-2004, 02:58 AM
Hi,

Try this.....


_root.mcName.onEnterFrame = function() {
this._x = _root._xmouse;
this._y = _root._ymouse;
}