Does anyone know what the command is to change the trigtype / trigtime of a cue through the command line? The usual suspects to try don't seem to work.

Setting TrigType from Macro
BECOME PART OF THE COMMUNITY - Sign up here
-
-
Set Cue 1 "TrigType" "Go"
Set Cue 1 "TrigType" "Sound"
Set Cue 1 "TrigTime" "4"
-
Thanks. Dang “TrigType” was case sensitive. Also can’t do a blind command it seems with this. Ideally want to do
Set Cue “TrigTime” “Go”
-
For safety, insert the "Property" keyword at the front of your string of property name/value pairs. In your example, it's looking for a cue called "TrigType". But if you instead do:
- Set Cue Property "TrigType" "Go" ("Property2Name" "Property2Value" "Property3Name" ...)
...then it will work.