Keyboard Maestro to Soundflow conversion tool
Is this possible ?
- Christian Scheuer @chrscheuer2020-09-03 18:36:24.353Z
Hey Chris,
Unfortunately, I don't think this is feasible at this point, since we primarily use UI Automation in SoundFlow and precise element-based waits, whereas people with KM typically automate keystrokes and use AppleScripts.
So any automatic conversion would be far inferior to rewriting the macros/scripts in SF.Christian Scheuer @chrscheuer2020-09-03 18:37:30.073Z
What you can do as a migration tool is to have SoundFlow macros trigger KM macros (and vice versa).
Check here for more:
https://forum.soundflow.org/-1625#post-8
- In reply toChristopher_Barnett⬆:Christopher Barnett @Christopher_Barnett
Thank you,
Im looking at system stuff, this to be precise, just wondering if there was syntax converter
tell application "System Preferences"
reveal anchor "keyboardTab" of pane "com.apple.preference.keyboard"
end tell
tell application "System Events" to tell process "System Preferences"
click checkbox 1 of tab group 1 of window 1
end tell
quit application "System Preferences"Christopher Barnett @Christopher_Barnett
OK looking
What do you use for UI browseing?
PFiddlesoft UI Browser ? or another ?
Is soundflow fundamentaly OSX GUI Scripting ?
trying to get into Sytem Preferences etc, starting here:
- Progress