Version: 1.00, by borbole
Developer Last Online: Oct 2015
Category: Mini Mods -
Version: 4.0.2
Rating:
Released: 03-03-2010
Last Update: Never
Installs: 79
Template Edits
Re-useable Code Translations
No support by the author.
This script taken from dynamic drive will disable the right click on your forum for guests. As to offer some protection to your materials being stolen from your forum.
Note: This will prevent them only for the right click and copy/paste directly.
Anyway, add the following code to the very begin of the headinclude template.
Code:
<vb:if condition="$show['guest']">
<script type="text/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="Right click is disabled for guests!";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.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>
</vb:if>
To change the message shown to guests when attempting to right click at your forum, find the following code:
Code:
var message="Right click is disabled for guests!";
And change the text
Code:
Right click is disabled for guests!
with your own message.
Show Your Support
This modification may not be copied, reproduced or published elsewhere without author's permission.
When the context menu has been disabled like this it can be easily re-enabled by typing javascript:void oncontextmenu(null) into the address bar of the browser.
how do i set it so no one can do it ?? for certain user groups
Replace the code with this one:
Code:
<vb:if condition="is_member_of($bbuserinfo, 1,2,3)">
<script type="text/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="Right click is disabled for guests!";
///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.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>
</vb:if>
And change the gids 1,2,3 with your own usergroups ids that you don''t want to use the right click function at your forum.