Hi,
Details of my script:
Part 1: open a new table so that user fills values
Part 2: wait for the user to fill values and take the response to proceed
Part 3: proceed with the remaining script
I am struggling in part 2 because if I use Modal windows, I cannot fill the values in the table.
I would like to generate a new window which will wait on user input OK" to proceed but should not interrupt the user while filling data in the table.
I have tried
Q = New Window("Please click OK when done", <<Modal, Button Box("OK"), Button Box("Cancel"));
If(Arg(Q[1], 1) == 1, *rest of the script*, Wait(5)).
But this is highly ineffective as the Modal interrupts and prevents from any other user input.
I tried without Modal, but the If clause didn't seem to work.
Please suggest a better way (if any) to model this instead of a *wait(n)* statement.
Appreciate your help!
Thanks