我有一个脚本用于在我们的系统中输入最初使用MsgBox正常工作的记录,但我添加了一个GUI来显示记录条目。现在脚本在第一条记录后停止。
在下面的示例中,我删除了所有操作和记录行,以帮助简化解析,但我保留了所有重要内容并测试了此版本的脚本。
Loop, read, C:\_AutoHotKey\AA_test.txt
{
StringSplit, LineArray, A_LoopReadLine, %A_Tab%
aaduedate := LineArray1
aauniqueid := LineArray2
aaprefix := LineArray3
aasequence := LineArray4
aadescript := LineArray5
aaelig := LineArray6
;-------------------------------------------------------------------------------------
;Use these to test the file match in the Input File.
;Remove surrounding comments and surround the rest of the script up to the last brace.
SendInput, Prefix: %aaprefix% {enter}
SendInput, Sequence: %aasequence% {enter}
SendInput, Description: %aadescript% {enter}
SendInput, Eligibility: %aaelig% {enter}
SendInput, ID Card: %aaidcard% {enter}
;---------------------------------------------------------------------------------------
;Pop-up validation menu
Gui, Add, Button, x22 y380 w100 h30 , &Submit
Gui, Add, Button, x362 y380 w100 h30 , &Cancel
Gui, Font, S14 CDefault, Verdana
Gui, Add, Text, x152 y10 w210 h30 +Center, Is the entry correct?
Gui, Font, S10 CDefault, Verdana
Gui, Add, Text, x102 y40 w90 h20 , %aaprefix%
Gui, Add, Text, x102 y70 w130 h20 , %aaelig%
Gui, Add, Text, x312 y70 w30 h20 , %aadescript%
Gui, Add, Text, x432 y70 w30 h20 , %aaidcard%
Gui, Font, S8 CDefault, Verdana
Gui, Add, Text, x132 y380 w230 h40 +Center, Click Submit/press S to continue. Click cancel to stop script.
; Generated using SmartGUI Creator 4.0
Gui, Show, x9 y250 h428 w480, Auto Action Validation
Return
ButtonCancel:
ExitApp
ButtonSubmit:
Gui, Submit ;
MouseMove, 630,55
Sleep, 100
SendInput, {Click 630,55}
SendInput ^S
Return
}
按钮确实有效,单击“提交”将发送MouseMove和SendInput。但之后它就会停止并且不会加载文本文件中的下一条记录。
提前致谢!
答案 0 :(得分:0)
循环中有一个返回命令。
退出程序
请参阅此示例。 这个循环应该运行5次,但返回 命令在第一次运行后停止。
Loop, 5
{
msgbox, %A_Index%
return
}
答案 1 :(得分:0)
我可以通过从GUI中删除提交按钮并将其移动到MsgBox来实现此功能。
GUI基本相同,但提交和取消行已被删除,并且返回及其后面的所有逻辑。
接下来,添加了一个MsgBox来确认数据。现在使用GUI显示记录的内容和MsgBox以确认并转到下一条记录。
此外,还有一些我偷走(并且不太懂)的代码移动了MsgBox,因此它不会阻止接收应用中的数据输入屏幕。
这是新代码,它取代了Gui,Show,x9之后的所有内容......
OnMessage(0x44, "WM_COMMNOTIFY")
MsgBox 4, AA Entry, Would you like to continue? (press Yes or No)
WM_COMMNOTIFY(wParam) {
if (wParam = 1027) { ; AHK_DIALOG
Process, Exist
DetectHiddenWindows, On
if WinExist("ahk_class #32770 ahk_pid " . ErrorLevel) {
WinGetPos,,, w
WinMove, 90, 650
}
}
}
;If the user responds yes, then close the Gui (Destroy) and enter the record
IfMsgBox Yes
{
Gui destroy
Sleep, 100
}
else
ExitApp
}
谢谢,我希望这对某人有帮助。