how to edit playback legends?
Posted: 15 Sep 2021, 15:10
by icke_siegen
For a special idea from the facebook group I'd need to set playback legends via Web API. Is this possible, and if so, how?
I guess it is something with SetSourceHandle, PendingLegend, and SetLegend - but I fail to make this work. Thanks in advance for a helping hand.
Sebastian
Re: how to edit playback legends?
Posted: 16 Sep 2021, 16:08
by icke_siegen
Answering my own question by quoting Peter Budd (we were discussing this elsewhere - I tried it and it works):
You can’t set the legend in the way you were trying to set it without the titan ID or user number. You will effectively need to set it the same way you do in the UI. First you must select a handle, then choose a legend, then set it:
Code: Select all
http://localhost:4430/titan/script/2/Handles/SetSourceHandleFromHandle?handle_titanId=1822
http://localhost:4430/titan/script/2/ActionScript/SetProperty/String?id=Handles.PendingLegend&value=LEGEND%20TEST
http://localhost:4430/titan/script/2/Handles/SetLegendThanks Pete!!!
Re: how to edit playback legends?
Posted: 17 Sep 2021, 14:57
by icke_siegen