29/03/2005, 12:42
|
| (Desactivado) | | Fecha de Ingreso: marzo-2005 Ubicación: .::Florida-Usa::.
Mensajes: 234
Antigüedad: 19 años, 9 meses Puntos: 0 | |
intenta Deshabilita botón derecho y teclas shift,alt,ctrl con este script
<SCRIPT language=JavaScript>
<!--
var message="La copia está prohibida"; //protect from right-click
function click(mouse) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (mouse.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MouseDown); //protect from keyboard keypress
function keypressed() {
alert("Tecla no permitida");
}
}
document.onmousedown=click;
document.onkeydown=keypressed;
// -->
</SCRIPT>
suerte campeon !!!! Saludos |