G4C

; This is just a little borderless window, centered on the screen, with
; a box around it, displaying the message "Please wait..", or any other,
; if you thereafter change the TEXT gadget contents. (from another GUI).


WinBig -1 -1 200 30 ""
WinType 000010                  ; a borderless window

BOX 1 1 198 28 OUT ICONDROP     ; a box, for unrivaled dramatic effect :)

xOnRMB                ; We close the window on Right Mouse Button..
GuiClose wait.g

xOnInactive           ; or if it becomes inactive.
GuiClose wait.g

TEXT 30 8 150 15 "Please wait..." 30 NOBOX
GadID 1


