I'm using WaitForString command to pause my script until the desired text appears on screen. However I notice that the screen stops "printing" as soon as that happens. I'd rather wait until the whole screen finishes refreshing.
I suspect that instead of WaitForString("text"), I could use WaitForCursor; when the screen is complete, I can use Get("text").
However, I cannot find any documentation that explains the WaitForCursor command. How would I use it in this case?