Post #2704: ![](https://blenderartists.org/user_avatar/blenderartists.org/raphaelbarros/48/1

📋 Metadata

🏷️ Tags

popup-dialog scripting beginner solved

  • Python Scripting
  • message_box operator
  • pme.overlay operator
  • Icon Viewer integration

💬 Content

RaphaelBarros:

Is there any way I can edit this, removing the title and changing the icon?

Yes, try this:

message_box('Hello World', title='', icon='BLENDER')

Use built-in Icon Viewer add-on to find icon name.

RaphaelBarros:

is there any way to make a “pop up” feedback, something like a “Operation Finished”

Yes, experiment with pme.overlay operator:

bpy.ops.pme.overlay(text='Hello World', alignment='BOTTOM', offset_x=0, offset_y=30, duration=3.0)

❤️ 1 likes


🔗 View on Blender Artists