Home AMX Forum NetLinx Studio
Options

Array of Timelines?

Greetings,

Does anyone know of a way of creating an array of timelines? I would like to for the sake using things like GET_LAST in an event related to multiple timelines.

Thanks.

Comments

  • alexanboalexanbo Junior Member
    Not sure how to create an array, but what I did in a similar situation was stack the timeline events and use sequential timeline ids. Then within the event underneath the stacked timelines I referenced the Timeline.ID to tell which timeline was firing the event.

    TIMELINE_EVENT[tlSUBZONE_1]
    TIMELINE_EVENT[tlSUBZONE_2]
    TIMELINE_EVENT[tlSUBZONE_3]
    TIMELINE_EVENT[tlSUBZONE_4]
    {
    Update(TIMELINE.ID)
    }
  • Joe HebertJoe Hebert Junior Member
    Does anyone know of a way of creating an array of timelines? I would like to for the sake using things like GET_LAST in an event related to multiple timelines.
    No can do. Check out tech note 657. Stacking like alexanbo suggested is the only way to go right now.
Sign In or Register to comment.