Keyboard shortcut to rename selected objects

Next
 From:  andrewsimper
6649.1 
Is there a command that I can assign to a keyboard shortcut to rename objects?

I had a look in the commands folder but couldn't find anything, no mention of name / rename and no matching string ".name" inside any of the files there.
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
 From:  Michael Gibson
6649.2 In reply to 6649.1 
Hi Andrew, mostly the commands involve creating new objects. Most things involving changing just attributes instead of creating entirely new objects are scripts instead of commands.

You can set up a shortcut key to trigger the same thing as clicking on the object name in the properties panel by this:
script: /* Edit object name */ var pp = moi.ui.propertiesPanel; if (pp.show && pp.numSelectedObjects > 0) { pp.editName(); }

- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged
 

Reply to All Reply to All