Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Closed Thread
Old 05-01-2004, 01:50 PM   #1 (permalink)
 
Monster Techie

Join Date: Apr 2004

Posts: 1,842

lazerman

Send a message via AIM to lazerman Send a message via Yahoo to lazerman
Default

Try to post new topcs in separate threads, rather than changing the topic completely in an existing thread, lazerman. Thanks - Emily

This is a nifty code for any website where you dont want to have your artwork saved.


<html>
<body>
<tt>[i]RIGHT CLICK HERE</i</tt>
<script language=JavaScript>
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Didn't work did it?";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!docume nt.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>
</body>
</html>
__________________
The Stargate MMORPG
lazerman is offline  
Old 05-01-2004, 01:54 PM   #2 (permalink)
 
Monster Techie

Join Date: Apr 2004

Posts: 1,842

lazerman

Send a message via AIM to lazerman Send a message via Yahoo to lazerman
Default

It works but not through here. I have a link to a page with some of my art in it that has that code. Click Here
The code tags arent working. So go to view>source to see the code.
__________________
The Stargate MMORPG
lazerman is offline  
 
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On