Correct workflow when inserting images into text, InDesign CS4

Hi,
I am new to InDesign and I have a problem regarding a really basic thing and I would be very grateful for help.
I am writing an article which is about 10 pages long. It consists mostly of text. I have finished writing and now I want to add some illustrations with descriptions. I've already figured out it's best to insert images into the text frame so they behave as "anchored objects" and they move together with text when I add or delete something on previous pages. Now I would like to place TWO OR MORE images, one next to each other, in a line. This is a bit tricky but I created an object style with Position: Custom in "Anchored object options" and it works more or less fine. This works great but now it would be hard to add descriptions to these images that would still be anchored.
So I created something different. I made an empty rectangle frame, a small text frame under it and grouped them. Then I placed it in my master text frame and basically did the same thing as for previously described images. Now I place the newly loaded image in the empty rectangular frame and add text in the empty text frame. BUT now I have problems with frame size for different-size images.
What if I have a REALLY LONG article and want to add LOTS of images with decriptions that would be anchored in the text so I can edit previous pages? I can do this my way, but it's extremely uncomfortable and takes ages. Is there any comfortable, non-destructive workflow for doing such things?
Sorry for my English.

Hi,
I would recommend following steps:
Place one or more images
Don't anchor them yet.
Arange them (the images) relatively to each other, add a text frame and arrange them correct relatively to the images.
Group images and text
Copy (or cut) them into the clippboard
Set the curser into the text where it should flow
Paste it
Adjust the anchored object (the group)
You need to group several objects to anchor them together as one anchor.
Further recommendation:
For the images I would specify an object style for fitting, stroke, corner optione.
For text frames I would specify an object style for text object options, like text offset, and used paragraph style, no boarder, etc.
For the group I would spcify an object style which leaves above mentioned settings undefined (option field is grea or has a dash). But the anchored position of the whole group and text wrapping should be specified.
Willi Adelberger

