Linking images within a document?

Hi,
I'm laying out a photographic book with a visual index at the end containing thumbnails and
captions for each photograph in the book.
Is there a way to link the thumbnails to the images, so that if I change the photo it updates the thumbnail?
If so, is there also a way to input text linked to each photo, so that if the thumbnail changes the text also changes?
Many thanks,
Matthew

mlondon88 wrote:
Hi,
I'm laying out a photographic book with a visual index at the end containing thumbnails and
captions for each photograph in the book.
Is there a way to link the thumbnails to the images, so that if I change the photo it updates the thumbnail?
Say you have one full size image and a corresponding thumbnail. You want to replace both. A few scenarios:
1. You have the same image placed twice, for the thumbnail the image is scaled down in InDesign. In the Links panel the image will show double placement. Click on the top name, relink to the new image. Both will update.
2. You have the same image placed twice, for the thumbnail the image is scaled down in InDesign. Save and replace the old images in Photoshop. The links come up modified in InDesign, just update. Note: You might want to keep copies of the old images if you ever need them again.
3. You have two versions of the same picture, one large and one small, placed in InDesign. Actually the better option for image clarity, but it's very important to establish a good naming convention for your images. Personally I would not use the same name for the large and small images, it would be confusing. You can re-link to the new images one at a time, or you can save and replace the old in Photoshop and update in InDesign.
mlondon88 wrote:
If so, is there also a way to input text linked to each photo, so that if the thumbnail changes the text also changes?
For the index I would first select the thumbnail and the caption. Group. Copy. Now create a master text box and paste. The image and caption now behave as a large text character. This keeps them together, they flow like text.
In the event you change the image and the text needs to change in two places, use Find/Change. As long as the text reads the same in the index and the body text, Find/Change will replace both at the same time.

