-
In extendscript,is the RenderQueueItem logType attribute still supposed to work?
According to the After Effects CS6 scripting guide, you can change a render queue item log type by using the logType attribute.
A LogType enumerated value; (read/write). One of:
LogType.ERRORS_ONLY
LogType.ERRORS_AND_SETTINGS
LogType.ERRORS_AND_PER_FRAME_INFOSo, by using such code:
app.project.renderQueue.items.add(compositionToRender).logType = LogType.ERRORS_AND_PER_FRAME_INFOThe log type should be changed. But when I am trying in both CC 2014 and CC 2015 it doesn’t work. I am able to log LogType.ERRORS_AND_PER_FRAME_INFO which exists, but it seems like it cannot be affected to the logType property. Am I doing this wrong?
app.project.renderQueue.items.add(compositionToRender).logType = LogType.ERRORS_AND_PER_FRAME_INFO