Similar Messages

  • Pick Rendition button disabled when inserting image into Blog Post Body

    I have configured Image Renditions by enable BLOB caching on the web application and enable publishing features on a Blog site. When I insert an image to the Body field when editing a Post (EditPost.aspx), the Pick Rendition button is disabled. It works
    perfectly when adding an image to a Page Content area, but not for EditPost.aspx and NewPost.aspx. The image I am trying to insert DOES reside within the same site collection as the Blog site.
    Any ideas how to enable the Pick Renditions button?
    Dirk Prinsloo

    I think this is a bug as per this
    thread. (please review Andy G's reply).
    THosE wHo doN'T apPreCiATe LiFe, DOn't DeSerVe iT

  • Insert image into a .pdf using InDesign

    Can I insert image into a .pdf using InDesign....

    You can place a PDF as an image in InDesign, then add more content and export a new PDF.
    There are also commercial plugins available that will allow you to open a PDF as editable objects in InDesign.

  • How to insert an image into text area?

    Hi everybody,
    I have a proplem : insert an image into text area ( likely Yahoo Chat)
    eg : Hello,World :D =)) :x
    I can't do it.
    Can you help me?
    Thank you!
    Edited by: Chelsea_Drogba7589 on May 28, 2010 9:28 PM

    StanislavL wrote:
    [http://java-sl.com/tip_autoreplace_smiles.html]
    Neat example. :)
    Try this.I did and was at first confused because I expected the code to arrive on-screen looking like the screen-shot at the page. Then it occured to me to type some text including a smiley, and it changed to the icon as expected.
    For other people like me who are not quite very clever, how about adding an 'Instructions' section, or initializing the JEP with instructions?
    BTW -
    "The screenshot shows how it looks like:" reads better as..
    "The screenshot shows how it looks:"

  • Dreamweaver CS 6 crashes when inserting images

    Dreamweaver CS 6 crashes when I try to insert images into a webpage. This makes the app pretty much useless.
    It crashes when the alt attributes window pops up.
    How do I  stop this from happening? I'd like to actually be able to use this VERY EXPENSIVE software.
    version 12.0 Build 5842, OS X 10.7.4,  2.8GHz Intel Core 2 Duo, 8GB RAM

    n8-zilla wrote:
    version 12.0 Build 5842, OS X 10.7.4,  2.8GHz Intel Core 2 Duo, 8GB RAM
    I'm not sure what the correct build number is for Dreamweaver 12.0.2, but it looks as though you have 12.0.1. Try getting the 12.0.2 updater from http://www.adobe.com/support/dreamweaver/downloads_updaters.html.

  • Inserting Image into a BLOB column in Oracle9i

    Hi,
    I am unable to insert image into a BLOB column. I am using Forms 6i REL 2 and Oracle 9i. But I could do it on Oracle 8i with same Forms version.
    Same thing is true for CLOB in 9i.
    Would you please try with this code?
    TABLE
    Create table x
    (Id number,
    Name CLOB,
    Pict BLOB);
    WHEN-BUTTON-PRESSED trigge
    declare
         x varchar2(265);
    begin
         x := get_file_name;
         read_image_file (x, 'GIF', 'picture.pict');
    end;
    Take care,
    Tarek

    Forms 9i and Oracle 9i work fine together for this case.

  • Inserting image into table

    hi,
    i m create table, then create procedure, procedure is successfully compile, but when i m trying to insert image into table it error out.
    for inserting image i go with
    EXECUTE insert_image_file(1,'C:\sunset.jpg');
    sunset.jpg is image which i want to insert in table, and which is present on 'c drive'.
    when execute the following error are shown
    ORA-22285: non-existent directory or file for FILEOPEN operation
    ORA-06512: at "SYS.DBMS_LOB", line 635
    ORA-06512: at "SCOTT.INSERT_IMAGE_FILE", line 26
    ORA-06512: at line 1
    how to solve it.
    regards
    prashant

    Prashant wrote:
    CREATE OR REPLACE PROCEDURE insert_image_file (p_id NUMBER, p_image_name IN VARCHAR2)
    ...snipped...Not very nice code... why create an empty image row, then lock it (it is already locked by the uncommitted insert statement), and then update it again? Not very efficient or sensible.
    image is on local machine.When a row is created on the server from user input on some PC, who supplied that input? Who read the user's keyboard input on that PC to obtain the values for the columns for the row to create?
    Did PL/SQL read the keyboard of that remote PC? Of course not. The client program on that PC read the keyboard input. It then made a client call to the Oracle server. It supplied the data entered via the keyboard by the user to the Oracle server (using a PL/SQL call or using a SQL statement call to Oracle).
    Now why would a local image data on that PC be treated any differently than the keyboard data on that PC? How can you expect PL/SQL code running on the Oracle server, to read that image data from the remote PC when the same PL/SQL code is incapable of reading keyboard input from that very same PC?
    You need to review your understanding of client-server and how it pertains to using Oracle within client-server architecture.

  • Robohelp crashes when inserting images

    Can anyone help.
    When I'm inserting images into Robohelp X5 it keeps crashing
    and I have to completely restart my PC.
    Any ideas what could be causing this?
    Thanks

    Hi Jane and welcome,
    How 'exactly' are you inserting images?
    Are you working with your project locally?
    What error message do you get before your PC crashes?
    thanks
    Craig

  • A Simple Question... inserting image into JTextPane...

    Well my problem is very simple (but not for me). Before I explain it, please take a look at a simple class...
    public class Window extends JTextPane {
        Window() {
            super();
        }// Window
        public void appendText(String s,Color col) throws BadLocationException {
            StyledDocument sd = getStyledDocument();
            SimpleAttributeSet attr = new SimpleAttributeSet();
            StyleConstants.setForeground(attr,col);
            sd.insertString(sd.getLength(),s,attr);
          *     THE POINT - what should I write here, please consult description followed by the class.
        } //appendText
    } //classThe appendText method simply appends the text in text pane with desired color. Now I want to know what should I write at point THE POINT so that at end of appended string an icon (suppose end.gif) is added and is displayed in text pane. Simple?
    Stay happy,
    fadee

    Dear Fadee,
    here is a small programe for inserting images into JTextPane;
    find this comment and start
    /*All Code In this Button Action*/if you need any thing feel free to tell me,
    i'm with you brother, i'll do my best :O)
    -Best regards
    mnmmm
    * Fadee.java
    * Created on June 7, 2002, 1:13 AM
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.color.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.text.*;
    * @author  Brother Mohammad, Cairo, Egypt.
    * @version
    public class Fadee extends javax.swing.JFrame {
        JTextPane   tp;
        JButton     b;
        StyledDocument sd;
        SimpleAttributeSet attr;
        public Fadee() throws BadLocationException {
            b = new JButton("Press");
            tp = new JTextPane();
            b.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    /*All Code In this Button Action*/
                    try {
                        sd = tp.getStyledDocument();
                        attr = new SimpleAttributeSet();
                        /*get default style*/
                        Style def = StyleContext.getDefaultStyleContext().
                                            getStyle(StyleContext.DEFAULT_STYLE);
                        /*add style for text default style*/
                        Style regular = tp.addStyle("regular", def);
                        StyleConstants.setFontFamily(def, "SansSerif");
                        StyleConstants.setAlignment(def, StyleConstants.ALIGN_CENTER);
                        StyleConstants.setForeground(def, Color.RED);
                        /*add style for icon create as many as icons you have
                         and don't forget to resize the photo at small size
                         to fit with font size*/
                        Style s = tp.addStyle("icon", regular);
                        StyleConstants.setAlignment(s, StyleConstants.ALIGN_JUSTIFIED);
                        StyleConstants.setIcon(s, new ImageIcon("d:\\My Photo.GIF"));
                        /*here is what user will see*/
                        sd.insertString(sd.getLength(), "Allah Akbar ", tp.getStyle("regular"));
                        sd.insertString(sd.getLength(), " ", tp.getStyle("icon"));
                    } catch (BadLocationException x) {
                        x.printStackTrace();
            getContentPane().setLayout(new BorderLayout());
            getContentPane().add(b, BorderLayout.NORTH);
            getContentPane().add(tp, BorderLayout.CENTER);
            setSize(500, 500);
            setVisible(true);
        public static void main(String args[]) {
            try {
                Fadee f = new Fadee();
            } catch (BadLocationException x) {
                x.printStackTrace();
    }

  • Inserting images into a movie that are not photos

    Is there anyway to insert images into an iMovie (such as *.gif) files? Alternatively, is there anyway to insert powerpoint slides into an iMovie (because I can easily get the images into power point).
    Can I put an image in one of the title frames or transitions?
    Thanks
    Dan

    I am not sure about gif (but you could easily try it). JPEGS (.jpg) work and .png work for sure.
    It is straightforward to save a powerpoint page as a jpeg.

  • When importing images into LR5 on my laptop, the photos all have a wide yellow streak through them. This only happens on the laptop; I can import the images onto my desktop LR and there isn't the streak of colour.   Can someone help?

    When importing images into LR5 on my laptop, the photos all have a wide yellow streak through them. This only happens on the laptop; I can import the images onto my desktop LR and there isn't the streak of colour.   Can someone help?
    This is happening even with photos that were taken on another camera, not just mine.  My daughter told me that the laptop recently fell.  The yellow streak is not anywhere else on the laptop, just on the photos in LR.

    I have had this problem on my desktop.  I have been attempting to reproduce it where it can be debugged. Here are some observations/facts in my environment--no conclusions:
    1. I do not import from camera or memory stick directly into LR.  I copy all images (using Explorer) from camera to two different locations (backup location first); and then my working area. In both cases, after files are copied I mark them Read-only.
    2. Poor observation, but in any event: the issue has only occurred when I do a large number of images. Its a poor observation as I have no exact number.  I suspect when I do less than 50 always works well every time.  However, I have also done some very large imports without issue.
    3. Error only occurs with my RAW images--for me that's NEF.  I have multiple cameras--those that only capture jpg images have never had an issue in LR.
    4. Even if the file is marked Read Only issues can still occur.  I then remove the image from the disk using LR -- and then manually (Explorer) copy in my backup image -- re import again and all is well.  I think one time I exited LR and replaced the bad file with a backup and restarted LR and all was well again.
    5. When it occurs I have performed a HASH value on the broken file and on the backed up file to determine if the file contents has changed--and each time the file contents has changed.
    6. I have had this occur immediately after import, but most often it occurs like this... import large number of images; Make changes in Development Module on random image, export jpg of changes--exit LR. Open up LR and file is corrupted.
    7. I have had this issue on multiple USB drives ( okay just 2 different drives have been tested ).
    What next--fire up Process Monitor and monitor the system (specifically LR) to see if it reports any file open for write access when this occurs.  So, far I have not had process monitor actually running when it occurs--one of these days.

  • Inserting images into indicators

    hello,
    i wanted to know if there is any way to insert images into indicators???
    for example if iam having an indicatoor showing the speed of motor shaft is there any way by which i can have an image of a rotating shaft rotating at different speeds ( depend on some parameters back ground)  instead of just the numbers displaying the speed.
    thanks in advance,
    vijay

    Take a look at the attached example which uses a picture ring.
    You can do various kinds of animation by using property nodes or the picture control, but that is already more complicated.
    Also, have a look at this for some more examples.
    Try to take over the world!
    Attachments:
    fan.vi ‏47 KB

  • Inserting images into form.

    Hi, i am new to midlet programming.
    Can anybody help me in inserting images into forms.
    And how do we set a thumbnail view in a form.
    Thanks.

    Hello,
    use
    Image tmp = Image.CreateImage ("/com/...../t.jpg");
    Form f = new Form ("title here");
    f.append (tmp);
    //if u want to insert it after loading the form use
    f.insert (index,tmp);
    Good Luck,
    Rawad

  • Error in inserting images into table

    Hi All,
    I am trying to insert images into a table.
    Followed these steps:
    CREATE TABLE XX_DEMO_IMG_TBL
    file_id      NUMBER(5),
    file_name      VARCHAR2(30),
    file_data      BLOB
    LOAD DATA
    INFILE *
    REPLACE
    INTO TABLE XX_DEMO_IMG_TBL
    FIELDS TERMINATED BY ','
    file_id INTEGER(5),
    file_name FILLER CHAR(30),
    file_data LOBFILE (file_name) TERMINATED BY EOF
    BEGINDATA
    1,c:\1.txt
    used sqlldr cmd
    Got the following error:
    *ecord 1: Rejected - Error on table XX_DEMO_IMG_TBL.
    ORA-01460: unimplemented or unreasonable conversion requested*
    I am using SQLPlus: Release 10.2.0.3.0 -*
    Can any one please guide where am i going wrong ?
    Thanks,
    Saritha

    Thanks for your time.
    I got a solution for this, I modified my control file like this..
    LOAD DATA
    INFILE *
    REPLACE
    INTO TABLE SCOTT.XX_DEMO_IMG_TBL
    FIELDS TERMINATED BY ','
    file_id ,
    file_name ,
    file_data LOBFILE (file_name) TERMINATED BY EOF
    BEGINDATA
    1,c:\Users\SariRavi\Desktop\logo.gif
    and it worked.
    Thanks,
    Saritha

  • I deleted a contact from my address book but when I go into text message it is still there. How do I fully delete this contact? It is only in my text messages not in my address book.

    I deleted a contact from my address book but when I go into text message it is still there. How do I fully delete this contact? It is only in my text messages not in my address book.

    I don't believe there's much you can do about it...have a look at the "More Like This" pane on the right side of this page.
    One way though to eliminate the issue (although not a very good way) is to restore the phone as new.

Maybe you are looking for

  • Mixing Memory Mac Pro 2.66 Xenon

    Hello all! Alright I am trying to figure the best configuration that I can afford for a memory upgrade to my Mac Pro. I am looking to spend somewhere south of $200. I currently have the following memory configuration (3GB): DIMM Riser A/DIMM 1: 1 GB

  • 1st generation ipod freezes

    My 1st generation ipod was in the middle of playing a song and then froze.  Now, I can't get it to play and I can't get it to shut off.  It seems none of the buttons are responding.  The battery is charged.  Help, please

  • WBS elements display like CJ03

    Hello All,           I have to develop a screen similar to CJ03 where I have to display the WBS elements in the same way as they are displayed in TCODE. How to get the functionality of dropdown buttons in dialog programming? Is there any function mod

  • What are the steps u followed in your project

    Hi.... he asked me like this 1...what are the steps u followed in your project? thanks and regards, k.swaminath reddy.

  • HP laptop, Graphical Problem

    I get strange graphical tearing and or lines when playing certain games, and they were running fine about 2-3 weeks ago