-
jsx script to clear the render queue?
I’m using the following:
app.project.renderQueue.item(1).remove()
But this remove only the item 1 from the render queue, if there are more than 1 item in the render queue I can’t remove them from a script.
I’ve tried something like:
app.project.renderQueue.item().remove()
But nothing, is there any expression like * to remove them all?
If not, I guess the only way will be enumerate the items in the render queue and then remove 1 by 1.
Ideas?