Digital Workshop

Welcome to the Digital Workshop Message Boards
It is currently January 8th, 2025, 8:55 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject: How to disable right mouse clic?
PostPosted: May 18th, 2005, 9:20 pm 
Offline

Joined: December 16th, 2004, 9:49 pm
Posts: 4
Location: Paris, France
Hello,

Is there a way to disable a right mouse clic on an Internet Browser object?

Thank you

_________________
A. Karkache


Top
 Profile  
 
 Post subject:
PostPosted: May 19th, 2005, 9:38 am 
Offline

Joined: October 25th, 2004, 12:32 pm
Posts: 397
Location: Digital Workshop
No it is not possible to disable a right mouse click on an Internet Browser object.


Regards

Brenden Knifton


Top
 Profile Visit website  
 
 Post subject:
PostPosted: May 19th, 2005, 11:41 am 
Offline

Joined: November 9th, 2004, 10:35 am
Posts: 49
Location: Canterbury UK
You can do a work around by including this javascript in the Head section of your html pages.


<script language="JavaScript"> <!--


var message="Sorry, that function is disabled."; // Message for the alert box

// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// --> </script>

_________________
Andy
Hayward Design
E: andy@hayward-design.co.uk
T: 01227 721864

Opus Professional Version v6.00
Build Date Jun 18 2007 15:01:07
Windows XP Professional - Build 2600 Service Pack 2
Total Memory 1024 Mb
DirectX Version 9.0 or better
AMD Athlon


Top
 Profile Visit website  
 
 Post subject:
PostPosted: May 20th, 2005, 8:54 am 
Offline

Joined: December 16th, 2004, 9:49 pm
Posts: 4
Location: Paris, France
Hello,

Thank you for answers.

_________________
A. Karkache


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 73 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group