mmikeww

Results 37 issues of mmikeww

I know this might be a shot in the dark, not sure you even mess with AHK anymore I've been using your old Gdip_PixelSearch MCode function from here: https://autohotkey.com/board/topic/79077-gdip-pixelsearch/ Would...

First, is the issue tracker supposed to be used for help and support? If not, feel free to delete this. I just have a quick question. From the docs: >...

I'm not sure what the reasoning is behind using the Cream distribution for Vim, rather than the official distribution. I thought maybe the official Vim installer was using some wacko...

there is already a unit test for this, it is commented out `Continuation_NewlinePreceeding()` here: https://github.com/mmikeww/AHK-v2-script-converter/blob/master/tests/Tests.ahk#L283

``` if false { msgbox } msgbox 3 ``` ``` if false { msgbox } if var = 5 { msgbox 2 } ``` ``` var := 5 if false...

can replace ```autohotkey FileReadLine, line, C:\My Documents\ContactList.txt, 5 ``` with ```autohotkey Loop, Read, C:\My Documents\ContactList.txt { if (A_Index = 5) { line := A_LoopReadLine break } } ``` or using...

could use this all AHK solution: https://www.autohotkey.com/boards/viewtopic.php?f=6&t=59029 maybe not, i don't think that rich edit textbox can display line numbers

this is annoying because we were previously checking the value of `A_StringCaseSense` to handle things like InStr perhaps we can do a first pass through the script, and if we...

this might be a problem because functions can be deeply nested inside arbitrary expressions but for example `StrReplace()` has added an extra param in the middle in v2 so that...

``` ^Numpad0::Run, taskmgr ``` https://autohotkey.com/boards/viewtopic.php?p=208549#p208549