Change Lower Case to Uppercase in Styles

I have a document which uses lower case subheads throughout. Is it possible to make a character style sheet to change a subhead from lower case to upper case in a document?
Or a way to search using find/change?
Thanks for you help
G4 OSX Tiger InDesign CS3

You can use the paragraph style for the subheads.
Open the paragraph style and go to Basci Character Formats.
There's a setting for "Case".
Choose All Caps from the menu.
That should change all your subheads to All Caps.

Similar Messages

  • Auto-Capitalization: How can I set Pages v5.01 to auto-capitalize the first letter of the first word in a sentence and to automatically change lower case "i" to "I" appropriately. I'm unable to find a menu that offers me these.

    Auto-Capitalization: How can I set Pages v5.01 to auto-capitalize the first letter of the first word in a sentence and to automatically change lower case "i" to "I" appropriately. I'm unable to find a menu that offers me these.

    Gavin Lawrie wrote:
    Once it had been established that the iWork rewrite had resulted in some features being lost and others broken, and once Apple had acknowledged the concerns* and suggested they are working on fixes**, I'm not sure what else there is to achieve.
    You are writing that in the perspective of having read about it here already. Repeated often enough that you encountered it somewhere in the posts.
    Users are flooding in here and don't know any of this. Of course we have to repeat everything endlessly.
    Because I like to give precise, understandable and workable answers to repeated questions, and Apple doesn't allow sticky posts here, I created a separate forum which users can consult to look up real answers, and contribute for themselves if they have something valuable to add:
    http://www.freeforum101.com/iworktipsntrick/
    There is a section purely devoted to Pages 5. Add whatever answers you feel will lighten the problems of Apple's 'upgrades'.
    Peter
    * Where have they acknowledged anything?
    ** They have barely anything listed, compared to the massive list of deleted features, and nothing but an extraordinarily long time frame considering they created the problems here and now. Apple has not said they will do anything at all about fixing the real issues, the biggest of which is that the new iWork apps break virtually all the work of existing users.

  • Batch Master Creation with lower case letters

    Hi,
    While creating batch master via msc1n, sytem automatically change lower case letters of bach ID to upper case letters.
    Can anyone please guide me, where are the settings in the system for this change?
    Regards,
    M.S.Baraneedharan

    Conversion Routine
    Conversion takes place when converting the contents of a screen field from display format to SAP-internal format and vice versa and when outputting with the ABAP statement WRITE, depending on the data type of the field.
    If standard conversion is not suitable, it can be overridden by specifying a conversion routine in the underlying domain.
    A conversion routine is identified by its five-place name and is stored as a group of two function modules. The function modules have a fixed naming convention. The following function modules are assigned to conversion routine xxxxx:
    CONVERSION_EXIT_xxxxx_INPUT
    CONVERSION_EXIT_xxxxx_OUTPUT
    The INPUT module performs the conversion from display format to internal format. The OUTPUT module performs the conversion from internal format to display format.
    If a screen field refers to a domain with a conversion routine, this conversion routine is executed automatically each time an entry is made in this screen field or when values are displayed with this screen field.
    I have to correct myself . if the entry in small letters is allowed or not is already defined in the domain of the field.
    You can see this in  SE11.
    set radio button to Domain and enter CHARG in the domain field and click display.
    in the definition tab you can see a box for Lower Case, which means that lower case entries are only allowed if this box is activated. (btw: the field for the conversion routine can be seen  above)

  • How can you create a paragraph style that removes all spaces and forces everything to lower case?

    Hi,
    Is there anyway of using GREP (or some other magical wizardry) to create a paragraph style that automatically removes all spaces and forces words into lower case?
    Strange request i know....I'm wanting to use it for datamerged email addresses.
    Thanks

    so doing it through InDesign is a work around I'm exploring.
    Excel has the 'LOWER' function and the ability to record macros for a quick find/replace on the spaces - so that's definitely a good option if it can't be solved purely in InDesign.
    You can change case via scripting in InDesign. This AppleScript (OSX only) will set the case of the selected paragraph style to lower. It would be possible to add some code that would strip spaces as well:
    tell application "Adobe InDesign CS6"
        activate
            set StyleList to name of every paragraph style of active document
        set myDialog to make dialog with properties {name:"Document Paragraph Styles"}
        tell myDialog
            tell (make dialog column)
                tell (make border panel)
                    tell (make dialog column)
                        make static text with properties {static label:"Choose a Style", min width:150}
                    end tell
                    tell (make dialog column)
                        set myPresetsDropdown to make dropdown with properties {string list:StyleList, selected index:0, min width:150}
                    end tell
                end tell
            end tell
        end tell
        set myResult to show myDialog
        if myResult = true then
            --+1 gets the correct name because list starts at 0
            set myStyle to item ((selected index of myPresetsDropdown) + 1) of StyleList
        else
            return
        end if
        destroy myDialog
        tell active document
            set myStyle to paragraph style myStyle
            repeat with j from 1 to (count stories)
                repeat with i from 1 to (count paragraphs in story j)
                    if applied paragraph style of paragraph i of story j is myStyle then
                        --defines a variable to replace the generic this_text parameter in the handler
                        set SCText to the contents of paragraph i of story j
                        set contents of paragraph i of story j to my change_case_of(SCText)
                    end if
                end repeat
            end repeat
        end tell
    end tell
    on change_case_of(this_text)
        set the_comparison_string to "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
        set the_source_string to "abcdefghijklmnopqrstuvwxyz"
        set the_new_text to ""
        repeat with thisChar in this_text
            set x to the offset of thisChar in the_comparison_string
            if x is not 0 then
                set the_new_text to (the_new_text & character x of the_source_string) as string
            else
                set the_new_text to (the_new_text & thisChar) as string
            end if
        end repeat
        return the_new_text
    end change_case_of

  • Changing Mixed Case (Title) headings to Lower Case...

    Hi,
    I am converting several word documents into InDesign CS3 documents in order to create a book. Certain paragraph headings use mixed case (Title Case) and I wish to change each of these into lower case and then apply a character style using an expert font. This seems to be a great task for GREP. However, I have not had much success with creating the correct expression. Any tips or tricks for doing this sort of thing? Also, do you know if there is a shortcut assigned to (Title Case)? It may be the case I will have to use the shortcut key to apply Title Case.
    Thanks in advance for your assistance.
    Kind regards,
    Greg

    Hi Greg,<br /><br />Glad it helped. I was actually referring to the simple all-purpose one <br />which will use whatever grep settings you have. Just save the following <br />script as GrepToLowercase.jsx (or whatever you want), and after setting <br />your grep settings in the dialog, just run the script.<br /><br />finds = app.documents[0].findGrep();<br />for(i=0;i<finds.length;i++){<br />    finds[i].contents=finds[i].contents.toLowerCase();<br />    }<br /><br />-- <br />Harbs<br />http://www.in-tools.com<br />"Automated Publishing for the Rest of Us!"

  • Firefox changes my AOL username to CAPS when I tab and I can't sign in because it needs to be lower case

    When I go to sign into AOL and enter my username in lower case, as required, as soon as I tab to enter a password, FIREFOX changes the username to all caps and I can't sign in. AOL says it's not their problem, it's a browser issue. I tried clearing histories in FIREFOX and it didn't change the situation.

    Make sure that you haven't saved Uppercase and Lowercase versions of that name and password.
    Remove saved Password(s):
    * Tools > Options > Security: Passwords: "Saved Passwords" > "Show Passwords"
    *http://kb.mozillazine.org/Password_Manager

  • I need to log in to a website that expects a case-sensitive name ID, and FF is not allowing this - it is defaulting to the lower-case version of the word I am entering. How do I change this?

    A website that I use (forums.garmin.com) requires the user to log in with their user name in all upper case characters.
    My user name is the same on multiple sites, so when I try to enter this name in upper-case, FF 4b12 automatically changes it to lower-case on tabbing/clicking off the field.
    How do I stop this happening?

    You can only save one name for a web server (domain). If you need a different spelling for some specific login then you can't use the Firefox password manager to store multiple names and passwords.
    If you did save more than one versions of the name (uppercase and lowercase) then you need to remove the others.
    * Firefox > Preferences > Security: Passwords: "Saved Passwords" > "Show Passwords"

  • I have a report in upper case, I need it in lower case, how do I change it with out typing it over?

    I have a report in upper case and I need it in lower case. How do I change it to lower case with out typing the report over?

    You are using Pages for iPad I take it?
    Pages does not have a case conversion function. The one under the Format menu switches Unicode glyphs as part of a style but requires the text to be originally in lowercase.
    Go to the App Store and see what you can find as a 3rd party converter. I don't have it but am sure there will be a TextEditor of some description to do the job.
    Peter

  • How can I change a column to lower case?

    I selected an entire column and discovered that it's already set at Format > Font > Capitalization > None
    If I change "None" to "All Caps," it capitalizes everything. But when I change it back to "None," letters that were originally capitalized remain capitalized. How can I change EVERY letter in a column to lower case?
    Thanks.

    Format > Font > Capitalization changes how the text is displayed. But it doesn't change the actual text.
    To change all letters to lower case you can use the LOWER() function in cells that refer to the original text. Then select the cells with the formula displaying the "recapitalized" text, command-c to copy, and Edit > Paste Formula Results to remove the formulas.
    SG

  • I was in a Pages Doc and inadvertently had the Caps Lock on. How Can I change all the text I typed from Upper Case to Lower Case?

    I was in a Pages Doc and inadvertently had the Caps Lock on. How Can I change all the text I typed from Upper Case to Lower Case?

    Several protocols may be used.
    Here I describe two of them.
    (1) the one which I use : install and use the "Convert to Lowercase" service available in the free WordService
    (2) copy your text, paste in TextEdit and enter the Edit menu.
    I guess that you will recognize the items in your English menu.
    I apologize but I don't know the English items.
    Yvan KOENIG (VALLAURIS, France) jeudi 16 février 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.3
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k

  • How can I change the settings to be lower case pdf not upper case PDF?

    my processing site for our business will not allow documents to be saved in upper case PDF, but I can't find where to change it to lower case pdf....which I am told will fix the issue.

    Are you talking about the file-name or the actual contents of the file?

  • Changing images and folders to lower case

    I modified my Apache software so that all the URL's in my websites default to lower case before I realized that my images would also be affected. I also modified it so that underscores are changed to dashes. Thus, an image located at images/Maps/South_America.png now gets left behind when the URL defaults to images/maps/south-america.png.
    So I have two choices - 1) Figure out a way to exempt image links from the new defaults, or 2) rename all my images and the folders that contain them.
    As I haven't yet figured out how to do the former, I need to learn how to do the latter.
    So I guess we're talking about as many as three or four operations here - change all folder names to lower case, change all images names to lower case and replace underscores in folders and images with dashes.
    Can anyone tell me how to get started? I believe there are lots of tools and software programs that accomplish at least some of these, but I'd like to find out which operations, if any, Apple can do first. Ideally, I'd like to dump my entire images folder into some program and let it change everything. (I've already made a backup of my images folders, of course.)
    Thanks.

    First of all be sure the font you're using has small letters and not just caps. If it does, then click the tiny triangle at the far left of the options bar and choose Reset Tool.

  • Changing all caps text to lower case in PSE 7 ?

    I have PSE 7.0, and am trying to add text to an image.  When I add the text, and type it in all in
    lower case, the text appears in all capitals, in text layer, and changing
    my keyboard caps lock doesn't make any difference.
    However, in the layers summary box on the right side of  screen, the text appears in lower case - but when I save, or print etc, it always shows in all capitals!
    Does anyone know any more about text editing in PSE 7.0?
    Thanks so much!
    Sasha

    First of all be sure the font you're using has small letters and not just caps. If it does, then click the tiny triangle at the far left of the options bar and choose Reset Tool.

  • GRC CUP - How to change SNC Name to lower case during user creation.

    Hi All,
    We are using GRC 5.3. CUP automatically creates user in R3 but SNC p:username'@'DOMAIN.COM is in upper case.
    1. During automated user creation.
    2. How change default DOMAIN.COM to lower case "domain.com"
    Currently we have to manually change is via SU01 after user has been created.
    Thank you
    Regards,
    Jacky

    Sorry please ignore this thread. I got the wrong details. Post cancelled

  • Changing photo file formats-Making JPG lower case

    I am new to the Mac OS and I run OS X 10.5.1 . I am having trouble uploading pics to myspace that have been transfered from my Canon PowerShot A420 camera. When the pics are taken they are saved in jpg. format but the jpg. is actually all caps (JPG). Myspace is saying the file is not recognized. I have also taken pics with Photo Booth and those are also saved in jpg. format and the jpg. is all lower case (jpg.) and those are easily uploaded to myspace. How can I change the JPG to become lower case.

    All you have to do is change the filename. You can right click on the file and choose Get Info and change it in there, or you can simply click on the name once and then again to see it highlighted, at which point you can just change the .JPG to .jpg. That is, if you're showing extensions. If not, go to Finder>Preferences, click on Advanced, and check the box to show extensions.

Maybe you are looking for