| View previous topic :: View next topic |
| Author |
Message |
azure
Joined: 07 Jun 2007 Posts: 296
|
Posted: Sun Oct 07, 2007 4:20 pm Post subject: hotkey interfere |
|
|
hello
I have this script:
| Code: | #IfWinActive ahk_class mIRC
Left::F2
Right::F3 |
but it interferes ctrl+Left/Right combinations as well
how do I stop this?
thanks |
|
| Back to top |
|
 |
Conquer
Joined: 27 Jun 2006 Posts: 383 Location: Canada
|
Posted: Sun Oct 07, 2007 5:25 pm Post subject: |
|
|
you could add modifiers? like shift? _________________
 |
|
| Back to top |
|
 |
azure
Joined: 07 Jun 2007 Posts: 296
|
Posted: Mon Oct 08, 2007 6:31 am Post subject: |
|
|
| can you explain more please what do you mean? |
|
| Back to top |
|
 |
azure
Joined: 07 Jun 2007 Posts: 296
|
Posted: Tue Oct 09, 2007 3:18 pm Post subject: |
|
|
 |
|
| Back to top |
|
 |
ahklerner
Joined: 26 Jun 2006 Posts: 1213 Location: USA
|
Posted: Wed Oct 10, 2007 12:40 am Post subject: |
|
|
| Conquer wrote: | | you could add modifiers? like shift? |
| azure wrote: | | can you explain more please what do you mean? |
| Code: | +Left:: ; Shift & Left
+Right:: ;
#Left:: ; Win & Left
#Right:: ;
... |
_________________
 |
|
| Back to top |
|
 |
|