Hi,
I want to create a RenderJob by script and give the Job a Name.
This works:
- Code: Select all
project.SetRenderSettings({"TargetDir": ...... })
jobID = project.AddRenderJob()
I can find the object by the new Id of the job.
Now I can get the name of the Job (given by Resolve):
- Code: Select all
print (JobObject['RenderJobName']) --> e.g. "Job 42"
I can change this name:
- Code: Select all
JobObject['RenderJobName'] = 'marvin'
And - "yes" the name will change in the object:
- Code: Select all
print (JobObject['RenderJobName']) --> e.g. "marvin"
But it will to be changed in the UI and when I restart Resolve and get the JobObject again, the name will be "Job 42" again.
How can I change the name??
Thanks for help!!
Ciao, Stefan.