| Author |
Message |
Topic: Send characters, avoid interpretation? |
Futurepower(R)
Replies: 2
Views: 167
|
Forum: Ask for Help Posted: Mon Apr 26, 2010 11:22 pm Subject: Prefix the hotkey with $ |
Thanks. That led me to the right answer:
To prevent a hotkey from interpreting itself, prefix the hotkey with $, as shown below:
$^s:: ; Control-s
Explained on the http://www.autohotkey.com/d ... |
Topic: Send characters, avoid interpretation? |
Futurepower(R)
Replies: 2
Views: 167
|
Forum: Ask for Help Posted: Mon Apr 26, 2010 9:44 am Subject: Send characters, avoid interpretation? |
I've defined Control-s (^s) as a hotkey in AutoHotkey.
However, sometimes I want to send Control-s to a program. In that case, I don't want to have it intercepted and interpreted by AutoHotkey.
... |
Topic: Exit AutoHotkey from command line? |
Futurepower(R)
Replies: 5
Views: 462
|
Forum: Ask for Help Posted: Wed Mar 12, 2008 2:03 pm Subject: Laszlo: ::exitahk:: explained. |
Laszlo, When I first read your comment, I completely understood 3 lines out of the four you wrote. I didn't understand this:
::exitahk::
I didn't see any way to find that in the Help, because Window ... |
Topic: Exit AutoHotkey from command line? |
Futurepower(R)
Replies: 5
Views: 462
|
Forum: Ask for Help Posted: Tue Mar 11, 2008 8:35 pm Subject: Exit AutoHotkey from command line? |
Is it possbile to exit AutoHotkey from the command line?
I've searched the help and not found a method of doing that. |
Topic: Establishing a standard/recommended editor for AutoHotkey |
Futurepower(R)
Replies: 24
Views: 16962
|
Forum: Wish List Posted: Thu May 03, 2007 12:37 pm Subject: Micahs's SciTE package and comments. |
Well, I didn't just post the config files or anything, it is a complete SciTE package.
I'm very enthusiastic about SciTE. It seems like the editor we need. I like that it doesn't use the Windows reg ... |
Topic: [ARCHIVED THREAD] SciTE4AutoHotkey |
Futurepower(R)
Replies: 19
Views: 4006
|
Forum: Scripts & Functions Posted: Wed May 02, 2007 2:35 pm Subject: Thanks, PhiLho. I fixed everything, I think. |
About your code, I see some lines ending with a 's', like style.ahk1.1 or style.ahk1.17, it might be a typo.
Thanks, PhiLho. It was more than a typo, it was a gremlin. *grin* I was trying to work too ... |
Topic: Establishing a standard/recommended editor for AutoHotkey |
Futurepower(R)
Replies: 24
Views: 16962
|
Forum: Wish List Posted: Wed May 02, 2007 2:14 pm Subject: Could you provide the URL of your configuration method? |
Yeah I saw that. I know SciTE has a lot of cool features, that's why I use it and posted the config I use. Mine is set up for portability, something not addressed in other threads.
Could you provide ... |
Topic: Ranorex - Test and Automation Lib [C++/Python/NETs] |
Futurepower(R)
Replies: 14
Views: 3634
|
Forum: Utilities & Resources Posted: Wed May 02, 2007 6:53 am Subject: Ranorex is limited in functionality. |
| Try RanorexSpy.exe. Note that, since all Mozilla products use a non-standard way of windowing, Ranorex cannot get the IDs of controls, and so cannot be used with Mozilla products and others like them. |
Topic: Establishing a standard/recommended editor for AutoHotkey |
Futurepower(R)
Replies: 24
Views: 16962
|
Forum: Wish List Posted: Wed May 02, 2007 6:30 am Subject: SciTE for AutoHotkey is available. |
Note that SciTE for AutoHotkey is available. SciTE has an excellent feature: Code folding, which collapses items between braces until you need to see them.
SciTE is the same editor supplied with Au ... |
Topic: [ARCHIVED THREAD] SciTE4AutoHotkey |
Futurepower(R)
Replies: 19
Views: 4006
|
Forum: Scripts & Functions Posted: Wed May 02, 2007 6:17 am Subject: I think my way may be a little less risky. |
lexikos,
I am not familiar enough with SciTE editor to know whether that works.
In fact, I am not familiar enough with that editor to know with certainty that the method I posted works. However ... |
Topic: [ARCHIVED THREAD] SciTE4AutoHotkey |
Futurepower(R)
Replies: 19
Views: 4006
|
Forum: Scripts & Functions Posted: Tue May 01, 2007 11:43 pm Subject: Alternative Syntax Highlighting: ahk.properties file |
SciTE's code folding makes code easier to read. The present version does not syntax highlight .INI files such as AutoHotkey.ini, only .AHK files.
The alternative syntax highlighting file below uses ... |
Topic: How to send the Hotkey, not redefine it? |
Futurepower(R)
Replies: 12
Views: 803
|
Forum: Ask for Help Posted: Tue May 01, 2007 9:42 pm Subject: I read the code, but didn't see the $. |
Thanks very much.
I read the code, but didn't see the $, because I looked only in the lower portion of the code, assuming a normal hotkey was being defined.
Could you direct me to the place in t ... |
Topic: How to send the Hotkey, not redefine it? |
Futurepower(R)
Replies: 12
Views: 803
|
Forum: Ask for Help Posted: Tue May 01, 2007 9:05 pm Subject: ^B::SendInput ^B doesn't work. |
I would like Control-B to send Control-B, as in:
^B::Send ^B
Try it, it doesn't work, because it sends the ^B back to AutoHotkey, which sends another ^B, which goes back to AutoHotkey, and so on ... |
Topic: How to send the Hotkey, not redefine it? |
Futurepower(R)
Replies: 12
Views: 803
|
Forum: Ask for Help Posted: Tue May 01, 2007 3:38 pm Subject: How can hotkey ^B send ^B without an infinite loop? |
| Thanks for your replies. I found by testing that a hotkey such as ^B cannot send ^B because that results in an infinite loop. I know there is a way to tell AutoHotKey not to interpet the sent ^B as a ... |
Topic: How to send the Hotkey, not redefine it? |
Futurepower(R)
Replies: 12
Views: 803
|
Forum: Ask for Help Posted: Tue May 01, 2007 1:02 am Subject: How to send the Hotkey, not redefine it? |
I searched the help for an hour and was not able to discover how to send a Hotkey without redefining it. For example, suppose in a program you sometimes want a Control-B Hotkey to send Control-B.
C ... |
| |