Tekil Mesaj gösterimi
Alt 02-03-2006, 08:00 PM   #1 (permalink)
koray15
Acemi üye
 
Üyelik tarihi: Feb 2006
Nerden: istanbul
Mesajlar: 66
Tecrübe Puanı: 0 koray15 is an unknown quantity at this point
Sağ tuş kilidi

Sağ tuş kilidi

Kod:
<script language="Javascript1.2"> 
<!--
// please keep these lines on when you copy the source
// made by: AHMET EKİNLER - http://www.ahmetx.net

var mymessage = "Sağ Tuş Kullanmanız Engellenmiştir.(www.ahmetx.net)";

function rtclickcheck(keyp){
  if (navigator.appName == "Netscape" && keyp.which == 3) {
    alert(mymessage);
    return false;
  }

  if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) {
    alert(mymessage);
    return false;
  }
}

document.onmousedown = rtclickcheck
//-->
</script>
koray15 Çevrimdışı   Alıntı ile Cevapla