Page 1 of 1

read write Logtype problem?

Posted: February 13th, 2008, 2:45 am
by mads
I cant figure out to red write the renderQuee logtype
I have one renderItem and I use this code

app.project.renderQueue.item(1).outputModules[1].logType = LogType.ERRORS_AND_PER_FRAME_INFO


but It doesnt work? is it a bug?

-mads

Re: read write Logtype problem?

Posted: February 13th, 2008, 9:12 am
by Dan Ebberts
Error in the scripting guide. It should look like this:

app.project.renderQueue.item(1).logType = LogType.ERRORS_AND_PER_FRAME_INFO;

Dan