| Hi Martin,
 > I found moi.ui.propertiesPanel.editName() which brings up a dialog to edit the name of the selected
 > object but I can't find out how to give an object a name directly without dialog.
 
 Objects have a .name property that you can set directly using script. So for example:
 
 obj.name = 'my name';
 
 - Michael
 |