Anyway to shortcut launch BTT Configuration?

Launching or activating BTT itself has some significant delay when automated inside btt, so I'm trying to launch Configuration instead, but I can't seem to automate it using applescript

What I'm trying to do is automate the export process from anywhere

launch btt config --this I haven't figured out properly
automate entire exporting using applescript clicking buttons and keystrokes
btt types the final name of the export, and return key

Just to clarify: BTT is just one app, the configuration is not separate. So it will take the same amount of time to open.

You can open it via Apple Script like this:

tell application "BetterTouchTool"

    trigger_action "{\"BTTPredefinedActionType\":105}"

end tell
1 Like