11-21-2003, 04:07 PM
A related solution: Popup-window trigger
I tested it: the solution above works. Here is another.
Have a function set to activate whenever a window named "Enter Network Password" is created. In macro properties, you MUST indicate that the window is a popup, else macro wont work. (In Windows 98, Qm Status bar shows that the window is a popup when you hover the mouse over it)
This has been tested to work on Windows 98 SE.
(Note: The command: run "\\Bigdrive2\d", causes Qm to freeze if i break out of the macro before closing the Password dialog: clicking on Qm window just causes it to beep. Bug?)
I tested it: the solution above works. Here is another.
Have a function set to activate whenever a window named "Enter Network Password" is created. In macro properties, you MUST indicate that the window is a popup, else macro wont work. (In Windows 98, Qm Status bar shows that the window is a popup when you hover the mouse over it)
;Handles the "Enter Network Password" dialog
;Trigger: !Enter Network Password^ /MPREXE
int w=val(command)
but- 26 w ;; unchecks that annoying "Save the password in
;; your password list" microsoft security blunder
;And to extend it:
key "password" ;; i recommend you leave this part out, for security sake
but 1 w
out "Done!"(Note: The command: run "\\Bigdrive2\d", causes Qm to freeze if i break out of the macro before closing the Password dialog: clicking on Qm window just causes it to beep. Bug?)
