Jun 21, 2001 1 #1 sean101 Technical User Jun 21, 2001 6 US Hi all, Does anybody know what is the code to have a script wait for a certain window to be active before continuing the script? Is this even possible? Thanks, Sean
Hi all, Does anybody know what is the code to have a script wait for a certain window to be active before continuing the script? Is this even possible? Thanks, Sean
Jul 26, 2001 #2 Guest_imported New member Jan 1, 1970 0 The only way I've found it to use AutoIt.dll. This has a ton of useful functions. The one you're looking for is WinWaitActive <Window Title>,<Window Text> [,<Timeout>] Stops script execution until the specified window to exists and is active. You can get it at. http://www.hiddensoft.com/AutoIt/ Best of all it's FREE. dave Upvote 0 Downvote
The only way I've found it to use AutoIt.dll. This has a ton of useful functions. The one you're looking for is WinWaitActive <Window Title>,<Window Text> [,<Timeout>] Stops script execution until the specified window to exists and is active. You can get it at. http://www.hiddensoft.com/AutoIt/ Best of all it's FREE. dave
Aug 17, 2001 #3 bbo76 Programmer Aug 17, 2001 3 US ' Important: wait till MSIE is ready Do While (object.Busy) Loop This is the easiest way I have found. I have onbly used it once but it worked liks a charm. Upvote 0 Downvote
' Important: wait till MSIE is ready Do While (object.Busy) Loop This is the easiest way I have found. I have onbly used it once but it worked liks a charm.