Also, as an aside, when you move into an ebook version, note that (the appalling) ADE (which drives the Nook, Kobo, Sony, and most other hardware ePub readers) does not support CSS text-transform, and therefore you cannot do styled all caps or small caps, but rather need to hard-code uppercase or small caps with resized uppercase (a big pain).
Rick Gordon
------------------
On 3/18/11 at 10:41 AM -0700, Kathleen wrote in a message entitled
"Re: [ID] Embedded GREP style to change text case?":
--
___________________________________________________
RICK GORDON
EMERALD VALLEY GRAPHICS AND CONSULTING
___________________________________________________
> --
> you are subscribed to "InDesign talk" on Google Groups, to post: send email to indesi...@googlegroups.com, to unsubscribe: send email to indesign-tal...@googlegroups.com, for more options visit http://groups.google.com/group/indesign-talk
Kat
McGraphics Design
(626) 799-2195
http://www.mcgraphics.us
Character styles will not change text to all lowercase. Sigh. If I could
use a character style, I would be so happy.
We've decided to change the titles to all lowercase by hand, then have the
eBook conversion company use boldface for them.
Can you use GREP to change an uppercase character to a lowercase one?
Find: \u and change to \l didn't work (and I felt silly when it changed
the first capital letter to "\l").
R
Rick Gordon
------------------
On 3/18/11 at 7:53 PM +0000, Evans, Rebecca wrote in a message entitled
"Re: [ID] Embedded GREP style to change text case?":
>Can you use GREP to change an uppercase character to a lowercase one?
>Find: \u and change to \l didn't work (and I felt silly when it changed
>the first capital letter to "\l").
--
Roy
Where is the damn dictionary for caps-lowercase exceptions, anyway?
Rick
------------------
On 3/18/11 at 11:49 PM +0100, Roy McCoy wrote in a message entitled
"Re: [ID] Embedded GREP style to change text case?":
>Or all instances at once - which is far easier, and which you always prefer when you can.
>--
>you are subscribed to "InDesign talk" on Google Groups, to post: send email to indesi...@googlegroups.com, to unsubscribe: send email to indesign-tal...@googlegroups.com, for more options visit http://groups.google.com/group/indesign-talk
set find what of find text preferences to "!."
set change to of change text preferences to "!"
set theFinds to find text document 1
repeat with j from (count of theFinds) to 1 by -1
select item j of theFinds
set zoom percentage of layout window 1 to (get zoom percentage of layout window 1)
display dialog "Change this one?" buttons {"Yes", "No", "Cancel"} ¬
default button "Yes"
if button returned of result is "Yes" then
change text item j of theFinds
end if
end repeat
beep
The beep lets you know it's moved on to the next operation. I'm suddenly not at all sure I need to check on this one, and I don't if I always change all of them; but there aren't that many instances of !. in my doc so I don't realy need to worry about changing the script, regardless.
I'm not sure there is a user-accessible dictionary for the title case exceptions, but you should at least be able to find out what they are. Whether you can or not is another question - I'm not sure, and I don't know where to find them myself.
Roy