this one work pretty well :
[Titlecase)
you just to change len condition to not Capitalize words less than 4 characters :
In the script, replace
if len(strNameArray(x)) > 0 then
by
if len(strNameArray(x)) > 4 then
this should work
this one work pretty well :
[Titlecase)
you just to change len condition to not Capitalize words less than 4 characters :
In the script, replace
if len(strNameArray(x)) > 0 then
by
if len(strNameArray(x)) > 4 then
this should work