angel_wings_midori
12-19-2005, 07:49 PM
anyone know a code for falling stars? where would i put it, and lately some of my codes havnt been working. I tried the no right click. Could someone give me a coed for no right clcik? Where would I put it? thanks.
srry for the rant.
scarysoup
12-19-2005, 08:47 PM
Here's how to make the stars fall:
http://lissaexplains.com/javascript.shtml
And here is ONE code for no right click:
(put between the body tags)
<script language=JavaScript>
<!--
//Disable right click script III- By Renigade (renigade@mediaone.net)
//For full source code, visit http://www.dynamicdrive.com
var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers)
{document.captureEvents(Event.MOUSEDOWN);document. onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontext menu=clickIE;}
document.oncontextmenu=new Function("return false")
// -->
</script>
If you want more, google it.