IronAHK
IronAHK copied to clipboard
Cross platform .NET rewrite of the popular AutoHotkey scripting language for desktop automation.
In Windows 7, when you try and use WinExist or WinClose, and possibly others, it hangs. It did this in on two seperate 7 machines and worked fine on a...
Given this testcase: if ( 1 and *( 0 ) ) MsgBox, yes else MsgBox, no the parser interprets the \* as a binary multiplication operator, instead of a unary...
This is mainly an excuse to get down some thoughts about the X protocol and how to use it to do these crazy things. Maybe you guys have already figured...
The following code : :c_:$>::$this-> :c_:$ù::log( (Replace $> with $this-> and $ù with log( ) Displays the following error in shell when I try to execute the shortcuts Warning, could...
Hi, I tried to run the following script with IronAHK ``` ahk ; ============= config ============= IronAHK := true ; set to true if you're using IronAHK. ; ================================= ptr_size...
Hi, I have created ahk script.Trying to run through ironahk.Its not giving the same output. Run Notepad Send , Hi {Enter} +Prabhu Send , {S 30} Send , +a Send...
Assigning a shortcut to a combination of Windows (#) and Ctrl (!) does not seem to work on Ubuntu using mono. The following command won't be triggered: ^#C::Run("chromium-browser", ~/., min,...
``` msgbox( func("abc") ) ;displays: abc msgbox( func("def") ) ;displays: abcdef ;*should* display: def func(a) { x .= a return x } ```
I was trying to translate [com.ahk](http://www.autohotkey.com/forum/viewtopic.php?t=22923) to use with IronAHK. com.ahk uses RegisterCallback, which fails when I test with `_COMPlusExceptionCode = -532459699` ``` EnumWindowsProc(hwnd, lParam) { global Output WinGetTitle, title,...
the script from below entirely fails in IA even if the string concatinations are fixed. http://www.autohotkey.com/forum/viewtopic.php?t=64493 however running with ahk basic or ahk_l it works as expected.