Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I need to write a new name to replace the word Character that already contains each of the objects in my scene with a new name that I can write.
My objects are called: Character_Nametest_001///Character_Othername_001///Character_Test_001
Ideally, you should use a menu like the one in this exercise:
macroScript RenameThem category: "HowTo"
(
rollout rename_rollout "Enter New Base Name"
(
edittext base_name ""
button rename_them "RENAME SELECTED OBJECTS..."
on rename_them pressed do
(
if base_name.text != "" do
for i in selection do i.name = uniquename base_name.text
)--end on
)--end rollout
createDialog rename_rollout 250 50
)
Solved! Go to Solution.