Similar Messages

  • Resizing/compresing images within a document

    Hi
    I am trying to compress all images within a document I've just creacted, in order to avoid having a 20Mb size document, but I cannot find the tool anywhere. I am just new to Pages, transfered from Office Word, where this task can easily be done by write clicking and imag properties.
    Would someone be able to help me?
    Thanks

    Thanks dennis.
    Thats what I've been doing, exporting the images into mail and re-sizing them, then a drag and drop into the document. Seems rediculous though. We make reports so we have loads of documents, all around 50MB, it soon builds up.
    I'll leave feedback in pages I recon.
    Regards,
    Rob

  • When I embed a linked image in a document it 'grows' in thickness. What do I need to do to maintain what it looked like before embedding?

    When I embed a linked image in a document it 'grows' in thickness. What do I need to do to maintain what it looked like before embedding?

    I am using a mac - OSX 10.7.5
    I have Adobe Creative Suites - CS5 - Illustrator version is 15.0.2
    The contents I am placing are all  Vector - Illustrator files
    I used 'simple' linear (line) drawings from SolidWorks that have been converted to ai files. It's just weird because I checked the stroke of the drawing and it's not out of line (stroke is about .5 pts). I also made some of the labels in the examples below earlier and they didn't exhibit the 'larger stroke images'. Perhaps I clicked on something in the Preferences or some other place that caused my problem?
    I am attaching part of some box labels. You can see how the drawings, of the products, on the 'left side' are "thick" (strokes have grown) after embedding them. I think the "Global Logo" was pasted into a template that was not linked and embedded - that's why it's okay. But look at the Quiet Thunder logo - it looks terrible. These labels are only 2.25" X 6.5", so its important I keep the images lightweight.
    Your help is very much appreciated. Thank you!

  • New Collection from links/images in current document - is this possible?

    Our team includes PC and Mac users.
    We have CS5.5 - InDesign v7.5.3
    I'm currently running Win7
    This might be a post for the Bridge forum, but since we want the workflow to begin with InDesign...
    I did try searching here, there, and within Exchange forums.
    What we'd like to be able to do is open a document in InDesign that has dozens of links, and by some magical autmotaed (or even manual) process, be able to create a collection - not a snippet - of the linked files.  I've tried several ways to get this to happen both from within ID and Bridge, no luck.
    Is there a way?
    Maybe a script?
    -Rick

    Thanks for the quick reply.  I don't want to package or export linked images using the "Copy Links to..." option from the links panel.  What either of those options would do would in fact create copies of the images. 
    Instead, I want to maintain their original locations, maintain links, etc..
    So, by the term "collection" in my question what I meant to say is a Bridge Collection (as seen in Bridge or in the Mini Bridge panel).  I want to generate such a collection from the items I choose that already are placed within an InDesign document.  I've attempted selecting from the Links Panel in ID, selecting from the document itself and dragging in to a pre-existing collection, but this seems to only result in an InDesign Snippet file.  I checked contextual menus and panel menus.  I also tried the drag operation with various modifier keys just hoping.    No luck.
    I'm thinking there should be a script or plugin for this... but alas have not found it.
    -Rick

  • Anchor all images within a document

    Hello everynbody,
    i am currently triing to write a script that loops all (not anchored) graphics within a document. I want to anchor the image because i want them to move along with the text.
    Here are the steps i took so far:
    1. Iterating through graphics using "myDocument.allGraphics"
    2. Check if "myGraphic.parent.parent.constructor.name" is Character or Page. If it is character the image is already anchored.
    3. Iterate through all text frames on the page of the current image and
    determine one frame that overlaps the Rectangle of the image.
    4. Determine the everage height of a line of the frame (Heigh of frame / number of lines)
    5. Determine the line number of the insertion point for the graphic (=iLine)
    6. Determine the average number of characters per line (=averageChars)
    7. Calculate the average width of a chracter (width if text frame / average number of chars per line)
    8. Calculate the number of characters for the indention (horicontal) of the graphic (=iChars)
    9. Insert graphic as follows:
    var myNewGraphic = matchingFrame.insertionPoints.item(iChars + iLines * averageChars).place(file, false);
    10. Delete the original graphic and it´s rectangle
    My problems are as follows:
    1. The insertion position of the image is never correct even though the calculated line number (iLines) and the calculated indention (iChars) is correct.
    2. After insertion of the image the text does not flow correctly around the contures of the image
    3. I dont know how to set the options for anchored objects as listed in (Objekt -> Verankertes Objekt -> Optionen IN GERMAN VERSION OF INDESIGN)
    I am using Windows XP SP3, i am working with Adobe InDesign CS3 and for scripting i am using JavaScript (for compatibility between MAC and WINDOWS).
    Thanks everybody. If the source code is needed i will provide it.

    Thomas,
    >1. The insertion position of the image is never correct
    You need to start at the end of the document and work your way to the beginning. This is to ensure that references to graphics and frames remain constant.
    >2./3. I dont know how to set the options for anchored objects as listed in (Objekt -> Verankertes Objekt -> Optionen IN GERMAN VERSION OF INDESIGN)
    All these are enumerations, so you should use the English names. The object-model viewer shows the terms you can use (see under anchorPosition, anchorObjectDefault, anchorObjectSettings, etc.).
    Peter

  • HT2506 In pages how can I link text within the document? I can find a bookmark option and links only allows me to link to a web page

    Hi all,
    This is my first time using this discussion site! Any help would be great, as I am getting very frustrated with pages!
    What I am trying to do is link text at the bottom of a document to a page at the beginning of the document. I can't find a bookmark option adn when I clink insert link it only provides an options to link to a web page. Help! thanks

    Bookmarks are missing (sadly) and with them, the ability to create an in document link.
    I was looking for this feature in a Table of Contents. When you assign a 'style' to text in a document, you can Insert > Table of Contents. Then Pages will keep the TOC updated and you'll be able to 'link' from the page number in the TOC. (Not much help though, for the OP)

  • Linking an image from one page to an image within a slideshow on another page.

    I would like to link an image on my home page with an image within a slideshow on another page of my website. I can create the link, but when I click on the link, instead of taking me to the image within the slideshow, it takes me to the first image of the slideshow which I don't want. Is there a way to link to an image "within" the slideshow and not the first image?

    Hi
    You can create pages with specific images and then use link of images which will open the page with that specific image, link images within slideshow to show exact image within would not be possible with native Muse feature as by default slideshow will open the first image in target.
    Thanks,
    Sanjit

  • OS X Server no longer allowing me to link images

    Hello All!
    Has anyone else experienced the recent issues post mavericks update that has resulted in you no longer being able to link images within your wiki pages? If so is there a way to get it work? At the moment I click on the image and the border goes blue and reveals the "link" button and let you do the whole process but once you click save the link is not there and it simply opens the image fully.... Very frustrating!!
    Any help would be much appreciated!!!
    All the best,
    Fraser

    Csound1 wrote:
    You did this?
    MR user Kazyua reports that you can use the disk management utilities provided with the current operating systems if you want to do it manually. Windows 7 and OS X both have partition resizing functions built in. In OS X, open Disk Utility and manually shrink the mac HFS+ partition by dragging the lower right corner. Then in windows go to the start menu and type "disk management" into the search box then hit enter. You should get an overview of the drives you have and the individual partitions. Right-clicking on the partition gives an "Extend Volume" option. The Windows NTFS volume should then be extended into the free space you created with Disk Utility. This method has not worked for other users, so try at your own risk.
    And you ignored the warning? daredevil approach you took there.
    Erase your disk and reinstall, that Warning at the top of the page not to attempt without backup was serious, and DU was entirely the wrong tool.
    Yes I have formatted my system countless times before so I figured I would be carefuly and could handle it. But as I said above, I buggered my system.
    I'm sure there must be a way to recover the files before doing a reinstall.

  • HELP!!!! I have spent hours trying to find out how to embed an image with a link or a Microsoft Word document with a hyperlink built within the document -- not as an attachment! Does ANYONE know the secret? Can it be done, or not! My PC clients do it.

    HELP!!!! I have spent hours trying to find out how to embed an image with a link, or embed a Microsoft Word document with a hyperlink built within the document -- not as an attachment into my email -- but where it shows as the email content when opened! Does ANYONE know the secret? Can it be done, or not? My PC clients do it all the time easily. Then I want to be able to send the embedded image/document (not as an attachment, but visable within the email when opened) to many email contacts at once, BUT the individuals receiveing them DO NOT SEE the other email contacts. Cannot seem to be able to find anything on being able to do these 2 tasks.PLEASE, SOMEONE, HELP!!!

    Don't know if this applies to Lion, but read here:
    http://www.makeuseof.com/tag/create-html-announcement-mail-iweb-mac/

  • Is there a way to create a link within a document that will pull text from the document and open it up in a separate text box within the document?

    I am trying to link sections of an form within a PDF back to instructions within the same PDF document.  Instead of having this jump back to the page within the document I would like for it to pull up the identified text within a separate pop-up text box on the same page where the form lives.  Is this possible?

    Hi gwebster,
    Instead of linking back to the instructions page, may be you can use tool tips or comments so that the instructions can be seen besides the text.
    Regards,
    Rave

  • How to keep an image "in place" within a document using Pages?

    Here's what I want solved. When I position an image (like a jPeg photo) within a document I take a great amount of care as to how it looks in the layout. BUT, if I add a new line of text ABOVE the image, all the text moves, but the image stays in place. When the text above moves down, any kind of "art direction" is lost.
    Yes, I know there is a way to "LOCK" the image, but that doesn't solve this issue. The formatting still moves all the text and the image is stuck, LOCKED or UN-LOCKED.
    I want to know if there is a way to KEEP THE IMAGE in place within the text. I want to be able to edit above the image and not have the headache of needing to move the image every single time I change something above it.
    Does this make sense?
    I have to assume there is a way to do this, I just haven't figured it out.
    I am using Pages 09.
    thanks,
    Mike C

    (a little bit more)
    This text below is from the Pages help menu, but (sadly) This does NOT solve my problems.
    Locking and Unlocking Floating Objects
    You can lock floating objects to avoid inadvertently moving them as you work. Inline objects cannot be grouped or locked.
    After you lock individual or grouped objects, you can’t move, delete, or modify them in any way until you unlock them. However, a locked object can be selected, copied, or duplicated; when you copy or duplicate a locked object, the new object is also locked.
    To lock a floating object:
    Select the objects you want to lock, and then choose Arrange > Lock.
    To unlock a floating object:
    Select the objects you want to unlock, and then choose Arrange > Unlock.

  • Linked images in my Word document don't show up in RoboHelp

    I'm using RoboHelp 8 and Microsoft Word 2003 on Windows XP. I create a new WebHelp project. I added all the .png image files from my Microsoft Word directory to Baggage Files. I then used the Link>>Word Document function to add my Word document to the RoboHelp project. Set my preferences for style pagination, did a Force Update All. However, most of the images I inserted as links into my Word document don't come through into RoboHelp. Apparently I'm missing a setting somewhere but I can't figure out what it is. In addition, one of the images that did come through is horribly degraded.

    Still no joy. All of the images in my Word document are linked .png files.
    Here's the step-by-step of what I just did:
    Open Word document
    Tools>>Options>>General>>Web Options.
    Change setting. Click OK
    Click OK
    Change text on page one of document to make sure document is "dirty".
    File>>Save As.
    Increment number in file name.
    File>>Exit.
    Launch RoboHelp
    Start new project
    Add all .png files to baggage.
    File>>Link>>Word Document
    Select appropriate Word file.
    File>>Project Settings>>Import tab
    Edit Word conversion settings to set pagination for heading styles and set Convert Word list to RoboHelp list
    Click OK
    Click Apply
    Click OK
    Right-click Word document in HTML Files (Topics) and choose Update>>Force Update All
    no joy

  • We are currently looking for a way to link images to a design file within programs like InDesign and Illustrator using an HTML link instead of a local file.  We are hosting our images in SharePoint and need the design file to retain it's links, no matter

    We are currently looking for a way to link images to a design file within programs like InDesign and Illustrator using an HTML link instead of a local file.  We are hosting our images in SharePoint and need the design file to retain it's links, no matter who on our network opens the design file.

    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • I want to link to a specific place within a document from Captivate4

    Hi all,
    I want to link to a specific place within a document from Captivate4.
    I have no trouble linking to the beginning of a document; however I want to be able to link to a specific chapter/area of a document I am creating. My plan is that as people progress through the e-learning they can link back to the electronic manual I am creating from where they left off.
    I have a workaround of creating separate documents and linking to them, but this is time consuming and messy.
    Does anyone have any ideas of what I can do; I have looked around the forums and, unless I am blind, can't find anything like I am looking for.
    Cheers
    thedarf

    Hi there
    What type of document are you trying to link to? PDF? Word Doc?
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Automatically place images within multiple InDesign documents

    I work for a publishing company of agricultural trade magazines and work on few titles each month. We are trying to streamline our production procedures and previous company I worked for had a script they used to place images within text pages by searching for the file name, however there were some limitations with this script (it would only work within 1 InDesign document and only within 1 InDesign story at a time). The company I am with now breaks out each editorial story into separate InDesign files and we place image boxes when the display ads are going to go. For our purposes now, I am looking for a script that, once all of the image boxes were tagged with the image file names, could search between multiple InDesign documents in a folder and automatically place all the images for us. Is anything like this available or able to be created? If so, would it have the capacity to search between multiple InDesign documents and search the entire document for the image file names? Any help would be greatly appreciated!

    Hi Kasyan,
    They were tagged using a program called Pathways created by a computer programmer the company used at the time. The issues that I was working on were annual Buyers' Guides so they were mainly just listings and inline graphics. The kinds of issues I work on now are monthly issue with various stories and no inline graphics, but display advertisements. And each story is created and laid out in a separate InDesign document. So I would need a script that can search an entire group of documents for file names and/or image boxes instead of just in one story in one document for inline graphics. (sorry if this is confusing).
    I currently do not have a script to work from and am looking for something new that can be used to save use the time of placing every ad manually.
    Thanks for your help and feedback!
    Matt

