Post #2678: : post_02682
π·οΈ Tags
macro pie-menu scripting intermediate solved
βοΈ Related PME Features
- Macro Editor
- Pie Menu Editor
- Python Scripting
π¬ Content
RaphaelBarros:
But what if I wanted to have a button that calls a Macro Operator from PME or something that isnβt a Blender default operator.
You can use pme.exec operator with open_menu() function:
sub = L.row(align=True); sub.enabled = False; operator(sub, "pme.exec", cmd="open_menu('Macro Operator Name')", text=slot, icon=icon, icon_value=icon_value)
β€οΈ 2 likes