Toggle the ALL Group?
By william wittman @william_wittman
Is there a simple way to toggle the ALL group in and off?
I’m in Command keyboard focus so if this requires going to Groups keyboard focus i’d like to incorporate a way to do it, toggle the ALL group, and then return to Command focus.
- Raphael Sepulveda @raphaelsepulveda2022-09-11 22:35:21.733Z
@william_wittman, this should do:
function toggleAllGroup() { sf.ui.proTools.mainWindow.groupListView .children.whoseRole.is("AXColumn").whoseTitle.is("Name ").first .children.whoseRole.is("AXRow").first .children.whoseRole.is("AXCell") .allItems[1].elementClick(); } toggleAllGroup();
- In reply towilliam_wittman⬆:william wittman @william_wittman
Brilliant.
Thanks!