QUOTE(mrwolfy @ 05/28/09, 01:19 PM) [snapback]308449[/snapback]
Know of a renaming script that can do?
Lots of them. Aside form the small fact that this is probably the second thing i ever learned to do in mel so i dont see any point in keeping ones around*. As it takes me less time to type a rename than it takes me to move mouse to activate a button.
CODE
for ($i in ls -sl -dag -shapes -l
)
rename $i "aa";
Ofcourse you can go all fancy in naming like following which would revert to original naming convention:
CODE
for ($i in ls -sl -dag -shapes -l
){
$parent=listRelatives -p $i
;
rename $i substitute ((string)$parent[0]) "s/[0-9]*$/Shape$0/"
;
}
You can go as far as you liek in complexity offcourse
*Its a personal choice i could have a button for this but then id constantly forget how to write for. By not taking this particular step i train my brain to learn the one thing about programming one should never forget. After awhile you don't miss a button anymore