Change output module selected items
Posted: November 9th, 2005, 11:14 am
I've got a script which changes the output modules of all items in the render queue, but can you make it only change selected items?
Cheers,
d.
Cheers,
d.
extending the Adobe ecosystem
https://www.aenhancers.com/
Code: Select all
var rq=app.project.renderQueue
for(i=1;i<=rq.items.length;i++){
if(items[i].status==RQItemStatus.QUEUED){
//...apply function....
}
}