ForumsProgramming Forumhow to change cursors

11 3999
Samurai7x
offline
Samurai7x
64 posts
Nomad

i need help on how to change cursors so if you could please help it would be good

  • 11 Replies
anatolytt
offline
anatolytt
64 posts
Peasant

Change cursors where?

Samurai7x
offline
Samurai7x
64 posts
Nomad

i mean like when you put your mouse in the flash game it changes

PixelSmash
offline
PixelSmash
566 posts
Nomad

A custom mouse pointer? Pretty easy - I think there are even some tutorials you can readily access from 'help' -> Flash Tutorials. What I haven't figured out though is how you can make sure when you click the mouse you click an instance, say a button, and not the custom mouse pointer - which results in not being able to click any button.

brooke_1997
offline
brooke_1997
545 posts
Nomad

Thats not how you put a picture. Upload it on photobucket or w.e.. Get the link then post it here.

sonam
offline
sonam
840 posts
Nomad

lmao. i find this extremely funny because everytime i come to my profile in AG, a pop up from cursormania shows up. i am freaking tired of it. and here you are asking how to change colors

Ricador
offline
Ricador
3,722 posts
Shepherd

You will regret changing your cursor, it is sooooo annoying.

And it is annoying to undo.

Green12324
offline
Green12324
4,097 posts
Peasant

You will regret changing your cursor, it is sooooo annoying.


It's not too bad as long as you don't change it to something weird. I changed my cursor set to the Mac ones, it's basically the same as Windows but looks nicer. Same shapes and all.
LufffiStudios
offline
LufffiStudios
1,420 posts
Nomad

Sonam, that's not it..say in the Last stand 2, your cursor becomes a cross hairs in the game. Not an all-time custom.

No_Thumbs
offline
No_Thumbs
20 posts
Nomad

to change the cursor in a flash game do this:

Create and add a Movie Clip to the stage

add this code

Mouse.hide();
addEventListener(Event.ENTER_FRAME, enterFrame);
function enterFrame(event:Event) {

No_Thumbs
offline
No_Thumbs
20 posts
Nomad

sorry,

to change the cursor in a flash game do this:

Create and add a Movie Clip to the stage

add this code

Mouse.hide();
addEventListener(Event.ENTER_FRAME, enterFrame);
function enterFrame(event:Event) {
(name of Movie clip).x = mouseX;
(name of Movie clip).y = mouseY;
}

Samurai7x
offline
Samurai7x
64 posts
Nomad

thanks no thumbs

Showing 1-11 of 11