Is there a way to do this moving all the way through the project? For instance, I have a mac workstation and a pc farm. Because certain fonts don’t work on the farm, I need to outline all of the text in each composition of my current project.
I am thinking something like this
for(i=1;i<number of comps; i++){
for(o=1;o<number of layers in comp; o++){
if (o is instanceOf TextLayer){
var myCommandId = app.findMenuCommandId("Create Masks from Text");
app.executeCommand(myCommandId);
}
}