![]() |
|
|
|||||||
![]() |
|
|
Thread Tools | Rate Thread |
|
|
PM User | #6 |
|
New Coder ![]() Join Date: Aug 2002
Location: Inside your computer
Posts: 33
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
I knows... and i really meant the right click feature... sorry yall didnt mean to put the rong stuff... anywho is there a way to tell how many right clicks there have been, you know to change your alert or something like that? thanks
__________________
Bashh Master of the floating frame |
|
|
|
|
PM User | #7 | |
|
Regular Coder ![]() ![]() Join Date: Jun 2002
Location: North East England
Posts: 857
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
Quote:
Other than that any source block or no-right click can be circumnavigated in seconds.
__________________
[+] Computer/PC issues [+] Silverpaw3D ------------------------------------------------ Never buy a dwarf with learning disabilities... ...it's not big, and it's not clever. |
|
|
|
|
|
PM User | #9 |
|
New Coder ![]() Join Date: Aug 2002
Posts: 39
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
I once knew someone with not only a right click proctection script but also disabled view > source and file > edit. is that done on the server? cos no right click is really a waste of time if you can't disable view source and file edit.. and if you could disable those, is there still a way around it?
Last edited by starglow; 08-20-2002 at 02:19 AM.. |
|
|
|
|
PM User | #10 |
|
Regular Coder ![]() Join Date: Jun 2002
Location: Lake Forest, CA
Posts: 265
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
No you cannot disable the View > Source option. Atleast as far as client side scripting goes, I am not sure if this could be done with a server-side language, but as far as i know, its impossible.
|
|
|
|
|
PM User | #11 |
|
New to the CF scene Join Date: Aug 2002
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
Wanna bet?
enter this script into the head of your document <SCRIPT LANGUAGE="Javascript"><!-- var isNS = (navigator.appName == "Netscape") ? 1 : 0; var EnableRightClick = 0; if(isNS) document.captureEvents(Event.MOUSEDOWN||Event.MOUSEUP); function mischandler(){ if(EnableRightClick==1){ return true; } else {return false; } } function mousehandler(e){ if(EnableRightClick==1){ return true; } var myevent = (isNS) ? e : event; var eventbutton = (isNS) ? myevent.which : myevent.button; if((eventbutton==2)||(eventbutton==3)) return false; } function keyhandler(e) { var myevent = (isNS) ? e : window.event; if (myevent.keyCode==96) EnableRightClick = 1; return; } document.oncontextmenu = mischandler; document.onkeypress = keyhandler; document.onmousedown = mousehandler; document.onmouseup = mousehandler; //--> </script> |
|
|
|
|
PM User | #12 |
|
Regular Coder ![]() Join Date: Jun 2002
Location: Lake Forest, CA
Posts: 265
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
Okay, wow... That blocks the right click... Okay, so i got to View > Source, and what... WOW its not blocked...
See, you can block the right click, but its impossible to block the View > Source option... Good Try though |
|
|
|
|
PM User | #14 |
|
New Coder ![]() Join Date: Jun 2002
Posts: 91
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
Just one simple solution that eliminates any kind of protection:
Click Here - Then click on "Show Source" I'm thinking about putting this in my sig.
|
|
|
|
|
PM User | #15 |
|
Super Moderator ![]() ![]() Join Date: May 2002
Location: metro DC
Posts: 3,168
Thanks: 1
Thanked 18 Times in 18 Posts
![]() |
mmm, I have two wonderful bookmarks in Mozilla:
javascript:void(delete document.oncontextmenu);void(delete document.onmousedown);void(delete document.onmouseup); labelled as "reenable context menu" And: javascript:unescape((new XMLSerializer()).serializeToString(document).replace(/</g, '<')) To get around source code encryption in two clicks. |
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Rate This Thread | |
|
|