quote:
Originally posted by censu
Wow! Whacko, I love you, i really couldn't be assed doing the conversion myself! Cheers even more for open-sourceing it. I intend to re-write the program listed here:
http://www.joni.easynet.co.uk/myprogs_msn7727.html
This time, fully opensource, with better protection and less annoyance features.
Thanks again.
(oh yeah, the dowload is disabled right now, but will be up soon)
if you created the website i suggest editing your no right click feature cuz i still got through it... use this instead (its what i use on my site for my boss in the states)
Stick this between </head> and <body>
code:
<script language=JavaScript>
function clickIE4()
{
if (event.button==2)
{
return false;
}
}
function clickNS4
{
if (document.layers||document.getElementById&&!document.all)
{
if (e.which==2||e.which==3)
{
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("return false")
</script>