Page 1 of 1

How to edit a Playbacks and Cuelists proberties via a Macro

Posted: 07 Mar 2019, 14:28
by mad-leo-kitten
Hey,

still with the larger Macro project ^^

Does anyone have an Idea how to edit proberties like "Fade In", "Link", "Fader Mode", "Fire First Cue", "Speed Source", "Size Source", etc.?

Thanx previeously :wink:

Greets, Flo :mrgreen:

Re: How to edit a Playbacks and Cuelists proberties via a Macro

Posted: 07 Mar 2019, 15:26
by Gregory
Have a look at this forum post: How to set fade in time of a cue in a cuelist

You can find the properties in the Web API documentation.

Re: How to edit a Playbacks and Cuelists proberties via a Macro

Posted: 12 Mar 2019, 07:58
by mad-leo-kitten
Couldn't find any clues to that on the API site. I'm looking for a way to edit the fader mode, fire first cue, assign masters etc. :)

you have any clue where to start ^^?

Re: How to edit a Playbacks and Cuelists proberties via a Macro

Posted: 27 Mar 2019, 00:54
by Gregory
Set the Fader Mode of a Cue:

Code: Select all

ActionScript.SetProperty("Playbacks.Editor.SelectedPlayback",handle:"Location=Playbacks,1,1")
ActionScript.SetProperty.Enum("Playbacks.Editor.Times.CueMode", "Mode2")

Enable Fire First Cue:

Code: Select all

ActionScript.SetProperty("Playbacks.EditHandle", handle:"Location=Playbacks,1,2")
ActionScript.SetProperty.Boolean("Playbacks.OptionsEditor.SingleSelection.GoOnFire", true)

Set Speed Source:

Code: Select all

ActionScript.SetProperty("Playbacks.EditHandle", handle:"Location=Playbacks,1,2")
ActionScript.SetProperty.Enum("Playbacks.OptionsEditor.SingleSelection.SpeedSource", "Rate1")

Set Size Source:

Code: Select all

ActionScript.SetProperty("Playbacks.EditHandle", handle:"Location=Playbacks,1,2")
ActionScript.SetProperty.Enum("Playbacks.OptionsEditor.SingleSelection.SizeSource", "Size2")

Re: How to edit a Playbacks and Cuelists proberties via a Macro

Posted: 03 Apr 2019, 09:40
by mad-leo-kitten
Thanks a lot :D

thats perfect ^^ :) sorry that i couldn't fint it my self and needed to bather x)

biiiig Thanks :D

Greets, Flo :mrgreen: