View Full Version : cursors move on a button


r_j_g_2003
02-05-2005, 07:42 PM
i have a cursor i going to change it is it possible to make the cursor change or move on a button like u have a sword for a cursor when u go to the buttom it starts to spin if so what is the html of it i have no idea i whould have to be able to use the .ami format plz help me

tokyo bleu
02-05-2005, 10:29 PM
With a custom cursor, I believe you'll have to animate it yourself if you want it to do special effects.

r_j_g_2003
02-06-2005, 05:22 PM
yes i know that but how do u get the corsor to change when u go on a button

MaGiCSuN
02-06-2005, 05:42 PM
add this to your button:

style="cursor: url(URL TO ANIFILE HERE.ANI);"

change URL TO ANIFILE HERE.ANI to the url of your ani file you want as a cursor. see if that works.

Love,
Mirna

r_j_g_2003
02-07-2005, 09:01 PM
ok thx u have helped me a lot with cursors stuff u know that Magicsun thx a lot

r_j_g_2003
02-07-2005, 09:32 PM
ok problem im stupid where do i put this code: style="cursor:http://home.freeuk.net/gharvey/srBloodySword.ani"
in this html
<html>
<head>
<style type="text/css">
body{
cursor: url('http://home.freeuk.net/gharvey/srSpinSword.ani');}
</style>
<title>Button Bar</title>
</head>
<font size="3" font color ="#FF0000">
<body background="http://www.geocities.com/r_j_g_2003/Demon.bmp">
<center>
<font size="3" font color ="#FF0000">
<A HREF="http://www.geocities.com/r_j_g_2003/Lordsoflegendclansite.htm" target="right"><H2>HOME</H2></A>
<A HREF="http://www.runescape.com"target="rightside"><H2>Runescape site</H2></A>
<A HREF="http://lordoflegend.greatboard.com/"target="rightside"> <H2>Clan Forums</H2></A>
<A HREF="http://www.geocities.com/r_j_g_2003/Clanrankings.htm" target="right"> <H2>Clan Rankings </H2> </A>
<A HREF="http://www.runehq.com"target="rightside"> <H2>Runescape help site</H2></A>
</body>
</html>
if i want all my buttons to have the same cursor

MaGiCSuN
02-07-2005, 11:08 PM
i'm guessing you mean your links. if so then just change this part:


<style type="text/css">
body{
cursor: url('http://home.freeuk.net/gharvey/srSpinSword.ani');}
</style>


to this:


<style type="text/css">
body{
cursor: url('http://home.freeuk.net/gharvey/srSpinSword.ani');}

A:link { text-decoration: none; }
A:active { text-decoration: none; }
A:visited { text-decoration: none; }
A:hover { cursor: url(http://home.freeuk.net/gharvey/srBloodySword.ani); }
</style>

if that's not what you want, then explain further :)

Love,
Mirna