Changes between Version 1 and Version 2 of Ticket #954
- Timestamp:
- 05/14/09 01:12:28 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #954 – Description
v1 v2 1 {{ (1 {{{ 2 2 WinActivate("I/M Period End Processing") 3 3 WinWaitActive("I/M Period End Processing",5) 4 }} )4 }}} 5 5 6 6 Autoit appears to be waiting indefinitely for the listed window. I suspect it may have to do with the "/". 7 7 8 8 I can substitute: 9 {{ (9 {{{ 10 10 WinActivate("I/M Period End Processing") 11 11 ;~ WinWaitActive("I/M Period End Processing",5) 12 12 Sleep(1000) 13 }} )13 }}} 14 14 15 15 This can get me past this and I can ControlClick whatever I need next, but I hate to blindly send Enter and/or Clicks as it will inevitably fail.