Can I determine a Macro UUID from an Action UID?

You would have to search for it.

My AppleScript foo is weak, but this works:

tell application "Keyboard Maestro"
	repeat with m in macros
		try
			action id "12345" of m
			set found to id of m
		end try
	end repeat
	found
end tell
2 Likes