在 AutoHotkey 中获取毫秒数
Getting milliseconds in AutoHotkey
如何向下面的 AHK 脚本添加毫秒?我一直在研究,但找不到方法——或者更好的是,不理解 SO 中发布的一些解决方案……我对任何类型的编程也不了解。你能帮忙吗?
我如何获得毫秒数?
runwait, net time /setsntp:"us.pool.ntp.org",,hide
run, w32tm /resync,,hide
^Space::
FormatTime, CurrentDateTime,, hh:mm:ss tt{Enter}{Down}
sendInput %CurrentDateTime%
return
要添加毫秒,您可以使用 A_Msec 内置变量。
更改此行:
FormatTime, CurrentDateTime,, hh:mm:ss tt{Enter}{Down}
至
FormatTime, CurrentDateTime,, hh:mm:ss:%A_msec% tt
如何向下面的 AHK 脚本添加毫秒?我一直在研究,但找不到方法——或者更好的是,不理解 SO 中发布的一些解决方案……我对任何类型的编程也不了解。你能帮忙吗?
我如何获得毫秒数?
runwait, net time /setsntp:"us.pool.ntp.org",,hide
run, w32tm /resync,,hide
^Space::
FormatTime, CurrentDateTime,, hh:mm:ss tt{Enter}{Down}
sendInput %CurrentDateTime%
return
要添加毫秒,您可以使用 A_Msec 内置变量。
更改此行:
FormatTime, CurrentDateTime,, hh:mm:ss tt{Enter}{Down}
至
FormatTime, CurrentDateTime,, hh:mm:ss:%A_msec% tt