select track relative to session box but outside of session box

1.82K viewsGeneral
0

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?

admin Changed status to publish
Attached Files:
0

” 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())

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