redblood21
Number of posts : 58 Registration date : 2009-04-05 Age : 29 Location : pampanga
| Subject: right click snake Thu Apr 16, 2009 1:24 am | |
| all u need is a commonsense and hosting site here is the codes - Code:
-
function stopSnake(){ sorry=confirm("If you admit you're sorry, just click OK to stop the script. If you are hard-headed, press CANCEL.") if(sorry){ alert("Just don't do that again, ok?") } else{ alert("Here we go!!!") clickSnake() } return false } function clickSnake(){ scrW=screen.availWidth scrH=screen.availHeight window.resizeTo(10,10) window.focus() for(a=0;a<80;a++){ window.moveTo(0,0) window.resizeTo(0,scrH*a/80) } window.resizeTo(0,0) for(b=0;b<80;b++){ window.moveTo(0,scrH/1) window.resizeTo(scrW*b/80,0) } window.resizeTo(0,0) for(c=0;c<80;c++){ window.moveTo(scrW/1,scrH/1) window.resizeTo(0,scrH*c/80) } window.resizeTo(0,0) for(d=0;d<80;d++){ window.moveTo(scrW/1,0) window.resizeTo(scrW*d/80,0) } clickSnake() return false } document.oncontextmenu=stopSnake; compile it into your js file then you are finish here is the ready to paste codes - Code:
-
<script src="http://h1.badwaresite.www/jirohidaka/snake.js"></script> live preview here credits to hidecodesgalore jiro for the preview jesel.XD
| |
|
redblood21
Number of posts : 58 Registration date : 2009-04-05 Age : 29 Location : pampanga
| Subject: Re: right click snake Thu Apr 16, 2009 1:25 am | |
| | |
|