PDA

View Full Version : Show Thread Enhancements - prevent guest from use the mouse in the pages of threads


hazem_aliraqi
05-08-2015, 09:00 PM
hello :)


this code for prevent guest from use the mouse in the pages of threads

so this code is work only in thread pages

and i find it work with Google Chrome , Firefox, Enternet


just add this at the end of headinclude template


this code with out alert


<vb:if condition="$show['guest']">
<vb:if condition="THIS_SCRIPT == 'showthread' OR THIS_SCRIPT == 'threads'">
<script>
var isNS = (navigator.appName) ? 1 : 0;
if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUS EUP);
function mischandler(){
return false;
}
function mousehandler(e){
var myevent = (isNS) ? e : event;
var eventbutton = (isNS) ? myevent.which : myevent.button;
if((eventbutton==1)||(eventbutton==3)) return false;
}
document.oncontextmenu = mischandler;
document.onmousedown = mousehandler;
document.onmouseup = mousehandler;
</script></vb:if> </vb:if>


if you want to add alert to appear for guest use that code



<vb:if condition="$show['guest']">

<vb:if condition="THIS_SCRIPT == 'showthread' OR THIS_SCRIPT == 'threads'">

<script>
var isNS = (navigator.appName) ? 1 : 0;
if(navigator.appName == "Netscape") document.captureEvents(Event.MOUSEDOWN||Event.MOUS EUP);
function mischandler(){
return false;
}
function mousehandler(e){
var myevent = (isNS) ? e : event;
var eventbutton = (isNS) ? myevent.which : myevent.button;
if((eventbutton==1)||(eventbutton==3)) alert(" Sorry you cannot use shading and copies in threads only after you register "); return false;
}
document.oncontextmenu = mischandler;
document.onmousedown = mousehandler;
document.onmouseup = mousehandler;
</script></vb:if> </vb:if>

tanzeelniazi
05-09-2015, 05:57 PM
i dont understand can you show the screen shoot

Skyrider
05-10-2015, 05:23 AM
i dont understand can you show the screen shoot
if((eventbutton==1)||(eventbutton==3)) return false;
By looking at that code, it blocks the first and second (left and right) mouse buttons. How do you expect guests to return to eg, home screen if their mouse buttons is being blocked?

hazem_aliraqi
05-10-2015, 05:50 AM
By looking at that code, it blocks the first and second (left and right) mouse buttons. How do you expect guests to return to eg, home screen if their mouse buttons is being blocked?



just use the code without alert

Zachery
05-10-2015, 11:59 AM
Why would you even expect users to stay on your site?