Page 1 of 1

RenderQueue Comment field

Posted: March 13th, 2008, 3:08 pm
by lloydalvarez
A little known feature about the render queue is it's comment field. You can open it by right-clickin in the header aread and choosing it from the Columns menu. I am trying to read and write to that field in scripting and I can write and retrieve info within scripting using this:

Code: Select all

app.project.renderQueue.item(1).comment = "hello";
alert(app.project.renderQueue.item(1).comment);
but i doesnt update in the GUI. Anyone know how to get it to update the GUI?

-Lloyd

Re: RenderQueue Comment field

Posted: March 13th, 2008, 10:51 pm
by redefinery
lloydalvarez wrote:

Code: Select all

app.project.renderQueue.item(1).comment = "hello";
alert(app.project.renderQueue.item(1).comment);
but i doesnt update in the GUI. Anyone know how to get it to update the GUI?
-Lloyd
hey lloyd,

a RenderQueueItem object doesn't have a comment attribute, so naturally it won't update the GUI. :-)

please submit a feature request if you need this capability.

thanks,
:jeff