Graphics

 View Only
  • 1.  Update CueID List in scripting via template linked text object.

    Posted 01-24-2020 06:47

    Not sure if this is possible or not.

    I have a trigger scene built that contains a script to cue 13+ scenes with in a group to be played out in sync across various LED.

    Is it possible to update the scripted cue IDs via a text object.

    Im using rosstalk.SendMessage ("CUE 0001") to cue scenes.

     

    Would save a lot of time if this is possible.

     



  • 2.  RE: Update CueID List in scripting via template linked text object.

    Posted 01-24-2020 13:38

    You should just be able to retrieve the text object value and put it into the rosstalk message.

     

    I'm assuming your script is more than just that one line though, because you dont show how you initialize the rosstalk variable.  You also don't mention which event your script is on, so that can change how you would need to write this..  So based on those assumptions, it would be something like this:

     

    dim textobj as xpTextObject

    Self.GetObjectByName("TheTextObjectName", textobj)

    rosstalk.SendMessage("CUE " & textobj.text)

     


    #XPression