Search found 1 match
- May 6th, 2011, 9:42 pm
- Forum: Scripts Discussion
- Topic: How do you create batch export script?
- Replies: 0
- Views: 6324
How do you create batch export script?
Hi :D ! I recently wrote a script below to export some Comps which I select in the project window. function mpgExport() { var sel = app.project.selection; if (sel.length == 0) { alert("Select Compositions in the Project Window."); } for (i = 0; i < sel.length; i++) { if (sel[i] instanceof ...