RenderQueue Comment field

Find out why the . goes before the /

Moderator: Paul Tuersley

Post Reply
User avatar
lloydalvarez
Enhancement master
Posts: 460
Joined: June 17th, 2004, 9:27 am
Location: New York City, NY
Contact:

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
User avatar
redefinery
Posts: 112
Joined: April 1st, 2005, 8:16 pm
Location: CA
Contact:

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
Post Reply