MS Word - change case

Word has a simple case change function built-in, where you can easily change between all caps, all lowercase, and sentence case.

I couldn’t find anything in the Word AS dictionary that does this.

Is it possible to do via Word in AS, or should I use AS-specific or Obj-C functions for this?

A search for ‘case’ brings up this (among other results):

1 Like

Here is a simple,e script to change the case of the selection to upper case…

tell application "Microsoft Word"
	set case of text object of selection to upper case
end tell
1 Like

Thanks, missed it. :blush:

1 Like

Well, that was easy.

Muchos thank yous