RQitem.status change
  • Is it possible to change the RenderQueue status of an item from Queued to Unqueued in Extendscript? I see how one would get the status but I don't see a method for changing it?
  • For anyone in the future, it would appear that you would set it with 

     app.project.renderQueue.item(index).status


    But that is read-only. Instead there is also the not particularly helpfully named:


     app.project.renderQueue.item(index).render


    Which is read/write so you can just set it to false and it will unqueue the item


     myItem = app.project.renderQueue.item(index);

     if (myItem.render == true) {

     myItem.render = false

    }

This discussion has been closed.
All Discussions