在AutoHotkey中获取毫秒数

问题描述 投票:1回答:1

如何在下面的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
timestamp autohotkey milliseconds
1个回答
3
投票

要添加毫秒,您可以使用A_Msec内置变量。

改变这一行:

FormatTime, CurrentDateTime,, hh:mm:ss tt{Enter}{Down}

FormatTime, CurrentDateTime,, hh:mm:ss:%A_msec% tt
© www.soinside.com 2019 - 2024. All rights reserved.