Maybe you are looking for

  • My MacBookPro is currently running on 10.6.8.  What should I update to?

    I am currently running 10.6.8 on my 2008 MacBook Pro.  Processor speed:2.66 GH, memory 4GB.  What operating system should I update to?

  • Export / Import Mapping into Different Project in same repository

    Hi, Any one tell me, its this possible? We have one repository ( OWB 10 R2 ) and two projects named dev_project and test_project. We want to copy or (export /import) the mappings from dev_project to test_project, how to do this? It seems export and i

  • LR - Win to Mac license transfer

    does anybody know if I will be able to install LR on Mac in case of switching from Win to Mac? I.e. I currently have a LR 1.0 win license and 2.0 win upgrade purchased and I wonder if thes keys will allow me to install LR on MAC if I opt for change o

  • Wireless router for IPAD2

    Hi- Can anyone recommend a wireless router for a PC that works well with IPAD2. I am assuming AIRPORT is for MACS only. Any wireless network would work, is that correct? Is there one for PC's that anyone could recommend? Thank you.  Annie

  • SAP GRC V10 RTA Query

    Hello All, Currently we are in GRC 5.3 SP13.We are planning to migrate to GRC 10 with PLUGIN level 7.We are in process of upgrading GRC 5.3 to Sp16 before migrating to GRC AC 10.As per the note 1655924 and 1662113,we find that GRC PLUGIN is compatibl