Currently reveal_element_in_ui which although able to go to the trigger, it can only do if it happen to to exist in the displayed Trigger List. Is it possible to add a function or api to directly go to the specific trigger everywhere?
Currently,
"2D662806-2FF2-43CB-8718-88CC70B0DDE5" is the uuid for the trigger.
tell application "BetterTouchTool" to reveal_element_in_ui "2D662806-2FF2-43CB-8718-88CC70B0DDE5"
- Add Applescript support in select_trigger
tell application "BetterTouchTool" to select_trigger "2D662806-2FF2-43CB-8718-88CC70B0DDE5"
reveal_element_in_ui should reveal the trigger regardless of where it is located. Do you have an example where it doesn't work?
For example, I copy UUID of the trigger that belong to Edge app, and invoke the applescript
tell application "BetterTouchTool" to reveal_element_in_ui "87CDA654-D421-49CF-A94E-F80775A73BA3"
if the Trigger List belong to Edge app, it will select the trigger, however if I switch to "For All Apps" and invoke the same applescript, it will fail to go the specific trigger (the one reside on Edge App)
ah you are right, I’ll fix it for app specific triggers!
Hi Andreas,
noted. thank for fixing that.