vote up 1 vote down star

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 history but without a clear recommendation. Searching on google leaves a winner (around 312k hits for AutoHotkey Windows vs 482k hits for AutoIt Windows). In StackOverflow there are 15 questions tagged as AutoIt vs 18 for AutoHotkey.

I am interested on your opinion as programmers. Which one do you think is easier to use, more deployable and more powerful in terms of functionality?

Note: I have already used AutoHotkey for personal use. So my initial preference is for this.

flag
AutoIt changed my life. It has became an invaluable tool in my work. – Copas Nov 7 at 16:43

3 Answers

vote up 0 vote down

I think ArcisCannae summarized well the differences.

I used AutoIt because AutoHotkey (AHK) was created, when it has a clumsy syntax inherited from BAT files... I fear I don't have much experience with current AutoIt to make correct comparison. I know it has a quite regular syntax, while AHK's syntax, although greatly improved from the original batch style, is quite clunky and seems odd to programmers. Funnily, people having never coded before actually love this syntax!

Personally, I hesitated a lot, read numerous comparison articles, and finally chose AHK despite its syntax, partly because of its superior hotkey management, partly because it was open source. Author was active at the time (looks like he reduced a bit the rate of releases but still work on it) and is open to suggestions: at a time I shown a prototype of regular expression support using PCRE DLL, and author integrated the idea and concepts and pushed them beyond (RE support in window name detection for example).

Documentation is excellent, detailed and full of examples with a comprehensive index; the community is very active and helpful; binary is compact and you can make a standalone exe with your scripts.

It also has a nice little GUI support, good for quick simple dialogs.

I won't say one is "better" than the other, the choice is mostly a matter of taste, feeling, needs...

link|flag
vote up 2 vote down

I've used both very much.

AutoHotKey is very good at managing hotkeys and basic GUI automation. It's syntax is horrible and it's not meant for bigger applications. It lacks arrays for example.

AutoIt has almost every feature AHK has and much more. COM-automation support, arrays and a pretty nice UDF (User Defined Functions) library. It's harder to build complex hotkeys in AutoIt.

link|flag
vote up 1 vote down

I have been extremely happy with AutoIT. The language is an easy flavor of Basic. They include great help files, a script compiler, an editor that understands not only the syntax but supports F1 for help, etc. They have plenty of code samples.

I don't have any first hand experience with AutoHotKey - I do remember considering it but I've never looked back since using AutoIT.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.