Changes between Initial Version and Version 1 of Ticket #954


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

Or, you could be calling the function wrong. Should have been posted in the support forum first. It's a very simple and obvious error on your part.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #954

    • Property Status changed from new to closed
    • Property Resolution changed from to No Bug
  • Ticket #954 – Description

    initial v1  
    1 {{
     1{{(
    22WinActivate("I/M Period End Processing")
    33WinWaitActive("I/M Period End Processing",5)
    4 }}
     4}})
    55
    66 Autoit 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.