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

With v2.1 being released into alpha I've been brainstorming ideas on how to implement this - New branch, develop concurrently until v2.1 is released fully (May cause many merge conflicts)...

V1: ```ahk gosub Label1 MsgBox, % "global msg" Return Label1: var := 5 if var < 5 return ; this return can fool any attempt to detect end of block...

[https://www.autohotkey.com/boards/viewtopic.php?p=581354#p581354](url) Will fill in details later V1: ```ahk Gui, ClipGui: New, +hwndClGui Gui, ClipGui: Add, Text, % "Center x" . Margin . " y" . Margin . " w" ....

V1: ```ahk /* [script info] version = 1.2 description = long press a key to Send, an alternate symbol or String author = davebrny source = https://github.com/davebrny/long-press */ #NoEnv #NoTrayIcon...

V1: ```ahk Coord := {X: {X_REAL: 12, X_SUB: 8}, Y: {Y_REAL: 240, Y_SUB: 15}} MsgBox % Coord.X.X_REAL For key1, pos in Coord { For key2, realPos in pos { MsgBox...

```ahk #Delimiter - MsgBox- Test ; This-is-a-comment ``` See https://github.com/mmikeww/AHK-v2-script-converter/issues/242#issuecomment-2219677454_

I have an AHK V1 script I use there, for the ListView GUI ,if the user pressed the DEL key: if A_GuiEvent = K { IF A_EventInfo=46 ;DEL key {...

V1: ```ahk Run,% "*RunAs " ComSpec " /c .\folder\foo.exe .\folder\bar.sys " foobar, A_ScriptDir, Hide ``` V2 (Converted): ```ahk Run("*RunAs " A_ComSpec " /c .\folder\foo.exe .\folder\bar.sys " foobar, "A_ScriptDir", "Hide") ```...

Only the RedX appends any VI code in the GUI to `TempScript.ah1`, but even then the converter does not exit fully, needing to shut down using the tray menu. Shouldn't...

More accurately highlighting only works on the last defined editor (no matter if it's displayed or not) unrelated todo list - create Scintilla_SetAHKV1