January 6, 200224 yr is there any way to loop a script to run every 5 minutes or so...automatically... i can't seem to get the right scripting thanks
January 6, 200224 yr The usual technique is: code: Loop # Execute the scheduled operations as a sub-script Perform Script [MyScheduledScript] Pause [00:05:00] Exit Loop If ["Some exit criterion goes here"] End Loop The Exit Loop step gives you a way to bail out if necessary. For example, you can have it check the status of a checkbox field.
Create an account or sign in to comment