Follow the Moving Mouse

Mouse! Script by: DaBoMB

Move the mouse around the screen...      There ya go! That'll drive people nuts. When you get the script you'll see where to change out the color and the text of the item that flies around. Remember -- this is a Netscape Navigator 4.0 deal only.

     You'll need to grab the script from here as the mouse isn't allowed to click on a link:


<script>
//(C) copyright 1998 greg bland all rights reserved, you may use this
//script only for your page if you, leave this header on the coding,
//and you may not use this script to incur profits....
//thanks.


function trackit(ev) {
document.layers[0].pageX = ev.pageX
document.layers[0].pageY = ev.pageY
}


document.captureEvents(Event.MOUSEMOVE)
document.onmousemove = trackit
</script>
<layer name="mymouse" bgcolor="red" top = 100 left = 100 z-index=0>
Mouse!
</layer>

Back to the Text-Based Scripts