Adverti horiz upsell

Dynamic C# ReNamer 1.0.0 for 3dsmax (3dsmax script)

Simple C# Object ReNaming Tool

License
$20.00
(qty: 1)

  • Check 16 Future Updates Included
  • Check 16 Highend3d Quality Checked
  • Check 16 Purchase Guarantee
  • Check 16 Support Included

Compatibility

  • 2015, 2014, 2013, 2012

Operating Systems

  • Windows

History

Created:03/25/2015
Last Modified:03/25/2015
File Size: 95.5 KB
Simple renaming tool that uses C# syntax to iterate through objects in a selection and rename based on a line of C# code which determines how objects are to be renamed.

* Actions are undoable.
* Syntax errors are shown in popup for fixing input string.

Examples:
1
Code:
   Replace("x", "y")
Input:
   Box001
Output:
   Boy001

2
Code: 
   Split('.')[0].Split('-')[1].ToLower()
Input:
   th-HERE.i-s.my.Bo-x001
Output:
   here

3
Code:
   Remove(4, 6)
Input:
   123-45678-90
Output:
   123-90

4
Code: [Note: "txt" is reference to the current object's name.]
   Insert(txt.Length, "ADDED")
Input:
   Box001-
Output:
   Box001-ADDED

Or, for those who need to get really fancy...

5
Code:
   Remove(0, txt.Length).Insert(0, ((txt.Contains("Character1_")) ? txt.Replace("Hips", "Pelvis") : txt))
Input:
   Character1_Hips
   Character2_Hips
   Character3_Hips
Output:
   Character1_Pelvis
   Character2_Hips
   Character3_Hips