select track relative to session box but outside of session box
Hi,
Is there a way to select a track that is relative to the session box, but also is outside of the session box? So if my session box is on tracks 9-16, is there custom coding to highlight track 17 using the ‘relative to session box logic?
Something like this maybe?
self.set_highlighted_track(self.get_sessbox_track_offset()+9)
This doesn’t work obviously:)
Does anybody know more?
” is there custom coding to highlight track 17 using the ‘relative to session box logic?
Something like this maybe?
self.set_highlighted_track(self.get_sessbox_track_offset()+9)”
I think you’re correct, but you could also do it using the following together:
Track offset: self.get_sessbox_track_offset()
Session box width: self.get_sessbox_width()
Adding these together would give you the last track of the session box like so:
self.set_highlighted_track(self.get_sessbox_track_offset() + self.get_sessbox_width())
Sign up
User registration is currently not allowed.