Pie Menu Editor 1.18.6

Try this:

f = open("/path/to/my_file.txt", "r"); [L.label(text=line.strip()) for i, line in enumerate(f)]; f.close()
3 Likes

Thanks, here is the fix. Extract the file to scripts/addons/pie_menu_editor folder and restart Blender.

2 Likes

Yes, no plans for dropping 2.7 version support yet.

1 Like

Yeah, it works perfectly
You are just a god man and then that’s it !
Many thanks from me and mostly from my wife she’s so happy :wink:

1 Like

Thank you. Toolbars are normal now.

Is there a way to add the cursor panel from sculpt to a popup dialog?

Adding it with “interactive panel” doesn’t work

image

Thanks

Hello, I’m having trouble importing my exported Keymap and it’s reporting errors, I have feedback in the official, but the feedback they are giving is because I’m using Pie Menu Editor and it has Chinese in it, I was wondering if you could help me see if there’s a better way to fix it.
My feedback address is as follows: https://developer.blender.org/T82292

哈咯,您好,我遇到了麻烦,我在尝导入我导出的 Keymap 的时候遇到了问题,它会报错,我有反馈在官方,但是它们给出的反馈是因为我使用了 Pie Menu Editor 而且里面有中文,我想让您帮忙看一下是不是有什么比较好的解决方法

Strange this command wont work in obj mode :thinking:
image

Is this the up to date documentation for the add on? https://archive.blender.org/wiki/index.php/User:Raa/Addons/Pie_Menu_Editor/#Panel_Group_Editor

I find the add on quite useful but I’m having a hard time finding the way to build the menus the way I’m envisioning them. I imagine if I knew a bit of python it would be much more intuitive…

If any one could direct me to some in depth tutorials with the present interface it would be great.

Thanks in advance for any feedback.

Is 1.18.0 update free or a $12 charge? was any current PME owner charged again when downloading 1.18.0 ?

Free updates after purchase, no extra charge
购买之后是免费更新的,不需要另外收费

2 Likes

I’ve been trying to ad the F9 key as a short cut and it doest seem to work for me I even tried to use the python code for it but I had no luck.

The Info window in the scripting tab doesn’t show any code when F9 is pressed any suggestions?

Oslo I’ve tried your code on your documentation (see just below) and it’s causing Blender 2.901 to crash I’m on a MAC not sure if that makes a difference.

L.box().label(text, icon=icon, icon_value=icon_value)

Thanks for any suggestions that anyone might offer.

when a feature is not available to PME what’s the reason?

Can you setup a sticky key so you can scrub the timeline from anywhere? Hold down the “k” key and move the mouse left and right to change the current frame like Maya. In blender you can alt + mouse wheel up and down. Also “f” and mouse left/right changes brush size in sculpting so the underlining code is there.

Thank you for your work on a great addon.

For people having problems with this in 2.91

go to: AppData\Roaming\Blender Foundation\Blender\2.91\scripts\addons\pie_menu_editor\ed_popup.py

And change every instance of:

lh.row()
for
lh.row(align=False)

There should be 4 instances, the first one its just a comment so it doesn’t really matter but the other 3 are under those specific menus.

For some reason this seems to do the trick for me, don’t ask why.

2 Likes

Thanks @Motiomancer,
Will be fixed in the next version.

1 Like

You can use modal operator for this. Here is an example. Press and hold K key and move the mouse.

5 Likes

Try to use Screen keymap.

Please try this code instead:

L.box().label(text=text, icon=icon, icon_value=icon_value)
2 Likes

Perfect! Thank you.

how can i have any(like material utilities or even right click menu, for example) menu being already opened in pie menu?
i get how to make it to open on mouseover, but is there any way to call it already opened?