Are there shortcut keys for the previous and next macro edited? I think there should be there aren't. I am referring to:
Of course I could implement these with Click Found Image actions, but I think this really ought to be built in and coordinated with the command structure. ⌘← and ⌘→ seem the obvious choices. Their current use seems redundant — I can't find any difference between those and ⌘↑ and ⌘↓
@MitchellModel is referring to previous/next history, not previous/next in the macros list. So moving back and forth in the list of recently edited macros.
Use this script by @ccstone, which will open the KM Editor Macro History list, and then the arrow keys will work, as well as typing the characters at the start of the Macro name:
-- Use this script as a wrapper for GUI Scripting statements when you are confident that GUI Scripting is available and enabled or that the user knows how to enable it if necessary
activate application "Keyboard Maestro"
tell application "System Events"
tell process "Keyboard Maestro"
-- previously edited macro:
click button 1 of group 4 of window "Keyboard Maestro Editor"
-- OR ALTERNATIVELY:
-- next edited macro:
click button 2 of group 4 of window "Keyboard Maestro Editor"
end tell
end tell
tell application "System Events"
tell process "Keyboard Maestro"
perform action "AXPress" of button 1 of group 5 of window "Keyboard Maestro Editor"
end tell
end tell