0
votes
1answer
9 views
Autohotkey choking on curly brace in simple If’s
I have a problem with Autohotkey telling me there was a missing { in front of an else where I think my Code is perfectly fine (and worked until before I changed the window-related if's from Pidgin to …
0
votes
2answers
22 views
mapping a key so the mapping is valid only in certain application
don't know if this is better suited here, or on SU - feel free to move to your liking
Is it possible to map a key alias in autohotkey (for example, < and > to F11 and F12), but in a way that the …
1
vote
1answer
19 views
Detect a double key press in AutoHotkey
I'd like to trigger an event in AutoHotkey when the user double "presses" the escape key. But let the escape keystroke go through to the app in focus if it's not a double press (say within the space …
0
votes
3answers
117 views
Choosing a Windows Automation script language. Autoit vs Autohotkey.
I need to choose a windows automation program. Which one do you recommend? AutoIt, AutoHotkey, others?
I have read http://paperlined.org/apps/autohotkey/autoit_and_autohotkey.html , interesting …
0
votes
2answers
17 views
Deleting Notepad Lines Loop
I have a log that looks like this:
line 1
line 2
line 3
line 4
line 1
line 2
line 3
line 4
How can I use AHK to delete lines 1, 2, and 3, but skip the fourth, and then continue to loop?
Thanks!
0
votes
2answers
73 views
Can’t close certain processes with AutoHotkey
I'm having trouble creating a small AutoHotkey script to end all vsjitdebugger.exe processes on a test server. Here's the code I have:
Process, Exist, vsjitdebugger.exe
NewPID = %ErrorLevel%
if …
0
votes
2answers
42 views
How to map a global key to refresh?
Winamp has a neat feature. Global keys. That way I can change the playing song even if Winamp GUI doesn't have focus.
I am looking for a similar solution to Firefox or Chrome.
I use Eclipse to code …
0
votes
1answer
70 views
Make one sticky key not sticky on Windows
I don't use the right control key at all and I like to utilize it as a conveniently placed hotkey for some custom function which I can do easily with Autohotkey.
The problem is I also use sticky keys …
1
vote
6answers
196 views
Autohotkey editor
What is the best editor for Autohotkey with regards to syntax hightlighting, command completion (intellisense), testing etc.
I am doing a bit of Autohotkey programming, and being spoiled rotten by …
1
vote
1answer
70 views
“prefix” word triggers breaking my autohotkey text replacements when ending character not required.
Hi, I'm trying to do many text replacements. Some of the replacement triggering abbreviations are prefixes of other triggering abbreviations, like so:
:*:foo::the
:*:fooed::there
Currently, this …
0
votes
5answers
155 views
why don’t more programming languages have builtin interfaces to the window manager?
Programming is at the heart about automating tasks on a computer.
Presumably those tasks would normally be done manually by a human.
Humans use the computer through the keyboard, mouse, and …
0
votes
1answer
75 views
Parsing a .NET DataGridView with AutoHotKey
Hi everyone,
I'd like to parse the grid in this dialog using AutoHotKey:
It's a modal dialog from a .Net application.. Using Reflector I've been able to find that the grid is a …
1
vote
1answer
322 views
Get available screen area in autohotkey
I'm trying to write a few simple AutoHotkey scripts for moving windows around, and I'm having trouble getting the correct screen size values.
I'm trying to get the size of the usable area on the …
3
votes
4answers
443 views
Mapping Caps Lock to Control from within emacs on Windows
When reading either of these questions or the EmacsWiki article about mapping Caps Lock to Control in emacs in Windows, the best answers seem to involve the registry. My question is what a user can do …
1
vote
3answers
183 views
Automate interaction with a GUI interface
I am interested in writing a script that can automatically operate a program in Windows XP. I figure that I can use something like AutoHotkey to do the clicking. The obstacle I am encountering is …
