I have a python script I want ran on a shortcut key, but I want the Msgbox to tell me it's done once it finishes. How do I do that?
I've tried putting the MsgBox, Done
in different places like so
F8::Runwait, C:\python36\python.exe "C:\Users\jason\Google Drive\pycharm\test.py";
MsgBox, Done
F9::Run, C:\python36\python.exe "C:\Users\jason\Google Drive\pycharm\test1.py";
MsgBox, Done1
Didn't see any examples of this in the Run
or MsgBox
section of the docs.
Would like a "Done" after any hotkeys are executed.