Colour below paragraph text in inline graphic way

Hellow,
I am doing children story book in indesign cs5. Every story has  title, picture, story, questions and some other fun matter.
Story flows in two and two and half pages. Below STORY MATTER ONLY we want to put colour which flows one frame to another or one page to another.
I am doing full INLINE graphic i.e. every thing in one frame  flowing automatically if I reduce or add matter in between.
Can it possible colour patch below story matter  adjusted atuomaticelly if matter reduced or added and flow from one frame to another.
Can we define in paragraph style colour below paragraph.

sadhale wrote:
Dear Peter Spier
Yes, I tried paragraph rule also. But It dosent work because if paragraph ends with one or two words, colour patch dosent stretch to right edge.
Then colour dosent go little beyond matter.
I can use Anchor object, but I need to adjust anchorde patch as per matter.
You will get better idea from the image below
Have you considered applying the background color as a filled rectangle on the master page, and creating the white separators around graphics, and activities items as anchored objects with white fill and/or borders?
HTH
Regards,
Peter
Peter Gold
KnowHow ProServices

Similar Messages

  • Selecting text under inline graphic

    I need to edit text under an inline graphic. I am not able to select / edit the text.
    I've tried to "send to back" (the graphic), but it still says above the text.
    I'm doing this in order to get round corners around a table.
    If you know how to drill down and select the text, I would be much obliged.
    I'm using CS4 ME version.
    Thanks for any and all assistance.

    There is no layering with an in-line graphic (what InDesign now calls Anchored Object). The object is inserted in the text flow, and since text flows as it is entered, an in-line object will be cover text that is before it in the flow (ie. before the insertion point) and  text after the insertion point will be superimposed on top of it. That doesn't mean that you can directly select that text that appears to be "on top" of the object though. To select that text you will need to position your cursor in text that is not covered by the graphic and use the arrow keys to navigate to the point in the text that you want to edit. (alternately you could just use find/change).
    You should still post a screen shot of what you're doing because there may be more to it than this. For instance, if your in-line graphic is a table that is already in a text frame as opposed to simply inserted into the text, you could be unnecessarily complicating things.

  • TCS2 Inline graphics hidden by conditional text cause unwanted carriage returns

    I have some FrameMaker documents where there are some small icons in the text.  Their anchored frames are set to be "at insertion point" in FrameMaker. They work fine normally, but when the icons are hidden by conditional text, they cause unwanted carriage returns in the RoboHelp output. The text is split into different paragraphs in the middle of the sentence.
    For example, this is the FrameMaker input:
    And this is the RoboHelp (WebHelp) output:
    I notice that if I manually edit a topic in the RoboHelp editor, I can manually apply a conditional tag to an inline graphic without causing a line break.
    So, I'm wondering if there's a way to avoid this when using linked FrameMaker documents.
    Thanks,
       Philip.

    Your logs are generated automatically by your system as it runs - there is nothing further that you need to do. They are ordinary text files, so you can display them on a terminal using any of the usual tools - cat, less, grep, etc.

  • Post inline graphics into the text. How?

    Hello my friends!
    1. I want to know how can I post graphics into text like in this manual http://www.adobe.com/designcenter/indesign/articles/indcs2at_anchoredob.html
    What commands I should to use? Could you give me an example of code?
    2. Also, how can I make the text wrapped around the posted graphics?
    I use CS3.
    Thank you!

    From the Javascript CS3 examples "Text" -> "AnchoredFrame.jsx":
    //AnchoredFrame.jsx
    //An InDesign CS3 JavaScript
    //Shows how to create an anchored frame.
    main();
    function main(){
        mySetup();
        mySnippet();
    //Setup Help Text
    //Setup help text goes here.
    //end setup help text
    function mySetup(){
        var myDocument = app.documents.add();
        myDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.points;
        myDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.points;
        var myPage = myDocument.pages.item(0);
        var myTextFrame = myPage.textFrames.add({geometricBounds:myGetBounds(myDocument, myPage), contents:TextFrameContents.placeholderText});
        myTextFrame.texts.item(0).leftIndent = 72;
        function myGetBounds(myDocument, myPage){
        var myPageWidth = myDocument.documentPreferences.pageWidth;
        var myPageHeight = myDocument.documentPreferences.pageHeight
        if(myPage.side == PageSideOptions.leftHand){
            var myX2 = myPage.marginPreferences.left;
            var myX1 = myPage.marginPreferences.right;
        else{
            var myX1 = myPage.marginPreferences.left;
            var myX2 = myPage.marginPreferences.right;
        var myY1 = myPage.marginPreferences.top;
        var myX2 = myPageWidth - myX2;
        var myY2 = myPageHeight - myPage.marginPreferences.bottom;
        return [myY1, myX1, myY2, myX2];
    } //end setup
    //Snippet Help Text
    //Snippet help text goes here.
    //end snippet help text
    function mySnippet(){
        var myDocument = app.documents.item(0);
        var myPage = myDocument.pages.item(0);
        var myTextFrame = myPage.textFrames.item(0);
        var myInlineFrame = myTextFrame.paragraphs.item(0).insertionPoints.item(0).textFrames.add();
        //Recompose the text to make sure that getting the
        //geometric bounds of the inline graphic will work.
        myTextFrame.texts.item(0).recompose;
        //Get the geometric bounds of the inline frame.
        var myBounds = myInlineFrame.geometricBounds;
        //Set the width and height of the inline frame. In this example, we'll
        //make the frame 24 points tall by 72 points wide.
        myInlineFrame.geometricBounds = [myBounds[0], myBounds[1], myBounds[0]+24, myBounds[1]+72];
        myInlineFrame.contents = "This is an inline frame.";
        var myAnchoredFrame = myTextFrame.paragraphs.item(1).insertionPoints.item(0).textFrames.add();
        //Recompose the text to make sure that getting the
        //geometric bounds of the inline graphic will work.
        myTextFrame.texts.item(0).recompose;
        //Get the geometric bounds of the inline frame.
        var myBounds = myAnchoredFrame.geometricBounds;
        //Set the width and height of the inline frame. In this example, we'll
        //make the frame 24 points tall by 72 points wide.
        myAnchoredFrame.geometricBounds = [myBounds[0], myBounds[1], myBounds[0]+24, myBounds[1]+72];
        myAnchoredFrame.contents = "This is an anchored frame.";
        with(myAnchoredFrame.anchoredObjectSettings){
            anchoredPosition = AnchorPosition.anchored;
            anchorPoint = AnchorPoint.topLeftAnchor;
            horizontalReferencePoint = AnchoredRelativeTo.anchorLocation;
            horizontalAlignment = HorizontalAlignment.leftAlign;
            anchorXoffset = 72;
            verticalReferencePoint = VerticallyRelativeTo.lineBaseline;
            anchorYoffset = 24;
            anchorSpaceAbove = 24;
    } //end snippet

  • Text converted to graphics when using shapes from iWork

    I'm in the process of constructing a web site and want to have a site directory along the right side of each page. I started off using square text boxes and making room for the directory by using iWeb's text wrap, adding an inline transparent square to a conveniently located paragraph and resizing it as necessary. However, I found that sometimes depending on which object was selected when I uploaded the site the square seemed to cover up my link box - possibly even when it was sent to the back.
    Then I learned that I could use shapes from Pages and edit them in iWeb, so I created a polygon with an opening for the site directory, and used it for my text box on each page. That worked great in that the directory was no longer behind the text box. However when I uploaded the web site, I eventually realized that my text boxes were all converted to graphics.
    As a test I created a page identical to an existing page with a square used as a text box, and it reverts to being text.
    Here's my web site if anyone wants to check it out - look at the main page and also at the Test Page reachable from the directory on the right.
    http://web.mac.com/peterynh
    A couple questions:
    1. Does this mean that shapes created using the drawing tool in Pages that are made editable and then modified in iWeb will always produce graphics when used as text boxes? Is there any way around this?
    2. Is the same a problem if shapes are created in other programs (e.g. Illustrator)?
    3. Is there any other way I haven't thought of to create the same basic design which would preserve the text boxes as text?
    Thanks for any help!,
    Peter
    PowerMac Dual G5, 2.3 GHz   Mac OS X (10.4.5)  

    James - Thanks for the suggestions and ideas.
    You know, I think it's possible to put a textbox
    inside another text box......and in that fashion
    still be able to wrap text in the main text box
    around the interior text box. However, I am not sure
    whether that will necessarily make all the text
    converted into an image.
    I tried that with interesting results. I couldn't resize the text box except through the Inspector for some reason. Once I pasted in the text, the box moved down below the site directory box to where there was room for a full-width text box; so it didn't accomplish the purpose.
    About using iWeb's built-in text-wrap through adding an inline graphic:
    This would work too...just make sure to select your
    text box and click on the "Backward" button in order
    to make sure that your main text box with the
    transparent "placeholder" image is behind your
    directory box that you want displayed. The same
    thing can be achieved by selecting your directory box
    and clicking "forward" so that it becomes the
    frontmost element.
    That makes sense. I tried that originally; maybe I wasn't careful about sending things to the front/back. The biggest problem is that if paragraphs don't line up with the site directory box, or if I edit text on the page, the text doesn't wrap very neatly around where I want it to. Otherwise this would be a good solution. I may end up doing this unless a better idea materializes, if such is even possible ...
    Thanks for the suggestions. I'll be interested to see if any better ideas appear; if none do in the next couple days I may just declare the problem solved as well as possible until iWeb 2.0 appears.
    Peter
    PowerMac Dual G5, 2.3 GHz   Mac OS X (10.4.5)  

  • Boxed text as inline extending past margins?

    Hi,
    I actually have a few questions. I have a boxed caption with cornered edges. Once I set the box to cornered edges, my ability to change the inset spacing individually goes away. I want the left, right and top margins to be .15in, but the bottom to be smaller, about .12 in. Anyway to geet around this?
    And, with this same type box, the box extends beyond the margins of the text that I want to place it in. Is there anyway to do inline graphics that extend beyond the left margin.
    And, is there a way to set up a outlined box with rounded edges that increases/decreases in size as I flow in text. I'm thinking of maybe making it a table, but maybe there's a better way?
    Thanks in advance for any resources you can point me to.

    You can't adjust the frame insets, but you can increase the paragraph indents to increase the left and right indents overall while leaving the top and bottom alone.
    The only thing that can go inline in text and extend beyond the margins is a table. You could add a one-cell table in a paragraph of its own (center aligned if you want it to extend beyond both margins) and paste your frame into that. Out of the box, there is no way to auto-fit a frame to text content as you type or place the text, but I believe Typefi has a plugin...

  • I need to edit an inline graphic

    I have some small graphic ICONs that are placed next to (Left of) some paragraphs of text.  Since these ICONs need to move up and down with the text I was moving them manually whenever I edited a paragraph.  Then someone showed me how I could select them.  Cut them to the pasteboard.  Then paste them as the first character in the paragraph and edit the attributes such that they appeared to the left of the paragraph but then whenever I edited the text, these icons would move up and down with it.
    O.K.  So now I have a paragraph that has two ICONS next to it.  The customer has requested that I swap their positions.  I only have ONE inline graphic ICON showing in the story editor because when I placed these I cut them both to the pasteboard and then pasted them as an inline graphic into the story.
    My question is:  Do I have to delete the inline graphic.  Go and get both ICONs again from my library of artwork and put them on the art in the transposed order and then cut them again to the pasteboard and re-paste into my story?  If so then I am not a happy camper.  Is there a way to UNDO the conversion to an inline graphic and somehow get them back to the pasteboard where I can paste them as normal ICONs on the artwork.  Then make my changes and then re-cut them to the pasteboard and paste back into my text story?
    Anybody have any light they can shed on this?
    I'll probably do the first scenario for the jobs at hand but it seems a long way around.  Interested if there is a better way.  Thanks!
    Randy

    It sounds like you had the icons grouped when you pasted them into the story so they are a single anchored object. Use the selection tool (black arrow) and click on the icons. Cut. Paste. Ungroup. Now copy and paste each icon as a separate object into your story.

  • XML inline graphic

    Hi Guys,
    I really need some help with this. A deadline is fast approaching and I feel like I am going in circles with this.
    I have an xml file with content from a database. Everything is coming through ok except for the inline graphics. They are coming through as text boxes that are as small as they can be (not the original size or even the size of the content - see image below). See the red plus sign? My first clue since it's supposed to be a graphic box.
    When that box is expanded to reveal the content, it actually displays the XML coding. See the version declaration? Weird.
    And this below is how the image should look on import. This is just done from the stylesheets by hand.
    I have also tried using a DTD file with only this in it...
    I got that from one of the tutorial files in Lynda.com. Which I have viewed basically the entire course a few times and I am still missing something. Its a flowbased document. Does anyone have any advice or input? I have pored over the internet and I am not really finding anything that is helping.
    Im not sure what I'm doing wrong. ANY help would be greatly appreciated!!
    - Sarah

    I should have also provided the actual XML. The yellow line is the tag for the image that i am trying to import. Also tried with a jpeg file and with a closing tag instead of self-close.
    Im using map tags to styles and this particular tag does not have a style associated with it. But I do want to apply a paragraph style to the actual line it is on.

  • BUG: Changing text colours within a text block: Keyboard shortcuts problem (Photoshop CS5)

    In earlier versions of Photoshop, I could double click a Paragraph Text to edit it, then select individual words and change their colours using the Ctrl+Backspace and Alt-Backspace keyboard shortcuts (to change them to either Background or Foreground colours).
    In PhotoShop CS5, Alt+Backspace is OK, but Ctrl-Backspace deletes the highlighted word! Not good. I believe this is a bug, can it be fixed to revert to the old behaviour?
    (Photoshop CS5 Extended x64 on Windows 7 x64)

    I fully understand what you're saying, and while I'm all for compatibility, user interface change cannot be accomplished without, well, change.
    Imagine, for example, that thousands of people could have reported that they couldn't delete the prior word with Ctrl-Backspace while using the T tool in Photoshop, while they could with every other application on their systems.  Imagine that none of the users like you reported that they were happy with things the way they already are.
    Perhaps the best approach in a situation like this would have been for Adobe to add a configuration option somewhere to allow individual users to make the choice.  But EVEN THEN there's a push from the Marketing types to simplify the number of choices given to customers, probably because doing so reduces support costs (imagine, for example, someone brainlessly setting it to your flavor of Ctrl-Backspace, then calling support to complain that they can't delete the prior word as they have always been able to do).  There are a lot of requests on this forum that read like "I must have changed a setting somewhere, but I'll be darned if I can find it."
    Microsoft and Adobe have both moved lately in this direction (reducing choices and configurability), reportedly to "reduce the cognitive load" on presumably ever less intelligent users, with ill effects in many cases.  Unfortunately, "you can have it any way you like so long as it's our way" seems to be the way of the future.
    -Noel

  • Bullets as inline graphic

    I am trying to use an inline graphic as a bullet but I need
    to be able to change the colour. Is it possible to do this or is
    there another way to place a bullet and have it able to be altered
    when needed.

    > I am trying to use an inline graphic as a bullet but I
    need to be able to
    > change the colour.
    If you use a symbol as the graphic, you can edit the symbol
    and all of the
    bullets will change color.
    Judy Arndt

  • Place inline graphic?

    Hi all,
    I have ExtendScript code that places a graphic inline in a text frame. It does this by placing the graphic on the page, selecting it, cutting it, then selecting some placeholder text in the text frame, and pasting. This replaces the placeholder text with the graphic.
    This might not be the most elegant way to do this, but it's been working fine.
    Problem: now I need to move this code to InDesign Server. InDesign Server lacks select, copy, and paste methods (since there's no UI).
    I've been trying to find an alternate way of doing this without success. I don't have the option to import the text stream as XML.
    Any suggestions?
    Thanks,
    Chuck

    I forgot to mention: in many cases, the "graphic" that must be placed is a snippet. NOW is it complicated enough for you?
    -Chuck

  • Whenever i start my macbook pro the screen remains gray with the apple symbol and the circle timer below. The screen stays this way even if i leave it for hours.

    When i turn on my macbook a box appears telling me i need to restart my computer (in different languages) and in order to do so i have to press on the off button for a lil while. Even after doing this the same box appears and it never restarts correctly. This box appears every single time. I rarely turn my computer off. I just place it on sleep mode and restarts it only when i get prompted to. I brought it to genius and they couldnt figure out what the problem is so i was told it needed to be shipped to get fixed. I didnt have anything backed up. All i want saved are the pictures because i went to 2 events where i was the assigned photographer and i didnt get to save it to an external memory. Genius said that when shipped i cant give instructions like make sure to save the pictures and if they are unable to, call me if they should go on with the process. I was wishful thinking that to fix the problem they might not even have to touch the pictures memory part. I brought my MBP back home hoping it will miraculously starts and id be able to back it up but now all it does when i turn it on is the screen remains gray with the apple symbol and the circle timer below. The screen stays this way even if i leave it on for hours. Please help me fix this!!! cant i really specify to the technicians at apple  to please make sure not to erase the pictures? Is there no other way to turn on my mac? I only need it to work ones.

    There is no limit to the number of times you can re-install Office on the same computer.
    You can activate by telephone:
    The last paragraph is the relevant bit

  • Is it possible to pull out a different text colour link in text?

    Is it possible to set two different colours for text, for example the body text is black and i'd like to highlight a link in the text lets say red and create a ur link for this text.
    The only way this seems to work is by creating a separate text div for the link, however this seems to cause alignment issues? I cannot seem to highlight this text from the div and change the colour only for the link.
    Any hep appreciated.

    As of now you will need to have text in different divs to have different styles and group them together .
    There is a way where you can hack this ,style your text externally containing spans with internal styles and paste this as value of the 'text' property of the text object in the _edge.js file

  • Add a bullet correctly below the text in the previous line.

    Hi All,
    I know how to add bullets in a word doc, but I dont know how to set the range.listformat.leftindent property to match this particular reuirement i.e
    1.1.1.   some text 
               (add a bullet below s in some)
    normal text
    (add a bullet below n) 
    i.e check where start of the text is , in the previous line add a bullet right below this text dynamically

    Hi Apoorva,
    I'm not quite sure what your uiquirement is, seems that you want to insert a sub-level bullet below the previous paragraph. You can use this method to create a sub-level bullet in the word document.
    Range.ListFormat.ListIndent
    For example:
    Application app = new Application();
    app.Visible = true;
    Document doc = app.Documents.Add();
    Paragraph para= doc.Content.Paragraphs.Add();
    Range rng = para.Range;
    para = doc.Content.Paragraphs.Add();
    para.Range.ListFormat.ApplyBulletDefault();
    para.Range.InsertBefore("test1");
    para = doc.Content.Paragraphs.Add();
    para.Range.ListFormat.ApplyBulletDefault();
    //para.Range.ListFormat.ListOutdent();
    para.Range.ListFormat.ListIndent();
    para.Range.InsertBefore("test2");
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Text as inline block?

    I'm having a bit of a problem getting my text to behave the way I want. In Straight HTML (CSS) I can create a inline block div, place text in it and the text stays in the div, returns when it needs to at the end of the DIV, and expands the bottom/height of the div to fit text.
    I can't figure out how a to get that same effect in animate. Dose anyone know how?
    Can you do this with settings or do I need to code the Css into the div?

    Thank you Elaine (I thought i might be forgotten in the pile of forum questions), that did work! However there is a additional problem (thought one answer would fix both). the text is being fed into a text field that is in a symbol. The text dose just what you said it would and expands downward as needed. How can I get the symbol to do the same based on the text?
    here is the example of the page.
    here is a sample of my symbol (incase you need to get an idea on how that is built)
    Thanks again

Maybe you are looking for