AHK-v2-script-converter icon indicating copy to clipboard operation
AHK-v2-script-converter copied to clipboard

AHK v1 -> v2 script converter WORK IN PROGRESS

Results 72 AHK-v2-script-converter issues
Sort by recently updated
recently updated
newest added

I will add a function to rename the labels to the allowed characters. if the first letter is a number, we will add _ before the label. As this will...

A possible problem when converting the Hotkey command, it does not understands that the second command is pointing to a Key. WheelUp should need to become quoted "WheelUp". I could...

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

https://autohotkey.com/boards/viewtopic.php?f=37&t=2998

```autohotkey ; v1 var = %var2% ; should be var := Trim(var2) ``` this below doesn't AutoTrim. Only the explicit double %% ```autohotkey ; v1 var = % var2 ```...

this ``` f = %A_FormatFloat% ``` converts to ``` f := A_FormatFloat ``` even though `A_FormatFloat` is supposed to be removed if the original assignment had used `:=` instead, then...

v2changes: > PixelSearch and PixelGetColor use RGB values instead of BGR, for consistency with other commands.