Script outputs a circle but not a cylinder

 From:  Michael Gibson
5441.27 In reply to 5441.25 
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