Reaction: can’t get clip end_marker to change

1.10K viewsGeneral
0

Hi,
Trying to see if I can get the clip end_marker to change when I press a button, so have a Reaction which does this:
1. Listener: if button x is pressed.
2. Reaction: self.song().tracks[0].clip_slots[0].clip.end_marker = 8.0

So was hoping when a particular button is pressed it would change the end_marker for the clip to 8 beats after the start_maker, but nothing happens.
There is a clip present on the location, also tried with by selecting a clip:
self.song().view.highlighted_clip_slot.clip.end_marker= 8.0
Still nothing.
Can get the clip to fire with this:
self.song().tracks[0].clip_slots[0].fire()

So maybe the end_marker (and start_marker) functionality just doesn’t work with remotify ?

admin Changed status to publish
Attached Files:
0

End Marker works for me BUT only when clip loop is turned on.
No idea why, I don’t think it’s a bug in our scripts though, rather an issue directly in Live’s own API.

I tested with both of these:
self.song().tracks[0].clip_slots[0].clip.end_marker = 8.0
self.song().view.highlighted_clip_slot.clip.end_marker = 8.0
And both work with clip loop on

admin Changed status to publish
Attached Files:
You are viewing 1 out of 4 answers, click here to view all answers.