If the name of a Named Trigger is changed, the name doesn't get updated in the Toplevel Trigger which results in not working of the Toplevel Trigger.
How to traceback in which Toplevel Trigger a Named Trigger is used?
If the name of a Named Trigger is changed, the name doesn't get updated in the Toplevel Trigger which results in not working of the Toplevel Trigger.
How to traceback in which Toplevel Trigger a Named Trigger is used?
one way would be to export the preset, open it in a text editor and search for the old name
ok, how to find the "BTTTriggerParentUUID" value as searching for it via
doesn't seem to work
You can use such apple script:
tell application "BetterTouchTool" to reveal_element_in_ui "39CDAF30-98BB-4F54-B87F-273B6081149E" end tell
Ah for reference, an easier way might be to use the EVERYTHING section in "Recently Used", that lists all triggers in a list and allows to search that list:
do you have an alternative for tell application "BetterTouchTool" to reveal_element_in_ui "39CDAF30-98BB-4F54-B87F-273B6081149E" end tell that pasts the uuid from clipboard in the script?
I tried:
tell application "BetterTouchTool"
trigger_named (the clipboard)
end tell
but it returns missing value
tell application "BetterTouchTool"
set uuid to get_clipboard_content format "NSPasteboardTypeString"
reveal_element_in_ui uuid
end tell