AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

howto disable rightclick menu

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
pomj



Joined: 22 Feb 2007
Posts: 6

PostPosted: Thu Feb 14, 2008 9:21 am    Post subject: howto disable rightclick menu Reply with quote

I have a little script that allows me to cut, copy & paste with key+rightclick. It looks like this:

; == copy with mouse
+~Rbutton::
Send, ^v ;Paste via shift+right mouse click
return

^~Rbutton::
Send, ^c ;copy via ctrl+right mouse click
return

^+~Rbutton::
Send, ^x ;cut via ctrl+shift+right mouse click
return

The problem is that in many programs I get the rightclick menu. Is there a way to disable it when I use the above routine?

grateful for help.
/michael


[ Moderator!: Moved from Scripts and Functions ]
Back to top
View user's profile Send private message
Guest






PostPosted: Thu Feb 14, 2008 9:24 am    Post subject: Reply with quote

Quote:
grateful for help.
That's the reason why we've set up a section named "Ask for Help" Confused
Help yourself and be more focused on what you're doing. Thx Cool
Back to top
Guest






PostPosted: Thu Feb 14, 2008 9:52 am    Post subject: Reply with quote

Try with rightclick on keyboard

Code:
Send, {APPSKEY}
Back to top
BioBrain



Joined: 13 Feb 2008
Posts: 15
Location: Jakarta-Indonesia

PostPosted: Thu Feb 14, 2008 9:57 am    Post subject: Reply with quote

try to use it without '~'

Code:
+Rbutton::
Send, ^v ;Paste via shift+right mouse click
return

^Rbutton::
Send, ^c ;copy via ctrl+right mouse click
return

^+Rbutton::
Send, ^x ;cut via ctrl+shift+right mouse click
return


I do work.
Back to top
View user's profile Send private message Yahoo Messenger
pomj



Joined: 22 Feb 2007
Posts: 6

PostPosted: Thu Feb 14, 2008 12:08 pm    Post subject: Reply with quote

THANK'S. It works great
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group