Announcement

Collapse
No announcement yet.

While condition...

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • While condition...

    Hi All,

    Is it possible to use the "while.condition" while File.Run is running?

    Ex.

    File.Run x

    while File.Run x do
    do something
    end

    Thanks

  • #2
    You can, but not in the way you described. Instead, use a timer, and every second or so check the running processes or application windows to see if the program has finished. Once you can no longer find the process or window, end the timer and/or jump to the next screen.

    Ulrich

    Comment


    • #3
      Excellent! Works! You are the best!

      Comment

      Working...
      X