Post #5020: Sadly the pme operator popup_area isn’t current working but you can instead add;
📋 Metadata
- Author: furianaki
- Date: 2024-01-24 16:08:41
- Type:
answer - Quality Score: 7/10
- Reply to: post_05018
- Replies (1): post_05021
🏷️ Tags
popup-dialog scripting advanced solved
⚙️ Related PME Features
- Popup Dialog Editor
- Python Scripting
💬 Content
Sadly the pme operator popup_area isn’t current working but you can instead add; open windows and then area to UV to do the same
bpy.ops.wm.window_new('EXEC_DEFAULT', True); bpy.context.area.ui_type = 'UV'; import ctypes; u = ctypes.windll.user32; handle = u.GetActiveWindow(); u.MoveWindow(handle, 2000, 100 ,1800, 1400, True); u.ShowWindow(handle, 3)
❤️ 1 likes