Fonts default to 50 point when applying a paragraph style

I have run into this several times.  When updating an InDesign file from an older version (now using CS5) when I apply a paragraph style the font defaults to 50 point no matter the style settings.  Is there some way to avoid this.  Currently I'm copying and pasting the graphics into a new file and having to reset the text.  If I copy any of the old text over it causes the same problem.
Most of our text is copied and pasted from Microsoft Word (old version and new text edits), however, the text that was already in the document and the new text both do the same thing when a style is applied.
CS5
Win 7 Pro 64bit

My original "body" style isn't base on any style and the other styles are based on "body" but none of them (including Basic Paragraph), have 50 as the size.
I had it wrong in my original question, it's not 50 point size, it's 30 point with 50 point leading, bold, and Myriad Pro (which is my body font) that everything converts to no matter which style I choose.  My basic paragraph style is Times New Roman 12/14.  Body font that everything is based on is Myriad Pro, regular, 10/14.

Similar Messages

  • Can you apply different paragraph styles for each orientation?

    I would like to apply different paragraph styles to the text, depending if it is viewed on portrait or landscape mode, but everytime I change one the other changes automatically. Is there a way to break this link?
    Thanks

    Unfortunately, iBA doesn't provide a lever to pull that can make a particular text style orientation specific.

  • Problem:  Photoshop CS6 applies two paragraph styles when one is selected

    Hi everyone,
    When I change the heading title within my text box, I select the heading and then select the appropriate style.  Instead of just changing the heading, the body text changes as well.  Is there a setting that's causing this to happen? 
    Thanks so much for your help!

    First Bug: Simply having a layer selected (even a text layer) and then clicking the "Create New Paragraph Style" will create a generic style (with default settings). You have to tell Photoshop what settings it is that you want to create a style with. Simply double-click the text layer icon (not the layer name or the blank area around it) and this will open the text layer for editing and select the text. Now when you click the "Create New Paragraph Style" button, the settings of the selected text will be made into a style. This is how they are performing the step in the video as well, but from your description it sounds like you are skipping a step. And remember, there are two different ways of creating text: single click the Text tool to create line (character) text, click and drag a text box to create paragraph text. That is why we have both Character Styles and Paragraph Styles.
    Second Bug: The Paragraph Style is applying with your text transformations calculated. So, if you create a text style that uses a 24 pt font, then you create text and transform it so that it 200% larger, when you apply the style you will end up with a font that is at 48 pts. A 50% transformation will result in a 12 pt font, etc.
    Third Bug: Not sure why that is happening to you. My Mac uses half as much RAM and doesn't run into that problem. My guess is it would have to do with the fonts you have installed on the system. Do you still see this behavior if you disable all the fonts on your system (through Font Book or your favored font managment utility)? Your suggestion that it may have something to do with Fonnnnt Shop or WebInk may be true to. Just because they aren't open currently doesn't mean they haven't modified Photoshop and the way it runs.

  • How to apply multiple paragraph styles to one sentence?

    I'm using paragraph styles but is not helpful because I'm trying to apply 2 different styles within the same sentence which is not working.
    To make it work I select the sentence, apply the style, for instance "xfont-regular" then I select the word within the sentence that I want it to have a different style and I choose from the font list maybe italic so that it looks "something like this"
    Obviously by doing this, I'm loosing all the benefits of using p styles and of course it's so time consuming. Is there any way to break the sentence, keeping it in the same line, so that I can apply different styles to it? and still keep the benefits of just going to the styles and make the changes to the whole document that have that style applied.
    Thank you

    pchinique wrote:
    I'm using paragraph styles but is not helpful because I'm trying to apply 2 different styles within the same sentence which is not working.
    To make it work I select the sentence, apply the style, for instance "xfont-regular" then I select the word within the sentence that I want it to have a different style and I choose from the font list maybe italic so that it looks "something like this"
    Obviously by doing this, I'm loosing all the benefits of using p styles and of course it's so time consuming. Is there any way to break the sentence, keeping it in the same line, so that I can apply different styles to it? and still keep the benefits of just going to the styles and make the changes to the whole document that have that style applied.
    Thank you
    As Diane King mentioned, nested character styles may work for your need. Her example was an initial dropped capital (multi-line first one or several letters of a paragraph.) Dropped caps are a specific type of nested style - always the first one or more characters in a paragraph, two or more lines high.
    To use the general kind of nested style, you need to be able to identify the word or words within the paragraph that gets the nested character style. For example, the third word, or the first two words after the first semi-colon. If there is no pattern of word(s) that can be identified by position or sequence, it's possible that a GREP style can be used to find a common pattern of characters and apply a character style to it, for example a telephone number, date, or currency amount that's identified by a dollar sign, pound, or yuan.
    Search InDesign Help and Google for "InDesign nested style," "InDesign grep style," and similar terms (without quotes) for details. There have been many discussions of GREP on this forum.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • Apply a paragraph style to XML elements that have a specific attribute

    1) I'm an almost complete noob when it comes to XML
    2) I have an XML with a ssstructure like this:
    <chapter>
         <paragraph> bla bla </paragraph>
         <paragraph> bla bla </paragraph>
         <list type="disk">
              <listitem>
                   <paragraph> bla bla </paragraph>
                   <paragraph> bla bla </paragraph>
              </listitem>
              <listitem>
                   <paragraph> bla bla </paragraph>
                   <paragraph> bla bla </paragraph>
              </listitem>
              <listitem>
                   <paragraph> bla bla </paragraph>
                   <paragraph> bla bla </paragraph>
              </listitem>
         </list>
         <list type="square">
              <listitem>
                   <paragraph> bla bla </paragraph>
                   <paragraph> bla bla </paragraph>
              </listitem>
              <listitem>
                   <paragraph> bla bla </paragraph>
                   <paragraph> bla bla </paragraph>
              </listitem>
              <listitem>
                   <paragraph> bla bla </paragraph>
                   <paragraph> bla bla </paragraph>
              </listitem>
         </list>
    </chapter>
    Is there a easyer way (except iterating all the xmlElements) to find all the lists and apply the appropriate paragraph style (i have a "list_with_disk" paragraphstyle, and a "list_with_square" one)?

    Hi Vamitul,
    Please try the below JS code.
    var myDoc = app.activeDocument;
    //____________________ disk bullet style apply
    try{
        var rootElement = myDoc.xmlElements.item(0);
        var linkElementList = rootElement.evaluateXPathExpression("//list[@type='disk']//paragraph");
        for(i=linkElementList.length-1; i>=0; i--){
            var myAttribute = linkElementList[i];
            myAttribute.xmlContent.appliedParagraphStyle = myDoc.paragraphStyles.itemByName("Disk");
        }catch(e){}
    //____________________ Squar bullet style apply
    try{
        var rootElement = myDoc.xmlElements.item(0);
        var linkElementList = rootElement.evaluateXPathExpression("//list[@type='square']//paragraph");
        for(i=linkElementList.length-1; i>=0; i--){
            var myAttribute = linkElementList[i];
            myAttribute.xmlContent.appliedParagraphStyle = myDoc.paragraphStyles.itemByName("Square");
        }catch(e){}
    thx,
    csm_phil

  • InDesign keeps freezing when updating a paragraph style, a color swatch or moving pages

    I am experiencing a very serious blocking bug. Somehow, when I update certain text styles and click Preview or Update Style Definition, the program goes to 100% CPU (single thread) and never recovers. The same happens when moving certain spreads in the document or updating a color swatch. I suspect a bad font, but I can't change the fonts, because the program freezes when I redefine styles. When I change the color or font manually in the workspace of the document, everything works. Any ideas, Adobe?
    I have tried deleting the SavedData and Preferences, it doesn't have an effect.
    I am using InDesign CC 2014 on Windows 7. I have never experienced such behavior from InDesign before. (I've got a lot of experience with the program since Version CS1)

    I've done what you said. All fonts used are deleted. The problem is persisting. The fonts are from good sources, so I wouldn't expect that. This is specific to InDesign CC2014.

  • Delete specified line and next paragraph applied specified paragraph style

    Hi,
    How to find one of the specified line, then delete (e.g. <chapter>) and the next paragraph applied one of the paragraph style in the indesign javascript. Please explain

    Hi,
    Why do you want to use a [JS]? A simple grep search can do it:
    If you have to do it on other "<………>", do similar regex and use Multi-Find/Change! 
    Done with some work minutes!

  • Apply default transitions not working when applied next to AE Compositions

    I'm kinda pulling my hair out with this. My default transition is Dip to Black, duration of 2 seconds, and centered at cut. When I select a bunch of clips in the timeline with After Effects compositions mixed in and apply the default transition, the transition around the AE Compositions is ALWAYS changed to 1 second, centered at start/end. And I have to manually go in there and change it to 2 seconds, centered at cut.
    Here's a video describing it:
    http://www.youtube.com/watch?v=FDsyXhE7Ohk
    Why does it do this, and how do I get it to stop?

    Your AE comps don't have handles.  There's no extra video there for the transition.

  • Developer's fonts defaulting to Mystic Pro when source is opened

    Captivate 5:  How to make original developer's fonts be recognized when opening their source files?  I have the font on my system and it is available in Captivate - but I am having to edit every single text box, etc to get the intended font to appear?
    Thank you.

    Gonna give this a little bump. Again, any help is much appreciated.

  • "Could not complete your request because of a program error" when applying text layer style

    This just started happening recently after opening up an Illustrator file in Photoshop. Any clue?

    PS CS6 13.0.1 x64
    win 64
    I just created a new file in PS, 8 bit RGB color and SRGB color space.,  no go. CMYK 16 bit, still error.

  • Fonts default when file is viewed in 8 but ok in 9

    I have a file where the fonts view properly within Acrobat 9 Pro, but the same fonts default to box shapes when viewed in Acrobat 8 Pro. Anybody experience this before? The preflight report comes back clean, no font issues are uncovered.

    Hi Dave,
    I just completed a test and comparison between the two PDF's,
    compared the file as you suggested with the floating option and changing setting to actual size of the original premier pro / mp4 file size and
    the old pdf that did not utilize the floating and file size option.
    I do notice a slight difference. The PDF with the floating window with the match of the media clips original dimensions appears to be crisper.
    I will be having the final pdf document set utilizing this method for the embeded mp4 movie and hope that the department doing this (next stage of this job) will agree that this is better to use your steps to embed all the video files into a pdf.
    Thanks so much for your time.
    Hope you had a happy holiday, and hope you have a very happy and healthy new year.
    Thanks, Amy

  • InDesign CS3 crashes when applying styles to pasted text with formatting.

    Running InDesign CS3, v. 5.0.2 on Windows XP, SP2
    InDesign is crashing whenever I do the following:
    1. Paste or place text from Microsoft Word -- with existing formatting preserved.
    2. Apply any character or paragraph style to that text.
    This happens 100% of the time when I try to recreate the error. It happens on more than one computer. It never used to happen in IDCS2. It's not a missing font issue.
    I've tried recreating the InDesign preference files, but it didn't work. (See help file at http://kb.adobe.com/selfservice/viewContent.do?externalId=kb400616&sliceId=1)
    Any suggestions would be hugely appreciated! This is slowing down my work a ton, and manually adding things like underline is killing me. If it persists, I'll have to roll back to CS2. :(

    We had exactly the same issue - but it only seemed to happen when a "Hyperlink" character style came in with the pasted text. In fact, the crash only happened when we tried to apply a paragraph style to a paragraph that had a hyperlink in it.
    Our solution: before we try to do anything else, we delete the "Hyperlink" character style. I can't guarantee that this will solve your issue, but it has worked for us (so far!) in those rare cases when we cut & paste Word text.
    We have never had this issue when we import ("Place") the Word file - that's generally a better workflow anyway.
    -Bill

  • Applying paragraph style to a single paragraph affects all previous paragraphs

    Hey,
    I'm trying to create a script that would take an array of text objects that describe what the text and style of a particular line of text is. And in some lines to apply Character Styles as well.
    The problem is that, while the script works when the loop is in the character styles "mode", it seems to apply the paragraph styles to all the previous lines of text when the aforementioned object asks it to apply only the paragraph style (no character styles).
    The offending line is this:
    if ( typeof line.text == 'string' ) {
        frame.contents += "\r" + line.text;
        frame.parentStory.paragraphs[-1].appliedCharacterStyle = doc.characterStyles[0];
        frame.parentStory.paragraphs[-1].applyParagraphStyle(style);
        continue;
    I even copied the style-apllying lines from the Character-Styles-applying section of the script (the else part), but it still applies the style to all the previous lines of text. The script below is the full code I have I long with one of the objects that text data. If I comment out the "offending lines" mentioned above, the script applyes all the styles correctly. Otherwise, only the last line (the Product - Description style) is applied, while all the previous lines attain the 'Spacer' style.
    Can anyone see what I'm doing wrong? (sorry for the giant piece of code, but I can't pin-point what's not relevant here).
        'text': [
                'style': 'Product - Title No Indent',
                'text': [
                    'Test Product',
                        'style': 'Superscript',
                        'text': '®'
                    ' Title'
            { 'style': 'Spacer', 'text': ' x' },
            { 'style': 'Spacer', 'text': ' x' },
            { 'style': 'Spacer', 'text': ' x' },
                'style': 'Product - Description',
                'text': ['Designed for monitoring steam sterilization processes.']
    function add_text_to_frame (frame, product) {
        var i, l, j, k, line, style, line_styles, char_style, line_text, bit;
        for ( i = 0, l = product.text.length; i < l; i++ ) {
            line = product.text[i];
            style = doc.paragraphStyles.item( line.style );
            if ( typeof line.text == 'string' ) {
                frame.contents += "\r" + line.text;
                frame.parentStory.paragraphs[-1].appliedCharacterStyle = doc.characterStyles[0];
                frame.parentStory.paragraphs[-1].applyParagraphStyle(style);
                continue;
            else {
                line_styles = new Array();
                line_text = '';
                for ( j = 0, k = line.text.length; j < k; j++ ) {
                    bit = line.text[j];
                    if ( typeof bit == 'string' ) {
                        line_text += bit;
                    else {
                        line_styles.push({
                            'start': line_text.length,
                            'end': line_text.length + bit.text.length,
                            'style': bit.style
                        line_text += bit.text;
                frame.contents += "\r" + line_text;
                frame.parentStory.paragraphs[-1].appliedCharacterStyle = doc.characterStyles[0];
                frame.parentStory.paragraphs[-1].applyParagraphStyle(style);
                for ( j = 0, k = line_styles.length; j < k; j++ ) {
                    char_style = doc.characterStyles.item(line_styles[j].style);
                    frame.parentStory.paragraphs[-1].characters.itemByRange(
                        line_styles[j].start,
                        line_styles[j].end
                    ).applyCharacterStyle(char_style, true);

    Here's the shortest code with the problem I could come up with.... You can run it if you create two different default paragraph styles: 'Product - Description' and 'Product - Title No Indent';
    The problem is that the first line should have 'Product - Description' style, but it instead it gets 'Product - Title No Indent'.
    If I comment out one of the paragraphs, everything works fine. What's wrong?
    var doc = app.documents.add(),
        product, text_frame, i, l;
    product = {
        'text': [
                'style': 'Product - Description',
                'text': 'Designed for monitoring sterilization processes.'
                'style': 'Product - Title No Indent',
                'text': 'Designed for monitoring sterilization processes.'
                'style': 'Product - Description',
                'text': 'Designed for monitoring sterilization processes.'
    text_frame = doc.pages[0].textFrames.add();
    text_frame.geometricBounds = [ '0pt', '0pt', '240pt', '300pt'];
    for ( i = 0, l = product.text.length; i < l; i++ ) {
        text_frame.contents += "\r" + product.text[i].text;
        text_frame.parentStory.paragraphs[-1].appliedCharacterStyle = doc.characterStyles[0];
        text_frame.parentStory.paragraphs[-1].applyParagraphStyle(
            doc.paragraphStyles.item( product.text[i].style )

  • Clicking a Paragraph Style Does Not Apply Style to Text

    I just switched from a PC to a brand new MacBook Pro (OSX Lion 10.7), and I bought InDesign CS5.5. I have been using CS4 on a PC for a couple of years and had no issues. For some reason, I cannot apply Paragraph Styles by placing my cursor in the text and clicking the Paragraph style. It highlights the clicked style for a moment, and then de-highlights all the styles, but does not apply any changes. The only way I can apply a Paragraph Style right now is by right clicking the style and selecting "Apply..." from the drop down menu. It's very puzzling. I was wondering if anyone had any experience with this. I also have Microsoft Office: Mac 2011 installed on the laptop if that makes a difference to anyone. Any help would be greatly appreciated, since I typeset and edit for my living, and this problem is slowing me down a bit.

    Neither. Let's say I click into a paragraph. The current style will be highlighted. If I click on another style (or even attempt to re-apply the same style by clicking on it in the styles pane), it momentarily highlights the new style, then flashes a little bar underneath (like the one that shows up if I were to try to re-organize the styles list by dragging a style to a different pace in the styles list), then all the styles become unselected, but no changes have been applied to the paragraph in question. Very definitely not normal. It is almost as if the pane assumes that I am attempting to drag the style even when I am merely clicking on it. Very weird.

  • FIND/CHANGE - Applying Paragraph Style

    Hello,
    I used FIND/CHANGE to apply my paragraph style and when I apply the paragraph style... it applies the style to the entire line.
    For example,
    A. #70712       resulted to         A. #70712
    I only wanted the "#70712" to be changed to my style. I used the GREP search and entered #.+ and then I choose the paragraph style I want and clicked change all. The problem is that it changed all the text on that line and applied the paragraph style.
    Please help. Thank you very much.

    graphicsoc wrote:
    Hello,
    I used FIND/CHANGE to apply my paragraph style and when I apply the paragraph style... it applies the style to the entire line.
    For example,
    A. #70712       resulted to         A. #70712
    I only wanted the "#70712" to be changed to my style. I used the GREP search and entered #.+ and then I choose the paragraph style I want and clicked change all. The problem is that it changed all the text on that line and applied the paragraph style.
    Please help. Thank you very much.
    If I understand your request correctly:
    If your paragraph style uses a numbered list to create the "A." and the remainder of the paragraph consists of only "# 70712" that you type in manually (or place from an existing file), I believe that you you don't need GREP. You can format the auto-numbered list differently from the remainder of its paragraph, by specifying a character style for the number portion.
    To extract only the non-numbered portion of an auto-numbered paragraph, for a TOC, in the Table of Contents dialog box, open the bottom part by clicking More Options if necessary, and in the Numbered Paragraphs pull-down menu, select Exclude Numbers.
    Read more about Table of Contents in Help, and/or with a Google search for terms like "InDesign table of contents numbered list exclude numbers" without quotes.
    If you need additional special formatting "tricks" in the source paragraphs, or in the TOC entry paragraphs, look into Nested Styles and GREP
    Styles in Help or Google searches.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

Maybe you are looking for

  • ERROR   OGG-01296,OCI Error ORA-01400

    Discarded record from action ABEND on error 1400 OCI Error ORA-01400: cannot insert NULL into ("SICK"."SI _RECORD"."CARD_TYPE") (status = 1400), SQL <INSERT INTO "SICK"."SI_CARD_RECORD" ("ORG_ID","CARD_NO","MODIFY_TIME","MODIFY_OPERATOR","REMARK") VA

  • Airport Utility No Longer Sees my Extreme Bus Station

    Hello. I just moved into a new apartment and setup my network as I did in my previous place. My Linksys wired cable modem is plugged into my Airport Extreme and my Extreme is plugged into my Desktop Pro's ethernet port. I ran Airport Utility but it d

  • Oracle 8.1.7 on Redhat 7.2, "dbassist " failed to start 4 of 5 times

    I followed Thomasfly's tips and other posts here(many thanks), the server was installed successfully. When I tried to create a database, usally I needed to restart "dbassist" 5 times to make it bring up the windows. Anyone has a clue of this issuse?

  • Lock Cascade With Select for UPDATE

    If I had a employee table and a phone table with a parent/child relationship and a primary key constraint on the employee table-will issuing a select for update on the employee also lock the corresponding child rows on the phone table ? If not how ca

  • Mini died, won't turn on

    last night my ipod mini died, and I put it on the charger, but still it won't turn on. I tried to reset it, and that didn't work. any suggestions?