| View previous topic :: View next topic |
| Author |
Message |
pomj
Joined: 22 Feb 2007 Posts: 6
|
Posted: Thu Feb 14, 2008 9:21 am Post subject: howto disable rightclick menu |
|
|
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 |
|
 |
Guest
|
Posted: Thu Feb 14, 2008 9:24 am Post subject: |
|
|
| Quote: | | grateful for help. | That's the reason why we've set up a section named "Ask for Help"
Help yourself and be more focused on what you're doing. Thx  |
|
| Back to top |
|
 |
Guest
|
Posted: Thu Feb 14, 2008 9:52 am Post subject: |
|
|
Try with rightclick on keyboard
|
|
| Back to top |
|
 |
BioBrain
Joined: 13 Feb 2008 Posts: 15 Location: Jakarta-Indonesia
|
Posted: Thu Feb 14, 2008 9:57 am Post subject: |
|
|
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 |
|
 |
pomj
Joined: 22 Feb 2007 Posts: 6
|
Posted: Thu Feb 14, 2008 12:08 pm Post subject: |
|
|
| THANK'S. It works great |
|
| Back to top |
|
 |
|