Search found 4 matches

by pxlgirl
September 28th, 2017, 6:25 pm
Forum: Scripts Discussion
Topic: Edit Original, a script to collect projects
Replies: 0
Views: 7674

Edit Original, a script to collect projects

Hello All,

I'd like to try creating a script that can select multiple movies in the project window, find the projects containing the comps that created them, and gather all of those projects into one project. Any insight you have into this process would be greatly appreciated!!
by pxlgirl
October 1st, 2007, 3:13 pm
Forum: Scripts Discussion
Topic: Deleting Files from Disk via scripting
Replies: 5
Views: 10758

Found it! The correct code for deleting the files needs to read: var okaytoDelete = confirm ("Would you also like to empty the contents of your destination folder?"); if (okaytoDelete) { var filestoDelete = HDDestination.getFiles(); for (k = filestoDelete.length; k >= 0; --k) { //run throu...
by pxlgirl
October 1st, 2007, 2:58 pm
Forum: Scripts Discussion
Topic: Deleting Files from Disk via scripting
Replies: 5
Views: 10758

Thanks! I have looked in the javascript guide but am still lost as to exactly how to call the function. At first I thought it would be easier to just delete the whole folder and then recreate it, but the guide says you can only delete empty folders...so I guess I have to call the remove() function f...
by pxlgirl
September 27th, 2007, 9:01 pm
Forum: Scripts Discussion
Topic: Deleting Files from Disk via scripting
Replies: 5
Views: 10758

Deleting Files from Disk via scripting

Hi, I have written a script that automates render tasks on a specific job. It prompts the user to pick a render destination, input a version number, changes the comp name accordingly, queues the item and applies render settings and output module templates. Thank you all for the knowledge on this sit...