Post #4256: You can but you need to understand some python.
📋 Metadata
- Author: Motiomancer
- Date: 2022-03-22 22:15:46
- Type:
answer - Quality Score: 8/10
- Reply to: post_04254
- Replies (2): post_04257, post_04258
🏷️ Tags
macro pie-menu hotkeys advanced solved
⚙️ Related PME Features
- Pie Menu Editor
- Macro Editor
- Python Scripting
- Hotkey Configuration
💬 Content
You can but you need to understand some python.
PME has a U. function to save things, if you put for example U.anything = bpy.code , U.anything is created and its given the “value” bpy.code
Knowing that, we can use it to save the command on the menus and call it with a macro.
Example (Select an object to use it) :
memCommand.json (1.2 KB)

I created a pie menu that is called while holding “5” where the command for resize and move also writes the value of “U.mem”
Then created a macro that is called with pressing “5” and executes U.mem with exec(U.mem)
❤️ 2 likes