如何在 AutoHotkey 中传播变量?

How to spread a variable in AutoHotkey?

在JavaScript中,我们使用spread operator来展开一个项目数组,例如

const arr = [1, 2, 3]

console.log(...arr) // 1 2 3

我想在AHK中实现类似的效果:

Position := [A_ScreenWidth / 2, A_ScreenHeight]

MouseMove Position ;  how to spread it?

AFAIK,AHK 中没有扩展语法,但有一些替代方法:

对于大数组,您可以使用:

position := [A_ScreenWidth / 2, A_ScreenHeight]
Loop,% position.Count()
    MsgBox % position[A_Index] ; show a message box with the content of any value

position := [A_ScreenWidth / 2, A_ScreenHeight]
For index, value in position
    MsgBox % value ; show a message box with the content of any value

在你的例子中,可以是:

position := [A_ScreenWidth / 2, A_ScreenHeight]
MouseMove, position[1], position[2]

这会将您的鼠标移动到屏幕的底部中间。

为了避免小数,您可以使用 Floor()Round()Ceil() 函数,例如:

position := [ Floor( A_ScreenWidth / 2 ), Round( A_ScreenHeight ) ]
Loop,% position.Count()
    MsgBox % position[A_Index] ; show a message box with the content of any value