AutoIt 脚本中的变量仅识别输入框中的第一个字符
我正在尝试创建在输入输入框后能够识别多字符变量(xx.xx 格式的数字)的脚本。在输入框中输入 xx.xx 格式的变量后,该变量将仅显示为单个字符,使用第一个字符。例如,如果我在输入框中输入 10.80,则在脚本运行时重用该变量时,只会显示为 1。
以下是使用该变量的脚本部分:
Dim $price
$price = InputBox("Offer Price", "Input Offer Price")
Send("{TAB}")
Send("{"& $price &"}") ; Enters variable
Send("{DOWN}{TAB}{TAB}{TAB}{ENTER}")
I am trying to create script that is able to recognize a multi-character variable (a number in xx.xx format) after entering into input box. After entering the variable in xx.xx format into the input box, the variable will only show up as a single character, using the first character. For example, if I put 10.80 into the input box, the variable when reused when the script is run, will only show up as 1.
Here are parts of the script that uses the variable:
Dim $price
$price = InputBox("Offer Price", "Input Offer Price")
Send("{TAB}")
Send("{"& $price &"}") ; Enters variable
Send("{DOWN}{TAB}{TAB}{TAB}{ENTER}")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
发送字符 1。
发送字符 100000000000000000。
很多人对何时在 Send 中使用 {花括号} 感到困惑。
更改您的脚本来执行此操作:
sends the character 1.
sends the characters 100000000000000000.
A lot of people get confused with when to use {curly braces} with Send.
Change your script to do this instead:
我觉得我可能完全误解了你的问题,但你似乎要求一个输入框来检查输入是否符合特定的输入模式,然后为你提供最左边的字符。这将做到这一点。
I get the feeling I may be entirely misunderstanding your question but you seem to be asking for an input box that checks if the input meets a particular input pattern then gives you the left most character of it. This will do that.