The following code has the Run("notepad.exe") commented. I expect the code will wait till I manually start notepad. But the scprit exits without waiting (this is *NOT* expected). If I start a notepad and run the script, the script works fine.
I have spent hours on it without success. Please help!
-Y
-------------------------------- autoIt example doesn't work for me------------------------------
Example()
Func Example()
; Run Notepad
;Run("notepad.exe")
; Wait 10 seconds for the Notepad window to appear.
WinWait("[CLASS:Notepad]", "", 10000)
; Wait for 2 seconds to display the Notepad window.
Sleep(2000)
; Close the Notepad window using the classname of Notepad.
WinClose("[CLASS:Notepad]")
EndFunc ;==>Example