Post #5020: Sadly the pme operator popup_area isn’t current working but you can instead add;

📋 Metadata

🏷️ Tags

popup-dialog scripting advanced solved

  • 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


🔗 View on Blender Artists