|
pause
|
|
|
|
| ID
|
|
|
| An optional positive integer specifying the ID of the thread to be paused. If this parameter is omitted, the main thread will be paused. If ID=CUR_THREAD, the script containing the pause function will be stopped. See thread for more details.
|
|
|
|
|
| This set of statements continuously grabs an image and displays its histogram making a pause at each cycle. Use the Execute command to continue.
|
|
|
| grabIm(1)
|
| showHistogram(TRUE,TRUE)
|
| Do
|
| grabIm(1)
|
| pause()
|
| Loop
|
|
|