Hi,
Post the code you are using.
Demo.... create a square on the stage and convert it into a movieclip symbol then delete it from your stage. Open your library and select the movieclip right click it and set the linkage....
id name...... box
export for first frame selected
Then put this code on the first frame of your test movie.....
Code:
_root.onEnterFrame = function() {
myBox = _root.attachMovie("box","newBox",10);
myBox._x = _root._xmouse;
myBox._y = _root._ymouse
};
This will attach the movie from your library to the mouse position. You can set the position to constant by changing the event handler.... onEnterFrame ..... to onLoad..... or whatever.
HTH
NTD
Bookmarks