So I’m trying to turn the PassGroup option box into a list box that contains all of the pass groups in my modo scene. I’ve modified the ModoSubmission.py to change it into a list box. I’m sending the variables to Deadline with this line of code:
launchDeadline = [‘C:\Program Files\Thinkbox\Deadline6\bin\deadlinecommandbg.exe’, ‘-executescript’, script, sceneFileFull, frameRange, outPath, fileName, fileFormat, modoVersion, projectCode, projectPhase, frameSize, fileType, passGroupNames]
passGroupNames is a list and when it gets passed into the PassBox is creates a list of every letter in that list. So it comes out like so:
t
e
s
t
1
t
e
s
t
2
This is the line of code i’m using in the ModoSubmission.py:
scriptDialog.SetValue( “PassBox”, args[10] )
I know this is kind of scatter shot since it’s the end of the day. If you guys need more info to help me out I can pass along my code files.
Thanks!