Reaction: can’t get clip end_marker to change
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 ?
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
Sign up
User registration is currently not allowed.