---------------------------------------17/09/2014--------------------------------------------
This code renames all selected objects in the format:
"(name)1",
"(name)2",
"(name)3", ...
- Copy the code into the script editor
- Select all
- MMB drag it onto a shelf
- and voila!!!
////////////////////////////////Bulk Rename/////////////////////////////////////////////
if(`window -exists myWindow`)
{
deleteUI myWindow;
}
window -t "Bulk Rename" myWindow;
columnLayout;
global string $field;
text "Name";
$field = `textField`;
button -l"Rename Selected" -c("changeName()");
showWindow myWindow;
proc changeName()
{
global string $field;
string $nameValue = `textField -query -text $field`;
string $sel[] = `ls -sl`;
int $i = 1;
for($each in $sel)
{
rename $each ($nameValue + $i);
$i++;
}
}
---------------------------------------01/05/2014--------------------------------------------
This code assigns hotkeys to:
ctrl + 1: Hide nurbsCurve
ctrl + 2: Show nurbsCuve
//////////////Hide nurbCurves/////////////////////
nameCommand -annotation "Hide nurbsCurve" -c "hide `ls -type nurbsCurve`" hideNurbsCrv;
-----------------------------------------------------------------------------------
This code renames all selected objects in the format:
"(name)1",
"(name)2",
"(name)3", ...
- Copy the code into the script editor
- Select all
- MMB drag it onto a shelf
- and voila!!!
////////////////////////////////Bulk Rename/////////////////////////////////////////////
if(`window -exists myWindow`)
{
deleteUI myWindow;
}
window -t "Bulk Rename" myWindow;
columnLayout;
global string $field;
text "Name";
$field = `textField`;
button -l"Rename Selected" -c("changeName()");
showWindow myWindow;
proc changeName()
{
global string $field;
string $nameValue = `textField -query -text $field`;
string $sel[] = `ls -sl`;
int $i = 1;
for($each in $sel)
{
rename $each ($nameValue + $i);
$i++;
}
}
---------------------------------------01/05/2014--------------------------------------------
This code assigns hotkeys to:
ctrl + 1: Hide nurbsCurve
ctrl + 2: Show nurbsCuve
//////////////Hide nurbCurves/////////////////////
nameCommand -annotation "Hide nurbsCurve" -c "hide `ls -type nurbsCurve`" hideNurbsCrv;
hotkey -k "1" -ctl -name "hideNurbsCrv";
//////////////Show nurbCurves/////////////////////
nameCommand -annotation "Show nurbsCurve" -c "showHidden `ls -type nurbsCurve`" showNurbsCrv;
hotkey -k "2" -ctl -name "showNurbsCrv";
////// Save settings//////////////
hotkey -as 1;
savePrefs -hotkeys;
No comments:
Post a Comment