-
I try to debug a script with "send" instructions. |
Beta Was this translation helpful? Give feedback.
Answered by
fade2gray
Mar 27, 2024
Replies: 1 comment
-
Do something like this ... MsgBox, Do stuff
MySendEvent() ; breakpoint here
MySendEvent(){
WinActivate, Untitled - Notepad
WinWaitActive, Untitled - Notepad
SendEvent, foobar
}
MsgBox, Do more stuff Set a breakpoint at the call to the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mark-wiemer
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do something like this ...
Set a breakpoint at the call to the
MySendEvent()
function and useStep Over (F10)
.