Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/09/2010, 13:33
DigInDreams
 
Fecha de Ingreso: septiembre-2010
Ubicación: In my dreams ^^
Mensajes: 18
Antigüedad: 13 años, 7 meses
Puntos: 0
Respuesta: Seguro anti-copia

Te dare el código pero como comentaron arriba: "Si desactivas Javascript todo deja de funcionar".

"Alert" que bloquea el clic derecho [Similar al de Metroflog, más bien igual]

Código Javascript:
Ver original
  1. <script type="text/javascript">
  2. //<![CDATA[
  3.  
  4. <!--
  5. function IE(e) {
  6.      if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3")) {
  7.           alert('Aqui tu alerta para internet explorer');
  8.           return false;
  9.      }
  10. }
  11. function NS(e) {
  12.      if (document.layers || (document.getElementById && !document.all)) {
  13.           if (e.which == "2" || e.which == "3") {
  14.                alert('Aqui tu alerta para Netscape y gecko');
  15.                return false;
  16.           }
  17.      }
  18. }
  19. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  20. //-->
  21. //]]>
  22. </script>

AlejandroM!