gpt4 book ai didi

autoit - 如何在 AutoIt 中进行键盘输入?

转载 作者:行者123 更新时间:2023-12-02 09:00:55 25 4
gpt4 key购买 nike

我想在 AutoIt 中编写一个脚本,它可以从键盘自动输入 A-Z,无需用户干预。

这可能吗?

最佳答案

您的程序不太可能需要捕获所有按键的所有输入。如果您确实需要这种用户输入,AutoIt 可能不适合您 - 请参阅 the post from the author of AutoIt about keyloggers 。如果您需要接受热键类型的键盘输入:在 AutoIt 中执行此操作非常简单。

HotKeySet("^+{q}", "reactionFunction")

While 1
; A loop
WEnd

Func reactionFunction()
MsgBox(0, "You pressed CTRL+Shift+q", "You pressed CTRL+Shift+q")
Exit
EndFunc

如果您想从输入框中获取用户输入,这也非常简单。

$data = InputBox("Enter Something", "Enter some data in the field below.")
MsgBox(0, "The String You Entered...", "The string you entered is... " & $data)

有关HotKeySet和InputBox的更多信息可以在the AutoIt.chm help file中找到(这实际上是一个很好的引用)。

关于autoit - 如何在 AutoIt 中进行键盘输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1298477/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com