AutoHotkey v1.1.12
Enhancements to Function Calling
Optional parameters can be omitted by writing two consecutive commas, as in
InStr(a, b,, 2)
. Unlike previous versions, this now works for objects (including COM objects) and built-in functions. [a,,b]
can be used to create a sparse array.Object properties can now be set using variadic syntax, as in
x[y*]:=z
, where y contains an array of keys/indices or parameters.v1.1.12.00 is the result of merging v1.1.11.02 and the test release. There are no additional changes.