Changes between Version 1 and Version 2 of Ticket #954


Ignore:
Timestamp:
05/14/09 01:12:28 (16 years ago)
Author:
Valik
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #954 – Description

    v1 v2  
    1 {{(
     1{{{
    22WinActivate("I/M Period End Processing")
    33WinWaitActive("I/M Period End Processing",5)
    4 }})
     4}}}
    55
    6  Autoit appears to be waiting indefinitely for the listed window. I suspect it may have to do with the "/".
     6Autoit appears to be waiting indefinitely for the listed window. I suspect it may have to do with the "/".
    77
    88I can substitute:
    9 {{(
     9{{{
    1010        WinActivate("I/M Period End Processing")
    1111;~      WinWaitActive("I/M Period End Processing",5)
    1212        Sleep(1000)     
    13 }})
     13}}}
    1414
    1515This 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.