OPEN THE RECENTLY RUN MACRO BUTTON’S MENU
This macro opens the pop-up button and makes its menu available for type-select.
-Chris
--------------------------------------------------------------------------------
# Auth: Christopher Stone
# dCre: 2016/08/11 22:43
# dMod: 2016/08/11 23:33
# Appl: System Events & Keyboard Maestro Editor
# Task: Open Recently Run Macro Button's Menu
# Libs: None
# Osax: None
# Tags: @Applescript, @Script, @System_Events, @Keyboard_Maestro, @Editor, @Open, @Recently, @Run, @Menu
--------------------------------------------------------------------------------
tell application "System Events"
tell application process "Keyboard Maestro"
set frontmost to true
tell window "Keyboard Maestro Editor"
tell group 3
tell button 1
perform action "AXShowMenu" -- Open Recently Run Macros Menu
end tell
end tell
end tell
end tell
end tell
--------------------------------------------------------------------------------