About paragraph and character format

If You define paragraph and character formats what will be overwriting which  
           one?

If you ude both chatacter and paragraph format to print a variable... character format will override paragraph format.
Ex, AS --> Paragraph format   Font size 10  Font family : HELVE
      CH --> character format    Font size 8
Now, PS <CH> HELLO </>
It will be of font family of HELVE and with font size of 8.
I hope it is clear for you now.
Regards,
SaiRam

Similar Messages

  • Smartforms/Smartstyle How to create/upload paragraph and character formats

    Hi Folks,
    I am working on a demo IDES system. In my ECC 6.0 system, the paragraph formats were not included. How can import or include or create or upload paragraph and character formats in order to create smartforms and smartstyles.
    Waiting for your answer................
    Thanks,
    Creasy Matt

    If you Ran Smartstyles T-code and from Utilities you should got all information how to do all these activities.

  • Reg paragraph formant and character format

    Hi All,
    How to assign particular paragraph formant and character formant for a particular text node that I have created.I know how to create paragraph formats and characters using smartstyles and also I assigned this smartstyle in my smartform to that particular text node,but I am not getting where do I select the paragraph format and character format to assign it to the text node?could you please suggest some body how to do this?
    Regards
    Mahesh

    Select the text you have written in the created text element and on top of the text only there is an option for Paragraph and character formats which will give you the dropdown list with all the paragraphs and character formats u have created. choose the desired one and it will reflect..
    OR alternately you can go to the editor and wite the code as in SAP SCRIPTS by providing the Paragraph name or Character name urself.
    REWARD POINTS IF USEFUL

  • Paragraph format and character format in script

    hi expects,
    what is the difference between paragraph format and character format in script?

    Hi Rohit,
    Paragraph formats control the formatting of paragraphs in SAPscript  whereas Character formats are used for text formatting within paragraphs.
    Character formats will have Standard attributes like Bold, Italic, Underline, Font family, Font size etc.
    Paragraph formats will standard attributes of Character formats and in addition to this, they will margins, Indents, tabs, Alignments, Line spacing and delimeters.
    Check this link for Paragraph formats
    http://help.sap.com/saphelp_47x200/helpdata/en/d1/802e02454211d189710000e8322d00/content.htm
    Check this link for Character formats
    http://help.sap.com/saphelp_47x200/helpdata/en/d1/802e43454211d189710000e8322d00/content.htm
    Thanks,
    Vinay

  • Script needed to generate a list of paragraph and character styles from the Book Level

    Hello,
    I am using FrameMaker 11 in the Adobe Technical Communication Suite 4 and I need to find a script that will generate a list
    of paragraph and character styles from the book level.
    I am working with unstructured FrameMaker books, but will soon be looking at getting a conversion table developed
    that will allow me to migrate all my data over to Dita (1.1 for now).
    Any thoughts, ideas on this is very much appreciated.
    Regards,
    Jim

    Hi Jim,
    I think the problem you are having with getting a response is that you are asking someone to write a script for you. Normally, you would have to pay someone for this, as it is something that folks do for a living.
    Nonetheless, I had a few minutes to spare, so I worked up the following script that I believe does the job. It is very slow, clunky, and totally non-elegant, but I think it works. It leverages the book error log mechanism which is built in and accessible by scripts, but is spendidly unattractive. I hope this gives you a starting point. It could be made much more beautiful, of course, but such would take lots more time.
    Russ
    ListAllFormatsInBook()
    function ListAllFormatsInBook()
        var doc, path, fmt;
        var book = app.ActiveBook;
        if(!book.ObjectValid()) book = app.FirstOpenBook;
        if(!book.ObjectValid())
            alert("No book window is active. Cannot continue.");
            return;
        CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
        CallErrorLog(book, 0, 0, "** Book format report for:");
        CallErrorLog(book, 0, 0, book.Name);
        var comp = book.FirstComponentInBook;
        while(comp.ObjectValid())
            path = comp.Name;
            doc = SimpleOpen (path, false);
            if(doc.ObjectValid())
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, doc, 0, "");
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, 0, 0, "Paragraph formats:");
                fmt = doc.FirstPgfFmtInDoc;
                while(fmt.ObjectValid())
                    CallErrorLog(book, 0, 0, "  - " + fmt.Name);
                    fmt = fmt.NextPgfFmtInDoc;
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, 0, 0, "Character formats:");
                fmt = doc.FirstCharFmtInDoc;
                while(fmt.ObjectValid())
                    CallErrorLog(book, 0, 0, "  - " + fmt.Name);
                    fmt = fmt.NextCharFmtInDoc;
            else
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
                CallErrorLog(book, 0, 0, "!!!  Could not open: " + comp.Name + " !!!");
                CallErrorLog(book, 0, 0, "-----------------------------------------------------------");
            comp = comp.NextComponentInBook;
    function CallErrorLog(book, doc, object, text)
        var arg;
        arg = "log ";
        if(book == null || book == 0 || !book.ObjectValid())
            arg += "-b=0 ";
        else arg += "-b=" + book.id + " ";
        if(doc == null || doc == 0 || !doc.ObjectValid())
            arg += "-d=0 ";
        else arg += "-d=" + doc.id + " ";
        if(object == null || object == 0 || !object.ObjectValid())
            arg += "-O=0 ";
        else arg += "-O=" + object.id + " ";
        arg += "--" + text;
        CallClient("BookErrorLog", arg);

  • [JS InDesign CS3] Style groups, begone! (or: How do I take paragraph and character styles out of style groups?)

    Sorry for this question (and my terrible English, by the way), I'm a javascript noob and I know when I've reached my limits.
    Well, I'm trying to take a set of paragraph and character styles out of the style groups they are placed in, in hundreds of InDesign documents (that cannot be treated as a book). As far as I've tried (thanks to the invaluable help of previous posts in this forum) I've been able to move a style into a group and change it's position inside the group, inside the root level or even between groups. But it doesn't matter how I try, I don't know which move reference should I try in case I want to take every style out of their style group and place them after their original group folder, at the [Root] style level .
    I have tried:
    var doc=app.activeDocument;
    var pGroups=doc.paragraphStyleGroups;
    for (i=pGroups.length-1; i>=0; i--){
         var pStylesInGroup=pGroups[i].paragraphStyles;
         for (j=pStylesInGroup.length-1; j>=0; j--){
    // Here I am, trying to move a style outside the folder that contains it, and failing miserably.
              pStylesInGroup[j].move (LocationOptions.after, pGroups[i]);
    It didn't work, the script sent an invalid parameter value in the reference field, so I cant use the group folder itself as reference.
    Tried other (obviously wrong) solutions, like use the first available style as reference. Therefore, my second script was
    var doc=app.activeDocument;
    var pStyles=doc.allParagraphStyles;
    var pGroups=doc.paragraphStyleGroups;
    for (i=pGroups.length-1; i>=0; i--){
         var pStylesInGroup=pGroups[i].paragraphStyles;
         for (j=pStylesInGroup.length-1; j>=0; j--){
    // Now I try placing the styles after the [Basic Paragraph], that is, the second paragraph style in the document style list
              pStylesInGroup[j].move (LocationOptions.after, pStyles[1]);
    It didn't work either, another invalid parameter in the reference field. Similar results with my other attempts (I even tried "[Root]" as literal with similar luck).
    So, my question is: Which command (or script, in case my whole approach is utterly wrong) should I use to achieve my goal?
    Thanks in advance to whoever decides to spend more than a minute thinking about my humble worries, and my apologies for shamelessly ripping some of your lines of code for my purposes.

    Okay, tried a few things and got really weird results!
    1. You can move a style around inside its group.
    2. You can move a style out of a group "to" another, but it will appear 'inside' that style. I got my test style as a sub-item of [Basic Paragraph], using index #1. With index #0 ([No Paragraph Style]) InDesign crashed.
    3. You can duplicate the style, but then you get a copy in the same group. Still no luck.
    4. Finally! What is the parent of a paragraph style?
    Document | Application | ParagraphStyleGroup
    "Application" is easy -- that's when you make a style global. So what's the difference between 'Document' and 'paragraphStyleGroup'? Simple -- well, when you finally get it...
    pStylesInGroup[j].move (LocationOptions.AT_END, doc);
    moves the style out of the group and to the end of the list in the document. I don't think it's possible to move it directly to a specific position into the main style list -- you first have to move it out of a group, then move it around in its own list.
    Fortunately, it returns its new position as a ParagraphStyle again, so if needed, you can use
    newStyle = pStylesInGroup[j].move (LocationOptions.AT_END, doc);
    newStyle.move (LocationOptions.AFTER, pStyles[1]);
    -- I didn't really try that out, but it should work.

  • Changing fonts in paragraph and character styles (AppleScript, Grep or JavaScript)

    I have been trying the javascripts in this discussion:
    Adobe Community: Specified font need to be changed in all paragraph styles
    but I cannot get any of them to work. I have been putting them into CodeRunner then saving them into the InDesign Scripts folder but I have specific error messages for the ones I have tried. I am wondering if they actually solve my problem anyway, which is:
    Helvetica Neue LT seems to add another LT to its description thus: "Helvetica Neue LT LT 45" instead of just "Helvetica Neue LT 45".  InDesign does not recognise this and thus when I open each file I get a list of Fonts to be found. I have dozens of styles (Paragraph and Character) in dozens of files and have changed some of the styles manually - a laborious task. The styles must be changed otherwise I am still stuck with Helvetica Neue LT lurking away, waiting for the style to be applied. So I cannot use "Find font..." in the Type Menu.
    I am changing to "Helvetica Neue LT Std" with many faces: 35 Thin, 45 Light, 46 Light Italic, 65 Medium, 75 Bold...
    from the similar faces in Helvetica Neue LT. These currently display in the Styles Menu as [Helvetica Neue LT] [LT 45 Light]
    Sometimes when I change to Helvetica Neue LT Std manually the face sticks (even though I have changed it) so I have "Helvetical Neue Ltd Std [LT 45 Light]" and I have to go through the styles again and again. This is very tedious.
    So if anyone can help me with this problem I'd be eternally grateful.
    Using InDesign CS6, MacMini 2012, Mountain Lion (though I had the same problem in Lion)

    Hi James. Just a few threads down the list there is this: http://forums.adobe.com/thread/1198632?tstart=0
    Even the name of the thread is similar to yours.
    But first, you should do a bit of housecleaning in your font library. From your description it sound like a big mess.
    Do you use any font management tools? Most of the times they do more harm than good (but i am aware that it's a necessary evil for the most part).
    The fonts you are trying to use are in the font library or in the indesign document's folder?
    While Mac is a lot better than Windows in managing multiple fonts/font versions, it's also a lot more "fragile" if something goes wrong with a font.
    Try cleaning the font cache first:
    sudo atsutil databases -remove
    the restart the font server
    sudo atsutil server -shutdown
    sudo atsutil server -ping
    have a look here also:
    http://forums.adobe.com/thread/1201617?tstart=0

  • Frame 9 keystrokes for entering Paragraph and Character Tags

    I have been using the F9 and F8 keystrokes for entering paragraph and character tags, respectively, for 25 years. I just upgarde to Frame 9, and suddenly they behave differently. Instead of being able to type the first few characters of the tag name and pressing Enter to select the tag, you can now only type the first letter and to get to the next tag in the list that starts with the same letter, you type the letter again. Furthermore, if there is only one tag with the letter you type, it automatically selects it without requiring you type press Enter, which might seem like a feature except if you're used to pressing Enter.
    Does anyone know if there is a way to go back to the way it was?

    While this did solve the problem partially, it seems Frame 9 with the patches still has slighly different behavior from the way I've been using F8 and F9 for the past 20 years. To return to the old behavior, what we need is a combination of the behavior of Frame 9 and Frame 9 with the patches. That is, press F9, type the first letter of the tag name, type the same letter again to scroll down the list, then press Enter to apply it. So, for example, if you have Body and Bullet, if you type "b" you get Body and if type "b" again, you get Bullet. This isn't so bad if you have these two tags, because you can easily type "bu" to get Bullet. But if you have Body1, Body2, Body3, Bullet1, Bullet2, Bullet3, it's kind of a pain to have to type "bullet2" to apply this tag using the keyboard. Kind of defeats the purpose of using the keystroke in the first place.
    The other thing I've gotten used to over the years is being able to press F8 + Enter or F9 + Enter and have it apply the first tag in the list, which was always Default Para Font and Body. Not anymore. Now you have to type the first letter of the first tag in the list. Grrr.
    While you can teach and old dog new tricks, I don't think it's very nice of them to change the behavior of these very common keystrokes.
    Other opinions? I've never submitted a bug to Frame before, but perhaps the time has come.

  • Adobe Indesign CS6(8.0) there is no Paragraph and Character directions

    Hi, I have Adobe Indesign CS6(8.0) Windows 7. Where can I see the Paragraph and Character directions? I followed tutorials on the net but I can't find the paragraph and character directions. It's not like it's grayed, but the 2 options weren't there. Thanks!

    We are using InDesign CS6 version 8.1.
    When I refer to the "old" libraries I am referring to InDesign libraries that were created using InDesign CS2 back in 2006, and "new" libraries are libraries created using InDesign CS6 in 2014.
    I just found out that the library assets in the "new" libraries were created by opening a document and dragging items from the Structure panel onto the Library panel.
    This is why the script was having problems placing the asset on to a document and the root of the problem. This should not have been done.
    I just created a new library and added a library asset by opening a document with pageitems on it and clicking on the New Library button on the Library Panel. I then ran my script and everything worked.
    Sorry for the confusion. There seems to have been some misunderstanding within our team.
    Nevertheless it was a great learning experience.  Thanks for your help.

  • Paragraph and Character styles in Fireworks

    Hi
    i used fireworks for a while, when it was still macromedia product, glade to see all the improvments in CS5.
    i used Photoshop to create a very specific prototyping (including all CSS properties) of my website, but when i come to prototype the rest of the pages i totaly lost control, than i realize Photoshop is not the right tool for prototyping a whole website.
    fireworks shuld be the answer of my prays, as i could read in the articles, in CS5 you can set all properties for text and fireworks will export it as CSS file, than al you have to do is copy and paste code according to your CSS structure, that grate time saver.
    but one thing is really betters me, you cant do really good prototyping if you dont have the ability to create a paragraph and character styles (as you would with InDesign)
    can fireworks create styles in the level of Indesign? and if not, what is the right workflow between Fireworks and Indesign?
    Thanks
    S

    Window > Find and Replace will enable you to change all the instances of a text color in the entire document.
    You can create your own character styles by saving them in the Styles panel. To do this, click on an instance of a style you want to save, and then on the little down arrow at the top right of the Styles panel to open the New Style menu. Select which characteristics you want to save, then click the OK button to close the panel. To apply your custon style, select the object you want to apply it to, then click on your custom style.

  • Unused paragraphs and character styles in the catalogs?

    How could I delete automatically the unused paragraphs and character styles from the catalogs?

    David,
    I downloaded it and placed the file in my plug-in folder, but it doesn't show up under File>Utilities. Is there anything else I should do?
    I am running FM9 with all updates.
    Thanks,
    ls

  • Problem with paragraph style overrides and character formatting

    I've had this problem for a long time, and sometimes it resolves itself, sometimes it doesn't. Finally I'm begging for help.
    I am typesetting academic articles into a journal.  We use endnotes. The endnotes have both italic and regular formatting--italics for book and journal titles, and foreign phrases.
    Sometimes when I place the text, the formatting reverts to whatever it was in Word.  To try to fix that, I've begun stripping the Word formatting from the original document, making everything "Courier New" and just importing it like that.  I figured this would clear a lot of the problems I've had with fiddly formatting issues.
    I was mistaken. 
    Here is what happens:
    When I place the document it comes up in the original Courier New font, with italics and other formatting intact.  If I click "article style" which is the main article paragraph  style format, normally it changes.  but if I right click and select "apply article style" it is more likely to change the paragraph to the proper style, with italics and other formatting still intact.
    But when it gets to endnotes, I'm sort of screwed.
    My endnotes style is a bulletted style, so that I can have the endnote numbers consistent.  but this seems to screw all the style formatting.
    Here is what I do:
    With the cursor in endnote text, I click "bulleted endnote style".  The character format remains the same, with a + beside the style. The endnote number format is different, however.  If I click "clear overrides" it does in fact change to the proper formatting, but it strips any italics or other character in the text.  This is frustrating because many of these endnotes have lots of italicized journal and book titles, and it takes a long time to figure out which ones I need to reitalicize manually.
    I have tried to use the "customize style import>Style mapping" but it has not fixed anything.
    Please help me figure out how to make these transitions more smoothly.  I am open to suggestions both on how to make the changes once the document is placed in the Indesign file, and also making modifications to formats in the native Word file so that I don't have these problems. 
    Thanks
    Dan

    Sorry, that last message wasn't supposed to send (if that's not obvious!). I was writing it and got interrupted.  Damn iphone. 
    I know why there are two numbers.  This is not an issue. What I didn't finish writing was that, the note number before i bullet it is a different font/ format. Again, not a problem.  Here is something interesting, though.  If I delete that original number by placing the cursor in the middle of it (say a between the 4 and 2 of 42) then delete everything by Shift+arrow forward, press delete then delete the rest of the unnecessary characters, THEN apply the style formatting, it works just fine.  Is it something to do with the character codes of those original note numbers? 
    Word drops in so many hidden codes that it screws everything up!

  • Style sheets (paragraph and character) not coping Special Effects

    Couple of questions about ID CS3. I have been really digging into the guts of the application and can appreciate how powerful it is.
    I am having a couple of problems and don't know if it is me or the app.
    1. I can not get a NEW Paragraph or Character Style Sheet to copy the Special Effects (specifically the drop shadow and inner glow).
    I have tried both by using the eye dropper, and the highlighting etc but nothing works. What am i missing?
    2. Also, how can I change the Drop Shadow Distance from the default (.1375in) to something else (ie., .05)? Same thing for the Angle. I also want to change the Distance and Angle for the Inner Glow. I looked in Preferences but could not fine them there. I am afraid to ask when do I use them for Object and when for the text....I will figure that one out by playing with it.
    3. And finally, how do I isolate moving an object. Even though the boundary boxes show up that I have a specific object selected, when I put the mouse in there to move it, some object underneath it moves. This is probably some technique I am not doing correctly.
    I absolutely love this application and will appreciate any help in the above questions.
    Thanks,
    bob

    Hmmmmmm not too sure what you are saying here (faking my way through applying it to a paragraph and anchored objects).
    Lets say I have the following:
    Chef Salad
    We use the freshest lettuce, tomatoes..... bla bla bla
    I wanted the name of the menu item (Chef Salad) to be 30 pt, Times New Roman, Red text (no container fill), drop shadow.
    Lets also say I want the description (the Bla bla bla) to be 15 pt, Arial, Green text, and small drop shadow.
    From what I understood you to say(write), I would have to make a Object style for Chef Salad (and I guess another Object style for the description)given that I want to use special effects.
    What has been one of the more confusing things about ID (and believe me, I have been watching hours and hours of Lynda.com, Youtube, and reading a book/DVD on the subject) is when to use paragraph styles, Character styles and now Object styles.
    Changing the parameters on these styles is not (to me) the difficulty. When and where to use a particular style is.
    I don't want to keep bugging you so if you have someplace that really gets into the proper place and time to use these styles I will go there (if I haven't been there already).
    However, if it is pretty easy for you to elaborate some more, that too would be greatly appreciate.
    Thanks Bob
    PS Nice looking web site you have.... I am up there viewing it now.

  • Unable to save paragraph and character styles

    I noticed an issue popping up for me in CS6 yesterday. I thought it was originally because of Fireworks saved PSD but an effort re-create the file from scratch in PS I'm coming across the same issue. In PS when I have a large amount of text layers and create a paragraph or character style, when I have ANY layer/group in my document locked I'm unable to save any paragraph or layer styles. Regardless of the layer or group being locked and regardless of what layer is highlighted I'm unable to save styles / any settings / name etc. The error I get for character styles for example is:
    "Could not complete the Modify Named Character Style command because a specified layer is locked."
    I did notice that in the Fireworks created PSD that without any layer even being locked I'd still get an error. It may be that this other document got some bad mojo from the Fireworks PSD. When creating a test doc and only creating a couple text layers and a bunch of empty groups and layers I'm unable to reproduce this. It appears to happen to me when I have a slew of text layers.
    Has anyone else experienced this and figured out a more solid workaround?

    If you want to add the styles to an already created document:
    1) Create you Character style containing only the character color
    2) Find and Replace, searching for text with red color and replace formatting with the new character style. (Don't type anything in the text part of the Find and Replace dialog)
    3) Create and apply your paragraph style to all. The text with the Character Style applied will stay red.

  • Problem with paragraph and character style

    Recently I have noticed that when I alter a paragraph or character style that the text won't change to the changes I performed.
    It doesn't matter whether it's just the preview mode or when I clicked "OK"- no changes will be performed whether it be typeface or size.
    Does anyone know what can be wrong?

    My bet is that you haven't got a clear understanding of the difference between character styles and paragraph styles, and that you are using the former incorrectly.
    Paragraph styles include basic font formatting information that is applied to all text in a paragraph UNLESS that text also has either a character style or a local format override (select the text and change something) applied. The formatting heirarchy works with paragraph style at the bottom, character styles trump formatting applied in the paragraph style, and local formatting trums everything else.
    Select the text in question. Look in the the Paragraph Style field in the Control panel, or open the Paragraph Styles panel to see what is applied. If there is a plus sign next to the name local formatting overrides have been applied (hold the Alt or Opt key and click the style name to remove them), but character styles are not considered overrides, so if there is no plus sign, check the Character Style field in the control panel or ope the Character Styles panel to check if any character styles are also applied.

Maybe you are looking for