Tekil Mesaj gösterimi
Alt 29-06-2019, 10:56   #1
Derbeder - ait Kullanıcı Resmi (Avatar)
Üyelik Tarihi: Jan 2017
Mesajlar: 385
Beğendikleri:
Beğeni Puanı:
Tecrübe Puanı: 10
klavyeciler
Türkiyenin En Büyük, Müzisyen Paylaşım Forumu Ritim Set Ses Sampleler Korg Türkiye Yamaha Ketron Roland Gem Md Karaoke altyapı Korg Ritim Set Yamaha Pack


Standart VBCODE | Script Ctrl + c Koruması

3.8.X değil tüm sürümlerde kullanabilirsiniz.
Footer şablonunu açın en altına ekleyin. Tabi bu misafirlere göredir.

Seçim ve Sağ Tık Engelleme:

Kod:
<if condition="$show['guest']"><script language=JavaScript>
<!--
if ( window.Event )
document.captureEvents( Event.MOUSEUP );

function nocontextmenu()
{
event.cancelBubble = true, event.returnValue = false;
return false;
}

function norightclick( e )
{
if ( window.Event )
{
if ( e.which == 2 || e.which == 3 )
return false;
}
else if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true, event.returnValue = false;
return false;
}
}

if ( document.layers )
document.captureEvents( Event.MOUSEDOWN );

document.oncontextmenu = nocontextmenu;
document.onmousedown = norightclick;
document.onmouseup = norightclick;

function notaccept(e)
{
return false;
}

document.onmousedown = notaccept;
document.onselectstart = new Function( "return false" );
// -->
</script></if>
Ctrl + c Engelleme :

Kod:
<if condition="$show['guest']"><script>
function ctrlCEngelle(e) {
olay = document.all ? window.event : e;
tus = document.all ? olay.keyCode : olay.which;
if(olay.ctrlKey&&(tus==99||tus==67)) {
if(document.all) { olay.returnValue = false; } else { olay.preventDefault(); }
}
}
</script></if>

Konu Derbeder tarafından (29-06-2019 Saat 20:14 ) değiştirilmiştir.
Derbeder isimli Üye şimdilik offline konumundadır  
Alıntı ile Cevapla