I want to write a script to do the following:
1. take an image,
2. stop the script
3. manually analyze the image using the AA toolbar (sizing,draw a box, statistics, etc.)
4. resume with the script
Can I stop and resume a script?
Thanks
How to stop and continue a script
Re: How to stop and continue a script
Yes, just put a long pause, for example:
Pause(9999)
where you want to stop. Then click the button "Run" to resume. Try for example:
Pause(9999)
where you want to stop. Then click the button "Run" to resume. Try for example:
Code: Select all
For i = 1 to 8
Print i, i*i
Pause(9999)
Next i