Bug in reactions: Clip Slot (Solved, no bug)
Hi! I’ve only been using CSS for a day so no idea if it’s me or a bug, but I can’t get the Clip Slot functions to work on Live 11.2.11 through the dropdowns.
The code that gets outputted results in a NoneType log and starts with self.song().tracks[0].clip_slots[0] ….
While I think it should be self.song().view.highlighted_clip_slot …
For example; only the top code works, while the program itself is giving the bottom code:
self.song().view.highlighted_clip_slot.is_playing == True (Working)
self.song().tracks[0].clip_slots[0].is_playing == True (Not working, but system output)
Hi,
This one refers to the currently highlighted clip slot
self.song().view.highlighted_clip_slot.is_playing
Where as this one refers to the clip slot at position 0, 0 (left, top)
self.song().tracks[0].clip_slots[0].is_playing
Changing tracks[0] to i.e. tracks[1], will change it to track 2 in your session
And changing clip_slots[0] to clip_slots[1] will change to scene 2.
Sign up
User registration is currently not allowed.