Kết quả 1 đến 1 của 1
Chủ đề: Disable Right Click
-
11-02-14, 07:44 PM #1
Disable Right Click
This script will act as a sort of barrier to prevent people from right clicking on your forum thus offering some sort of protection. There are ways to get round this but think of it as a hurdle which may put some people off.
Add the following code to the header template:
Code:
PHP Code:<script type="text/javascript">
<!--
var error="Right click functionality is disabled";
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(error);return false")
// -->
</script>
Editing the Error Message:
Changing the message shown is a piece of cake. This can be done by finding this line near the top of the script:
Code:
PHP Code:var error="Right click functionality is disabled";
Change the text in quotes to anything you like.
Khách viếng thăm hãy cùng PandavB xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!
Các Chủ đề tương tự
-
[MU] Lỗi No-Ip Disable Mong Các Bạn Giúp Đỡ
Bởi sontran901 trong diễn đàn Hỏi Đáp/ Yêu CầuTrả lời: 3Bài viết cuối: 15-03-12, 10:46 PM -
[MU] Lỗi khi click vào nhân vật bản 11.00.00
Bởi detucuadavid trong diễn đàn Hỏi Đáp/ Yêu CầuTrả lời: 0Bài viết cuối: 26-02-12, 07:08 PM -
[KT] Cần giúp về vấn lỗi không click vào NPC thủ khố
Bởi kakakura trong diễn đàn Hỏi Đáp/ Yêu CầuTrả lời: 7Bài viết cuối: 09-02-12, 01:00 PM -
NPC Cổ Lão Thái không click được vào
Bởi del.love trong diễn đàn Hỏi Đáp/ Yêu CầuTrả lời: 17Bài viết cuối: 28-08-10, 06:53 PM -
Click vào NPC
Bởi hihahihuc trong diễn đàn Hỏi Đáp/ Yêu CầuTrả lời: 3Bài viết cuối: 15-08-10, 09:19 AM