Upper and Lower Case (Title case?)

Okay, this is probably an easy one: can anyone tell me how to make a variable upper case within a say “” command? For example, say “[property]”, and the property should only be upper case at the beginning of a sentence. I can’t figure out how to apply a title case within the brackets. And, I’m trying to avoid temporary variables – the property is coming from an outside class. Also, related – making the property lower case.

Thanks!

Have you read chapter 19.4?

Ah… looks like I’m going to have to create a temporary variable. Here’s the example, in a loop:

So… I’ll have to create a temporary variable for all things I want to switch between. That isn’t too bad – the functions I want to modify can have a few more temporary variables. Thanks.