This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Persistent | |
CoordMode, ToolTip, screen | |
SetTimer, WatchCursor, 100 | |
return | |
WatchCursor: | |
CoordMode, mouse, Screen ; Coordinates are relative to the desktop (entire screen). | |
MouseGetPos, x_1, y_1, id_1, control_1 | |
CoordMode, mouse, Window ; Synonymous with Relative and recommended for clarity. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
time.sleep(0.25) | |
exitCode, contents = dialog.input_dialog(message="What is the name?", default="") | |
salutation = "" | |
if exitCode == 0: | |
salutation = contents | |
answer = """Hello {0}, |