126
Script / Re: Title Case
« on: July 09, 2018, 22:07:04 »
I managed to plagiarize that piece of code Mathias, I hadn't been sure how/where to insert it but I figured it out 
Thanks again.
BTW do you use any specific syntax coloring to help when when coding with MS? I find it helps me if I can use colors when I'm trying something. ATM I am using notepad++. Any recommendations for coloring? (It's probably a big job but maybe you can add syntax coloring to the MS Debugger some time....?)

Code: [Select]
@var $arr = GetSourceSelectedPaths();
@var $NameA = PathGetNamePart( $arr );
@var $newText = TitleCase($NameA);
@var $NameB = $newText[0] = StrToUpper( $newText[0] );
{
RenameFile( $arr, $newText, "RENAME_RO" );
}
Thanks again.

BTW do you use any specific syntax coloring to help when when coding with MS? I find it helps me if I can use colors when I'm trying something. ATM I am using notepad++. Any recommendations for coloring? (It's probably a big job but maybe you can add syntax coloring to the MS Debugger some time....?)