We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I know this have been asked many times but I can't find a real solution.
I have a bunch a scripts. I need to run each of them certain amount of time (run, wait, quit, run another..).
How can I do that? If not doing something in processing can I achieve that kind of scheduling using some app? OS X Automator maybe?
Answers
Could you provide more information on what you are trying to accomplish?
By scripts, do you mean Processing sketches? (Or are you just asking about bash or python shell scripts?)
For example, are you trying to run a gallery / display that cycles through a series of different sketches? If so, will they all be Processing, or will you be mixing processing with other things (video, still images, other software)?
If I'm guessing right, there are some forum posts on using AppleScript and/or Automator to run sketches (example) -- you could use scripting to launch and close a list.
There is also a long history of discussion on different approaches to combining multiple sketches using a master sketch. But with a long list of very different sketches this can sometimes be a lot of work and a real pain.
Hi! I just have a few sketches that I need to run in sequence in a loop. (Some minutes one sketch, then another other few minutes, then the other --repeat)
Every sketch is image/video intensive (and have big chunks of bad formatted, messy, code) so the idea to run them from another sketch is counter-productive. I can even create apps from them and just run them as normal apps, but I can't find a way --Can I put a timer for each app in Automator? I just see a schedule (like in a calendar) feature but no looping a simple playlist of apps.
I know this should be easy but I can't find the way. Any hint would be greatly appreciated!
If what you want is a short script that launches a list of Processing sketches in order, there are many ways to do that in many different scripting languages (bash shell script, AppleScript, Automator, python, etc.). The master script can also either be calling exported Processing apps or it can be using processing-java to run the sketch directly. You can also have the sketches / apps exit themselves, or you can try to shut them down from your script.
Here is one really simple way:
So, step by step:
Make your Processing sketches self-timing by adding a simple exit() timer to each sketch, e.g.
Export each sketch as an app into a directory:
Write a python script
sketchlist.py
in that directory which will use subprocess to launch each app using mac open -WMake the script executable:
Run the script:
That's it. Then, if you want a fancier script, just add features -- for example, one that automatically runs any apps it finds in the directory, and keeps it looping through them forever until you quit the script with CTRL-C:
You can also call scripts from scripts -- for example, you can launch this python script from Automator, or make it a double-clickable executable.
The one downside of loading individual sketches of course is load times....
Edit: I should also mention that, while I did the above example in python, I believe you can instead make a launcher-sketch in Processing which opens new sketches using launch(). Note that I believe the same design approach applies -- your sketches need to close themselves. Also, because launch is not blocking (because Processing will not wait for each sketch to close, or even know when that happens) you will need to add timing to both your sketches and the master sketch, which could get a bit tricky. I haven't actually tried to do this.
See also: http://happycoding.io/examples/java/processing-in-java/processing-showcase