If I create a trigger consisting of many actions:
- if there any simple way to run the trigger to see if all is working correctly.
- are there any BTT actions specifically meant to debug a trigger (ie series of actions) ?
- thank you
If I create a trigger consisting of many actions:
Hi @lucas222 ,
There's a "Play" button at the bottom of the Actions configuration panel that will run the entire Action sequence for a Trigger.
When a Trigger has multiple assigned Actions and need to run just one of those Actions, you can right click on the Action you want to run and select one of the options:
osascript -e 'tell application "BetterTouchTool" to execute_assigned_actions_for_trigger "PASTE UUID OF ACTION HERE"'
osascript -e
(add -l JavaScript
if you selected the JS code option). Note: Make sure you handle line breaks appropriately for this option.thank you for a clear, extensive and all around brilliant answer !