Simple Custom cursor in Flash CS3

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:
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
}
If you like this give some rep.
 
Last edited by a moderator:

sunils

New Member
Messages
2,266
Reaction score
0
Points
0
You are truly a good flash artist.

Can you bring in some tutorials that explains some simple flash effects like up down rotator or some simple one.
 

Sohail

Active Member
Messages
3,055
Reaction score
0
Points
36
That's a very good tutorial :O You don't even want to know what happened with me when i tired to make a custom cursor myself :p

Don't forget to post it on my tutorial blog :D!
 
Top