[Question] Lets just say..

Status
Not open for further replies.
Joined
Jun 4, 2005
Messages
1,656
Reaction score
13
Lets just say that i have a website. All HTML and didn't wanna do it in PHP or XML or ASP in anyway, just keeping it HTML. How would i beable to change the viewers cursor into a small dagger or sword or something simular with JS or HTML or possably flash i don't know ><

I'm working on a website that should have no MySQL because its really not needed. But if i need it for anything like this. Please tell me..

I would like someone here that would know any JS or Flash, or even HTML (Strongly) that would beable to change my cursor to a sword or dagger.

Thanks everyone :)
 
That's kinda tricky, you'll have to use a script for that but you'll have difficulty between browsers.

You'll most likely use js because I can't think of any other language to do it in lol
Try googleing it and if you can't find a script for it find one similar and modify it ^^
 
Please, stop giving crap advice.

Cursor can very easily be changed using styles:
Code:
<style>
  { 
  cursor: url("yourimage.cur"); 
  } 
</style>

Note that IE only accepts .cur and its moving equivalent as cursor images, unlike firefox which also accepts .gif images.

More can be found by using google.

Now, the simplicity of your question combined with your crappy topictitle and obvious lack of research on your part means this thread is now locked.
 
Status
Not open for further replies.
Back