密碼
InputBox, password, Enter your Password,, HIDE,, 100
Loop, {
if (errorlevel = 1)
return
if (password = "password") {
MsgBox, The password is correct.
return
} else if (password != "password") {
MsgBox, The password is incorrect.
InputBox, password, Enter your Password,, HIDE,, 100
}
}
這將檢查使用者是否在輸入框中鍵入了密碼。如果使用者鍵入正確的值,則會顯示密碼正確。並關閉輸入框。如果使用者鍵入了錯誤的值,則會顯示密碼不正確。並重新開啟輸入框。如果 errorlevel 為 1(使用者按下取消),它將終止指令碼。