You are not logged in.
Pages: 1
Just wondering if there is a way to force break pascal in renamer?
Offline
Hi, see there >> http://www.den4b.com/wiki/ReNamer:Pasca … uick_guide
Break; //Ends the current subroutine / loop.
Continue; //Skip the current subroutine / loop for the current file.
Exit ; //Me think this can be used like break too for our simple scripts, or can also terminate the whole script.
if <Condition> then xxxxx;
But I don't know for sure when to use what, would be nice if den4b can bring in some light ;-)
Read the *WIKI* for HELP + MANUAL + Tips&Tricks.
If ReNamer had helped you, please *DONATE* to Denis or buy a PRO license. (Read *Lite vs Pro*)
Offline
Break; //Ends the current subroutine / loop.
Continue; //Skip the current subroutine / loop for the current file.
Exit ; //Me think this can be used like break too for our simple scripts, or can also terminate the whole script.
I would describe it as:
Break - Ends the current loop.
Continue - Skips the current iteration of a loop.
Exit - Terminates the current routine (function or procedure).
Offline
Hey.. im talking about once its already running. I have accidentally created an infinite loop and with a pop up message and I cant get it to stop. Force Quitting will mean ill lose my progress.
Offline
Theres no way to do this?
Offline
I'm talking about once its already running. I have accidentally created an infinite loop and with a pop up message and I cant get it to stop. Force Quitting will mean ill lose my progress.
Unfortunately, at this moment, there is no way around it. I'll put a feature request for this, but it will be a low priority.
In the meantime, the only thing I can suggest is saving the preset more often, i.e. between the edits.
Offline
Pages: 1