-
Advice on Managing a Project’s Workflow
I’m designing a custom visual display that I wanted to re-use for multiple projects. Each element is gonna get its source text from a JS file that is linked using an absolute path for the data. It’s basically a HUD to show a bunch of different coordinates and values — and I wanted to have a master-file whose changes would propagate to all future projects of this kind.
So right now, I have an AEPX file so that the File Paths inside the project can be changed. I just have to make an entirely new project each time since the only thing I can change in the XML is the pathing.
Option B is using an AE script called CompCode by rendertom which dumps an entire project into ExtendScript. That gives me way more latitude on what I can edit in terms of a template. However, I’ll still have to re-execute for each JS file in each new project.
The setup I have now uses a Powershell script to Find & Replace the text, as well as make a new copy of the project and put it in a different folder where its own unique batch of JS files are stored. Still, I’m just copying the master file a bunch of times.
I’m wondering if it’s possible to do this thing another way — I’m sorta out of my depth on this.