Placing MS Word inline images onto the Baseline Grid

Products:
InDesign CC
MS Word 2013
Hi everyone.
I'm placing a MS Word docx (default style formatting, images pasted inline with the text, each on a separate line) into an InDesign document with a baseline grid.
The document places without any difficulty, except that the images are piled on top of each other. I can see tht the image is being placed on its own line on the baseline grid, so technically it's being positioned properly, but I need the text to Jump Object or  Wrap Around Bounding Box. When I change any image from No Text Wrap to one of the aforementioned, nothing happens. The bottom portion of the image remains inserted and aligned to the baseline grid.
How do I get the text to Jump Object or Wrap Around Bounding Box when using the baseline grid?
Thanks

Ah, I seem to have found a solution to the problem. Not sure if it is the best or most efficient, but it seems to work:
1. Create new paragraph style.
2. Set Basic Character Format Leading to Auto.
Then, rather than select the image as I was doing, position the cursor in the respective line hosting the inline image, and apply the new paragraph style.
That caused the text to have the Jump Object appearance.

Similar Messages

  • I made a video in imovie and saved it, now i want to carry on making it from where i left but every time i try to add an image onto the end it just goes tot he wrong part of the movie, how do i just add it onto the end?

    I made a video in imovie and saved it, now i want to carry on making it from where i left but every time i try to add an image onto the end it just goes tot he wrong part of the movie, how do i just add it onto the end?

    Have you seen my User Tipp here
    "Movie Magic" with Stills and Dissolve
    When you 'prep' your stills in any 'picture app', you can do a lot of marvel by simply applying dissolves.
    In your case, I would create a white document (in Pixelmator, Keynote, Photshop, online at pixlr.com, whatever ...) and another with your logo (and further more ones with additional logos). Drag the jpgs into your iMovie Project and apply dissolves  - tadahh! - logos appear on white.

  • Adjust height of Inline graphic against the baseline

    In CS2 I was adjusting the height of inline graphics on the baseline by calling:<br /><br />     InterfacePtr<IGeometry> geom(UIDRef(db, inlineUID), UseDefaultIID());<br />     if (geom->SetPathBoundingBox(newBBox, IGeometry::kResizeItemAndChildren) != kSuccess)<br /><br />This no longer works in CS3.<br /><br />I've also tried using:<br /><br />Utils<Facade::IGeometryFacade>()->SetItemsBounds(uids, Transform::CoordinateSpace::Parent(), Geometry::PathBounds(), rects);<br /><br />but that doesn't work either.<br /><br />Anyone know how to do this?<br /><br />Walter

    Can any one tell how to replace
    CS2 code
    PageItemUtils::SetItemBounds( iiItemGeometry, newBox, kTrue);
    for CS3 version during porting....

  • View the baseline grid

    The keyboard shortcut for viewing the baseline grid does not work in the CS5 Mac version. I can see the baseline grid by going through the menus but it would be so convenient just to press some keys as I am supposed to be able to. This must be a bug. I can view the document grid easily enought, either by going through menus or by using the keyboard shortcut (command + ').

    When I type an apostrophe I do get an apostrophe. I have tried changing my language and keyboard settings to American - that really ought to work with InDesign but it still doesn't work. As I said, I can view the document grid easily enough. The only difference with the baseline grid is that you have to hold down the alt key as well. Why that should disrupt everything I don't know.

  • Getting iWeb Blog images onto the content feed

    Images in my blog posts are not making it onto the rss content feed. What am I doing wrong?
    Feed is: feed://rss.mac.com/redgen/iWeb/Knowledge%20Culture/Blog/rss.xml

    When you start a new blog entry page, the stock photo that you see is actually a special placeholder box for images. This placeholder box is linked to your main blog summary page and is responsible for making the preview image on the blog summary page. To replace the stock photo, you need to drop your own image into the placeholder image box and it will automatically replace the stock image. What you don't want to do is to delete the placeholder box by deleting the stock image. You have to replace the stock image by dropping a new image in.
    If you have deleted the placeholder image box, the only way to get it back is to start over on a new blog entry page. This will also ensure that your preview image makes it to the main blog summary pages as well as your RSS feed.

  • How can I incorporate DreamWeaver to upload all my images onto the website template in filezilla and make changes to the website template?

    I have all my images and website template in filezilla under hostgator as the web server, and how can I incorporate DreamWeaver so I can make changes to the website?

    You dont have to put everything onto your webserver first. You can start with DW locally (with all files stored on your computer) before uploading a completed site to your server.
    You can follow these instructions to define/ setup your site locally in DW: Defining a site in Dreamweaver
    And check out this tutorial to create your website: Creating your first website – Part 1: Setting up your site and project files | Adobe Developer Connection
    Then follow this to sync your files to your webserver: Adobe Dreamweaver * Getting and putting files to and from your server
    Good luck.

  • Regd : upload of image onto the dialog screen

    hi,
    I have developed one application in that once the image has been captured on the presentation server..i need to pass the captured image which is in JPG format on to the screen which i have designed......please help me in resolving this issue....
    i want code such a way that it has to accept the URL local to  aperticular system.
    based on the selected image it has to display the image...
    points will be rewarded.

    Hi Vinutha,
    Have a look at this sample program which has got the SAP standard demo program : SAP_PICTURE_DEMO
    PROGRAM y_sap_picture_demo.
    TYPE-POOLS : cndp.
    selection-screen begin of block b1.
    parameters : path type rlgrap-filename.
    selection-screen end of block b1.
    SET SCREEN 200.
    DATA
    DATA function LIKE sy-ucomm.         " OK-Code field in screen 200
    DATA url  TYPE cndp_url.                " URL-field in screen 200
    DATA url2 TYPE cndp_url.               " URL-field in screen 200
    DATA picture_control_1 TYPE REF TO cl_gui_picture.
    DATA container_1 TYPE REF TO cl_gui_custom_container.
    DATA event_tab TYPE cntl_simple_events.
    DATA event_tab_line TYPE cntl_simple_event.
    DATA return TYPE i.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR path.
    PERFORM f1000_file_select.
    PBO
    before_output
    MODULE before_output OUTPUT.
      SET PF-STATUS 'MAIN0001'.
      IF picture_control_1 IS INITIAL.
    Create controls
        CREATE OBJECT container_1
          EXPORTING container_name = 'PICTURE_CONTROL_1'.
        CREATE OBJECT picture_control_1 EXPORTING parent = container_1.
    new async implementation since 4.6C
    CALL FUNCTION 'DP_PUBLISH_WWW_URL'
      EXPORTING
        OBJID                       = 'ZSATYA.GIF'
        LIFETIME                    = cndp_lifetime_transaction
      IMPORTING
        URL                         = url
      EXCEPTIONS
        OTHERS                      = 1.
    concatenate 'file://' path into url.
          CALL METHOD PICTURE_CONTROL_1->LOAD_PICTURE_FROM_URL
           exporting url = url.
      ENDIF.
    ENDMODULE.                    "before_output OUTPUT
    PAI
    after_input
    MODULE after_input INPUT.
      CASE function.
    At the end of the program destroy the control
        WHEN 'BACK'.
          CALL METHOD container_1->free.
          LEAVE TO SCREEN 0.
    Clear the picture
        WHEN 'CLEAR'.
          CALL METHOD picture_control_1->clear_picture.
    Load a new picture
        WHEN space.
          CALL METHOD picture_control_1->load_picture_from_url
            EXPORTING
              url    = url
            IMPORTING
              RESULT = return.
          CALL METHOD cl_gui_cfw=>flush.
          IF return = 0.
            url = text-000.
          ENDIF.
      ENDCASE.
      CLEAR function.
    ENDMODULE.                    "after_input INPUT
    *&      Form  f1000_file_select
          text
    FORM f1000_file_select .
      DATA: li_file_table           TYPE filetable,
            wa_file_table           TYPE file_table,
            lws_rc                  TYPE i,
            lws_user_action         TYPE i.
      DATA : lc_title TYPE string.
      CONSTANTS :lc_ext TYPE string VALUE '.',
                 lc_directory TYPE string VALUE 'C:\'.
      CLEAR: path.
      REFRESH: li_file_table.
      lc_title = text-049.
    *--  Class to select the file.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          window_title         = lc_title
          default_extension    = lc_ext
          initial_directory    = lc_directory
        CHANGING
          file_table           = li_file_table
          rc                   = lws_rc
          user_action          = lws_user_action
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          not_supported_by_gui = 3
          OTHERS               = 4.
      IF sy-subrc NE 0.
        MESSAGE e001(zdemet) WITH text-002.
      ENDIF.
      READ TABLE li_file_table INDEX 1 INTO wa_file_table.
      IF sy-subrc = 0.
        path = wa_file_table-filename.
      ENDIF.
    endform.                    " f1000_file_select
    -SatyaPriya

  • HT201335 How to mirror mac image onto the HDTV via Apple TV (already upgrade to Mountain Lion)?

    Please help on this, many thanks!

    Ensure all devices are on the same network.  On your mac go to settings-display-look toward the bottom you should see an airplay menu select your apple tv.
    AirPlay Mirroring
    Requires a second-generation Apple TV or later. Supports the following Mac models:
    iMac (Mid 2011 or newer)
    Mac mini (Mid 2011 or newer)
    MacBook Air (Mid 2011 or newer)
    MacBook Pro (Early 2011 or newer)

  • In the paragraph after a conditional build tag, an inline image gets wrapped in a div tag

    Hi,
    TCS5, so FM 12 and RH11. I have successfully applied some conditional build tags by turning off the apply conditional build tag setting and using the Conditional Build Expression in the WebHelp properties instead.
    In RoboHelp, everything looks correct.  I generate WebHelp and suddenly, a div tag is wrapped around the inline image in the paragraph that followed the text marked conditional.
    This did not happen with TCS 4 (FM11, RH10).  I am not sure why this div tag is applied only when I generate the help.  Any thoughts on what to check?
    Lauren

    Hi lauren,
    I tried to replicate the above mentioned issue, but did not get the <div> around the image in Webhelp output. Would it be possible for you to provide more information on this:
    At what point does the <div> start appearing around the image, as soon as the CBT expression is applied?
    If yes, what is the expression?
    What happens when expression is set to None again and individual CBT is under application
    Is there a spacing or the CBT text just follows the inline image?
    Please send us a sample file for the same, if possible. Thanks!
    Amit

  • How do I prevent Premiere from placing the scratch disk onto the 'same as project" folder

    I start a project by resetting the default scratch disc settings from “same as project” (which is on my “G” drive) to another hard drive where I have always stored defaults on CS3 (the “D” drive). I never had to redo my scratch disks when I created a new project in CS3. Now I need to redo them every time. If I open an older project in CS5 it automatically places all scratch disk files onto the G drive. How do I prevent Premiere from placing all scratch disk information onto the G drive before I open an older file? By the time I get around to changing the location, Premiere has already begun saving scratch disk information on the wrong disk.
    However I have another related problem. When I import an older project to nest it in a new project, the scratch discs mysteriously change back from the D drive where I set it up to the “G” drive. I finally discovered this when I reopen the project and all previews disappeared and it had defaulted back to the G drive.

    Thanks. Now I know that anytime I import a CS3 project file into a CS5 project, that it will change the whole project scratch disk settings to the default without warning. 
    One wouldn’t think that just one imported file would change the whole overall project file (out of many imported files…not project files that do not); it is odd that Premiere changes the setting of the new overall Cs5 project without warning.

  • Working with inline images: How to get them to the edge of the page.

    I'm making an epub and unfortunatly that means inline images. The thing is i want the images to go right to the very edge of the pages and nto have like a 2cm gap from all the edges. I have tried moving the margins however thhe image still remains firmly in the center of the page. Can I change this as it is really annoying me? Thanks .

    I tried and found that you have to in Page Setup choose a paper size that is borderless. in view menu click on Show Layout. You will get a grey border on the"paper". That is the part you printer can write on. I thin this could be the problem. If you have a borderless version choose it. I don't do ePub so I can't check if this the solution for you.
    Borderless version                                                                                            Border

  • How an image can be loaded onto the Canvas.

    I do not know how should i proceed to load an image onto the canvas at runtime?
    If possible give me the source code along with the instructions to be followed for applying that source code.

    You can use java.awt.Toolkit.getImage, or better yet javax.imageio.ImageIO.read if you're using a modern JDK (1.4 and above).
    Then when you have the Image object, use java.awt.Graphics.drawImage to display it. You'd do that in the Canvas's paint method.
    Read the docs for more info.

  • How do you add an image in the text area of a page/section?

    This has been driving me nuts!
    When I try to add an image to a page, it will ONLY go into the header.  If I try to drag the image onto the page where the text is, it gets hidden behind a layer.
    I've looked at the menu choices and I don't seem to be allowed to bring the image to the front.  Nor does clicking in the text area and then trying to paste or insert the image - it still goes up in the header.
    What is the secret to placing images along with your text on a page in the iBooks Author program?
    Thanks!

    Wow, Apple has really constrained the "box" that we have to fit our books into!
    I was hoping to take some iPad screenshots and put them inline with the text.  Since they are portrait iPad screenshots, the book that I'd like to create looks much better (and makes more sense) in portrait mode.
    Apple has released this awesome tool, yet they seem to have restricted the author from using any creativity at all.

  • Dragging One Image Onto Another

    The book, Photoshop Layers, by Kloskowski, starts the subject of Masks on p. 94 by telling the reader to open two images, then use the Move tool to drag one onto the other so that they are in the same document.
    A picture of what that should look like shows, in the Layers palette, image A in the Background layer, and image B residing in Layer 1. Each thumbnail shows an entire image (not a checkered thumbnail with a small image within it).
    As the title indicates, the book is designed for Photoshop users. I use Elements 6 but have been able to perform most of the tutorials; however, the above instructions baffle me. I cannot fathom what he is talking about.
    In Elements 6, How can I drag one image onto the other? I start out with two images in the bin - and the move tool does not work on bin images. I have tried various workarounds but the results do not look like the Layers palette picture he shows. For instance: File/New/Blank File does not work.
    As to my level of knowledge: I am very comfortable with layers of all sorts and understand/use them. I am also familiar with Elements. So, if you will, assume I am not a neophyte, even though my question may seem very basic.

    Normally this won't matter, but there are situations where it does change what you bring in; like rasterizing an EPS file, for instance. In full PS, it creates smart objects from the files you use the command on.
    A text layer, for example, is no longer editable after being placed. But for most images, I suppose it would be okay.

  • Change the height of a paragraph break while using a 12pt baseline grid

    Hey all,
    I am laying out a newsletter – and I want to tighten up the layout a bit. Currently the body text is 9pt on 12pt leading as the baseline grid is 12pt. I think the gap between the paragraphs is too much, and I want to reduce the height.(This will save me some space!)  (See image)
    One solution although it's not really practical is to manually change the leading of the paragraph break to 4pt which reduces the gap to the desired size. But this is a longish newsletter and that would be a nightmare... (Hopefully this example gives you an idea of what I am looking to do)
    Another thing I tried was to take out the paragraph breaks and put a 1mm space after each paragraph. This works, until there is a different amount of paragraphs in a column causing the overall column lengths to be different heights. Not ideal.
    I don't really know what to call what I am looking for – so if anyone has any ideas for this, that would be great.
    Thanks in advance,
    Will

    Yeah so I do usually use Space Before or Space After values – but on a baseline grid I am getting uneven columns if I have say 3 paragraphs in one column, and 4 in the other.
    But that's a good point – expecting the baseline grid to absorb the difference in paragraph spacings isn't realistic. I guess I will just have to enjoy large gaps between paragraphs!
    Thanks for the quick reply though Peter!

Maybe you are looking for

  • Can't install Bonjour on Windows 7 (RTM 7600)

    I keeps giving me the following error: "Service 'Bonjour Service' failed to start. Verify that you have sufficient privilege to start system services" I have tried both running as administrator and also trying to run it through windows XP compatibili

  • Forms pl/sql in oracle adf

    hi how can i re use this oracle forms pl/sql {PROCEDURE perform_logon IS error_message varchar2(100); usr_id integer; fail_cnt integer; fail_limit integer; pwd sms_users.pwd%type; pwd_dt date; pwd_dt_period integer; sysdt date; msg_lvl varchar2(20) :

  • BAPI/FM to add Items to Handling Unit

    Hello Gurus, Is there any BAPI/FM to add Items to existing HU. I could see many existingBAPI's like V51F_CHANGE_HU_ITEM, HUINV_ITEM_CHANGE, HU_ITEM_CHANGE but none has helped me as such and it goes into some kind of error. Hence it would be great if

  • PM Order with External Service PR Currency

    When we requisition an External Service through the PM Order using control key PM03, the system automatically generates the PR for the selected external service. The currency for this PR is set to the default currency automatically and we are unable

  • Why does iphone not always pick up signal in new city?

    I just flew to Vegas, Phoenix and Atlanta. Each time, iphone did not acquire signal on landing for minutes (at least), but immediately picked it up when I powered down and powered back on. What is the technical reason for this, and why does turning t