How to enable AHK_L features in AutoHotKey?
我正在运行我在此处下载的 AHK_L:
http://l.autohotkey.net/AutoHotkey_L_Install.exe
总而言之,运行以下脚本应该会破坏标准 AHK,但会在 AHK_L 中弹出三个 Msgbox。
1 2 3 | arr := Array("b","a","c") Loop, % arr.len() Msgbox, % arr[A_Index] |
我什么也得不到;没有错误,也没有 Msgboxes。为什么这会发生在我身上? AHK_L 版本 1.1.09.04.
更具体地说,为什么这个论坛发帖:
http://www.autohotkey.com/board/topic/45876-ahk-l-arrays/
... 主要包含不起作用的命令?这些来自旧版本的 AHK_L 吗?等等
给你..
1 2 3 4 5 | arr := Array("b","a","c") Loop, % arr.MaxIndex() { Msgbox, % arr[A_Index] } |