Feature request: floating Macro panel

Hi! Would it be possible to add an option to make Macro panel floating? Even a python-only way to toggle it would do. While working on some scripts, I switch between windows/“spaces” and have to manually drag the panel along, which gets annoying after a while.

2 Likes

You can summon the Macro Panel to the foreground with Command-Option-M. A Python solution would be to run the following script:

from AppKit import NSApp, NSFloatingWindowLevel
NSApp.keyWindow().setLevel_(NSFloatingWindowLevel)

To make the window normal again, run:

from AppKit import NSApp, NSNormalWindowLevel
NSApp.keyWindow().setLevel_(NSNormalWindowLevel)
2 Likes

Thank you! Put that into a Floating Macro Panel script.

3 Likes