# Custom cursors

**URL:** https://forum.kirupa.com/t/custom-cursors/4711
**Category:** Uncategorized
**Created:** [August 17, 2002, 12:19am UTC](https://forum.kirupa.com/t/custom-cursors/4711 "2002-08-17T00:19:46Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![joso](https://avatars.discourse-cdn.com/v4/letter/j/b3f665/32.png) [@joso](https://forum.kirupa.com/u/joso)
#### Post date: [August 17, 2002, 12:19am UTC](https://forum.kirupa.com/t/custom-cursors/4711/1 "2002-08-17T00:19:46Z")

</div>

🙂 does anyone know how do make a cursor like the one at [http://www.preload.it/flash/flash.htm](http://www.preload.it/flash/flash.htm) cause i can’t figure it at all, aprreciate the help if anyone can…! thanks :rambo:

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 17, 2002, 2:30am UTC](https://forum.kirupa.com/t/custom-cursors/4711/2 "2002-08-17T02:30:03Z")

</div>

This should achieve the basic follow the mouse business however there is some random motion which that site is using which is an added effect which is not included in this code. Try the accompanying this code with the tutorial on random motion on this site.

onClipEvent(load){  
mouse.hide();  
}  
onClipEvent(mouseMove){  
\_root.circle.\_x = \_root.\_xmouse;  
\_root.circle.\_y = \_root.\_ymouse;  
}

Hope this helps

Kyle:)

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 17, 2002, 2:34am UTC](https://forum.kirupa.com/t/custom-cursors/4711/3 "2002-08-17T02:34:07Z")

</div>

The spring effect is done with PHYSICS! That is right…PHYSICS!

There is a tutorial on how to create Elasticity in elements…

[http://www.kirupa.com/developer/actionscript/spring.asp](http://www.kirupa.com/developer/actionscript/spring.asp)

What is even better is that the first flash movie on the page is what you want to achieve =)

They just apply it to brackets and use an extra onrollover effect for the button (not sure how this is done, but it probably just specifying the coords of each bracket in actionscript)

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 17, 2002, 2:42am UTC](https://forum.kirupa.com/t/custom-cursors/4711/4 "2002-08-17T02:42:09Z")

</div>

Oops, I didn’t notice that the effect in Kirupas tutorial is only for Flash 5. Being you posted this in the Flash MX column, you won’t be able to achieve this yet. Only with Flash 5 so far. Sorry for misleading you, if you want to learn elasticity that is a good link anyways.

---

<div class="post-metadata">

### Author: ![system](https://canada1.discourse-cdn.com/flex011/uploads/kirupa/original/3X/6/2/621e5c11736f46532526e61be85940af4230f3e5.png) [@system](https://forum.kirupa.com/u/system)
#### Post date: [August 17, 2002, 9:54am UTC](https://forum.kirupa.com/t/custom-cursors/4711/5 "2002-08-17T09:54:06Z")

</div>

ok thanks 4 the help i shud b able to sort it now…thanks alot 🙂
