|
1. Open a new document 2. Create a new movie clip by hitting control f8 on your keyboard.
3. Name the movie clip arrow 4. Draw any shap arrow you want. Color it any color.
5. Go back to the desktop and if the library isnt open hit control l on your keyboard
6. Drag the movie clip to your desktop 7. Click on modify instance and name it arrow
8. Add this following script to the instance:
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (enterFrame) {
this._x =
_root._xmouse;
this._y = _root._ymouse;
updateAfterEvent(mouseMove);
}
There thats the end of this tutorial |