Hi, I know that is brand new, but is there a method to fold unfold folder tracks by name instead of selection then Command F?
That would be very helpful to organise display in very large sessions.
thanks in advance
- Christian Scheuer @chrscheuer2020-04-04 09:55:43.185Z
Hi Olaf!
Great idea - you can do it with this script:
/** * @param {AxPtTrackHeader} track Track to toggle */ function toggleFolderOpen(track) { track.childrenByRole("AXDisclosureTriangle").whoseTitle.contains('Folder').first.elementClick(); } toggleFolderOpen(sf.ui.proTools.trackGetByName({ name: 'DX' }).track);
- Oolafnoise @olafnoise
Works great!!
a good improvement to the script would be to be able to select the height of the track when unfolding (mini, small etc ...)
thanks again - In reply tochrscheuer⬆:BBrian Sloss @Bsloss
If the folder tracks are reduced to their minimum height, this macro does not work. It only seems to work if they are large enough to where the little folder icon is displayed. Any solutions around this issue? Thank you in advance.
-Brian
Christian Scheuer @chrscheuer2020-05-26 15:39:46.253Z
Hi Brian - I suppose a workaround for that situation could be to select the folder track via the
trackSelect
action and then simulate ashift+f
keyboard event - but it wouldn't work unless the folder track got selected first.. So not sure if that workaround would be enough in your case.
- OIn reply toolafnoise⬆:olafnoise @olafnoise
Hi Christian
wow!! thanks for the very fast reply!!!John Costello @John_Costello
Heya Christian!
I am trying to get this script to work for me but I don't know what to change inside the script in order to have it select a track by name and then toggle the folder open/close in the mix window. As always thanks for your help!
John Costello @John_Costello
Christian Scheuer @chrscheuer2020-11-21 11:13:51.039Z
Hi John - please open a new question for this as this one is already marked closed/solved. It's better to open a new question and link to the old one.