satheesh
New Member
- Messages
- 883
- Reaction score
- 0
- Points
- 0
Simple Custom cursor in Flash CS3:
1.Create a Flash Document.
2.Create a Movie clip as you like as Cursor.
3.Set them instance name "cursor".
4.Go to Action and Paste like below:
If you like this give some rep.
1.Create a Flash Document.
2.Create a Movie clip as you like as Cursor.
3.Set them instance name "cursor".
4.Go to Action and Paste like below:
Code:
addEventListener(Event.ENTER_FRAME,on_e); //To run the scripts Number of time
function on_e(e:Event):void {
cursor.startDrag(true); //To Move the Movie Clip
}
Last edited by a moderator: