Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/batch_name_edit.py')
-rw-r--r--release/scripts/batch_name_edit.py22
1 files changed, 15 insertions, 7 deletions
diff --git a/release/scripts/batch_name_edit.py b/release/scripts/batch_name_edit.py
index 08611198d47..175d33cb973 100644
--- a/release/scripts/batch_name_edit.py
+++ b/release/scripts/batch_name_edit.py
@@ -4,7 +4,7 @@
Name: 'Batch Object Name Edit'
Blender: 232
Group: 'Object'
-Tooltip: 'Apply the chosen rule to rename all selected objects at once'
+Tooltip: 'Apply the chosen rule to rename all selected objects at once.'
"""
__author__ = "Campbell Barton"
@@ -23,6 +23,7 @@ Select the objects to be renamed and run this script from the Object->Scripts
menu of the 3d View.
"""
+
# $Id$
#
# --------------------------------------------------------------------------
@@ -49,6 +50,12 @@ menu of the 3d View.
from Blender import *
+def new():
+ newname = Draw.PupStrInput('Name: ', '', 32)
+ if newname == None: return
+ for ob in Object.GetSelected():
+ ob.name = newname
+
def replace():
replace = Draw.PupStrInput('Replace: ', '', 32)
if replace == None: return
@@ -96,20 +103,21 @@ def truncate_end():
-name = "Selected Object Names%t|Replace Text|Add Prefix|Add Suffix|Truncate Start|Truncate End"
+name = "Selected Object Names%t|New Name|Replace Text|Add Prefix|Add Suffix|Truncate Start|Truncate End"
result = Draw.PupMenu(name)
if result == -1:
pass
elif result == 1:
- replace()
+ new()
elif result == 2:
- prefix()
+ replace()
elif result == 3:
- suffix()
+ prefix()
elif result == 4:
- truncate_start()
+ suffix()
elif result == 5:
+ truncate_start()
+elif result == 6:
truncate_end()
-