-
Best Practice Advice: Storing Data for Later Use with Scripts
I’m writing a script that will usually be run 3-4 times on a given project, and needs to remember certain variables between executions (for example, a path to a text file that the user specifies on first run).
Where do you guys like to store this information? I can think of a number of options, but not sure which is best. Is there some kind of app.project.notes object or something like that where you can store arbitrary data/text? Do you usually write this kind of thing out to a temporary text file? (user would have to enable read/write preference for scripts). If I need to I can even make a text object on a timeline and store things in sourceText, just seems a bit messy.
All I need right now is plain text, don’t need to store true objects.
Thanks!