Issue on relinking an image

Hi Folks,
While relinking an image using LINKS palette in Adobe InDesign application, the width of the image preserves with the old one. Is there any option to fix this in InDesign?
Any solution to fix this would be greatly appreciated.
Thank you,
Vaishu

I was actually able to recreate the problem - I tested a couple of versions of the same Illustrator graph (one saved as a CS4 EPS, one saved as CS3 EPS), placing each into a picture box in InDesign, altering them slightly, updating them... What i found was if the InDesign preference 'Preserve Image Dimensions When Relinking' was turned on, updated links would scale randomly as mentioned above. Turn the preference off, and everything updated normally.
'Preserve Image Dimensions When Relinking' is the default setting in ID, if I'm not mistaken, so if it is a BUG, obviously Adobe needs to fit it in the near future.
San

Similar Messages

  • System Image Utility - Issues with making bootable images

    During the image creation process for a Netboot, the System Image Utility reports an error. I've included the log file (everything before the removal of the bad image below).
    ------------Begin Log File --------------
    2006-06-02 13:19:25 -0400 Initiating user authentication
    2006-06-02 13:19:28 -0400 Image creation in progress
    2006-06-02 13:19:28 -0400 Starting image creation
    newfs_hfs:
    2006-06-02 14:10:30 -0400 b=400: bitmap clump size is too small
    --------------End Log File--------------------
    I have no issue creating images from restore disk sets (that shipped with machines) or retail masters of various OS's. This issue seems to be related to the particular drives I am trying to create images from.
    The drives that give me this error are hardwarily OK and the software works great. I can boot from these drives and have no issues with the machines imaged from them after the fact. I just want to Netboot off of these so I don't have to lug a million drives around...
    Any clue?

    i know that was the case in Leopard and Snow Leopard but i just mounted a leopard image to create a new netrestore on my lion server.  i was not able to boot any of my images created on Leopard or SL when running Lion Server.  I assume i need to recreate the images on Lion.  Right now my Lion server is using a leopard image as the source to create a netrestore i can push on the Lion server.

  • Relinking multipe Images in InDesign

    Hi all,
    I need to relink all images within my Indesign documents as due to a laptop upgrade the external drive port or rather names have changes from say J: to I:
    Is there a way to mass relink all images, without having to manually update 100s of photos?

    Hi,
    In order to reduce your efforts of relinking, you can put the entire set of images in an folder and relink any one of them. In the relink dailog, go to the folder containing all your images, check search for other missing links in this folder option.
    As soon you click relink button InDesign automatically searches for all the missing links available in that folder and then prompt you if you want to relink them also.
    There you can make your choice.

  • HP Device Manager Issues - Unable to deploy images taken with a particular OS to a different OS

    Hi all,
    I have been trying to deploy an image taken from a HP T5565 (Thin Client) with the HP ThinPro 4 operating system, to a HP T5565 with the HP ThinPro 3 operating system. Does anyone know if this is possible?
    I am also having the same issue when deploying an image taken from a HP T610 - Thin Pro 4 thin clent, to a HP T610 - Thin Pro 3 Thin client.
    I take the image by right clicking on the thin client, clicking on 'Send Task', Imaging, then Capture Image.
    I deploy images in the same manner, but instead select the image from the Templates window. It works fine for Thin Clients running on the same OS.
    I would appreciate any assistance with this!
    Regards,
    Remo

    Remo,
    You will want to ask this on the HP Enterprise Business Community.
    You may need to re-register to post questions as it is a separate forum.
    Here is the section for Thin Clients and other Workstations.
    http://h30499.www3.hp.com/t5/Desktops-and-Workstations/ct-p/bsc-403
    Good luck.

  • Script to search and relink linked image files that were moved?

    Good afternoon
    My indesign product catalog has links with a lot of different folders around in my hard disk, not a single folder. And to keep my catalog up to date I must package it.
    When I move my linked files in my computer because I change the folder structure or do some cleaning, my indd loses track of its linked files. Currently I need to relink one by one.
    Therefore I would like to find a script which would scan the hard disk with the all broken links in mind to detect their new location and relink. Yes I am a lazy person.
    Thanks for any clue,

    Thanks so much! I will try soonest.
    How does your script react in the unlikely case of duplicates?
    Date: Thu, 18 Jun 2009 12:43:47 -0600
    From: [email protected]
    To: [email protected]
    Subject: Script to search and relink linked image files that were moved?
    At least your honest about your laziness.... Here's your reward:
    Just a hint, don't select root of your volume, it will loop through every folder in existence, but key to this script is, if you know the general location, select into that folder hierarchy and the script will test for a relative path, otherwise, come back in a few days, and it will be finished.
    ~mike
    var processed = 0
    var skipped = 0
    var updated = 0
    if (app.documents.length > 0){
        if(app.activeDocument.links.length > 0){
            var mydoc = app.activeDocument;
            var mylinks = mydoc.links;
            var myRoot = Folder.selectDialog("Choose the volume or server where assets are located", undefined, false);
            main();
    else
    { alert("No Links present")
    else{alert("No Documents Open")
    function main(){
        if(myRoot != null){
            for(var i = 0; i < mylinks.length ; i++){
                if(mylinks.item(i).status == LinkStatus.linkMissing){
                        var linkdata= mylinks.item(i).filePath;
                        var my_result = linkRepair(linkdata);
                            if (my_result == false){
                                var filetype = "." + mylinks.item(i).linkType;
                                var mysearch =   search(linkdata, filetype);
                                    if(mysearch != undefined){
    var myswitch = confirm(mylinks.item(i).name + " has been found in a different location, Relink and Update?", "Relinker")
                                            if(myswitch){
                                                mylinks.item(i).relink(File(mysearch));
                                                mylinks.item(i).update();
                                else{
                                    alert("" + mylinks.item(i).name " was not found\nFolders processed: "processed + "\nFiles skipped: "+ skipped)
                            else{ alert( my_result + " has been found");
                                mylinks.item(i).relink(File(my_result));
    function linkRepair(linkdata){
    var mypath = linkdata.split(":")
            my_status = analyzePath(mypath)
            if(my_status == true){alert("UPDATED");
                    updated++       
        return my_status
    function analyzePath(mypath){
    var num = mypath.length ;
    for(var i = 0; i < num-1; i++){
        mypath.shift()
        var newpath = pathRebuild(mypath)
        newpath = (myRoot + newpath)
            if(File(newpath).exists){
                return newpath
        return false
    function pathRebuild(pathArray){
    var solidPath = ""
        for(var i = 0; i < pathArray.length ; i++){
            solidPath +=  "/" + pathArray+ ;
        return solidPath;
    function search(linkdata, filetype){
        var mypath = linkdata.split(":")
        var mylink = mypath.pop();
        var OK = confirm("Relative Path does not exist, search folder hiearchy for file?", true, "File Scanner")
        if(OK){
    var myscanresult = getfiles(mylink, myRoot)
    return myscanresult
    function getfiles(mylink, myBase){
    myBase = Folder(myBase);
    var files = myBase.getFiles("*")
    for(var i = 0; i < files.length; i++){
    try{
    var foldertest = files+.getFiles();
    processed++
    var myfile =     File(files+ + "/" + mylink)
        if(myfile.exists == true){
            return myfile
            break;
        else{
        var myscan = getfiles(mylink, Folder(files+))    
            if(myscan != undefined){
            return myscan
            break;
    catch(myerror){
        skipped++
    >

  • Is it possible to relink whole image file directories in InDesign?

    I have templates that come from another office. Their image folders are set up identically to ours, except ours is mapped to a drive in our office, theirs is mapped to a folder first on a drive in their office.
    The links show up as missing. Relinking one will find a few, but on a regular basis, I need to be able to point InDesign to our Image folders, which are mapped to one of our drives. There must be a way to accomplish this? I hope?
    I am using CS5
    ps: I just learned it is a Mac to PC thing - the original files are on a mac so they are not mapped to a drive the way our PC images are.

    Hi,
    So there is an image folder and subfolders which path are similar in some part and differ in another, right?
    1. If you would reorganize it to one folder - relink would complete the job... or
    2. If you (your net admin) would reorganize shared folders (sharing this part of path which is different) - links would be similar... or
    3. If you would write a short script - all images could have redefined path by click.
    hope...

  • Issue with re-importing images after using Nik plugins

    Currently, when images are edited in a Nik plug-in and saved back to Aperture, the project folder the image originated in is changed from being organized by "date" to "manual" and then that image is inserted as the first image in that folder. In past versions of Aperture, the image would be placed back into the project folder by date. At the very least I would like to have the control on where that image is placed. And my selection of how that project folder is organized should NEVER change unless asked.
    Is there some hidden setting that can change this behavior?
    Ken

    Unfortunately, this issue was with some of the last versions of Snow Leopard as well. Oh, and for clarification, this happens with HDR efex. Others have commented that the Nik plugin is designed to work this way. Maybe, but I would like a choice where the image is returned. I believe it is a NIk issue but they won't admit it.
    I did try your suggestion, but no luck. This image changed the project folder organization to "manual" and put the image first.
    Ken

  • Quality issues when importing still images as frames for animation

    hello,
    i've imported roughly 600 hand-drawn and scanned (600 dpi) images as frames for video. the images themselves are really crisp and perfectly how i want them to appear. i've imported each to play for 2 frames then move to the next. once done, i save this video file as an .avi. i then repeat the process in order to layer the video (using Calculations filter) over and over again, to fill up the screen with overlapped, layered animations. in theory, these layers should all remain crisp, just like the scanned images. i was under the impression that the standard Export... > Movie... .avi file is essentially lossless and is best for editing, however when my process is completed, the final product is muddy, grainy, and pixelated. i'm not sure where i am going wrong, as i've actually done this process before with success.
    is there a way to specific the working file as "high definition" or something similar so that the quality is just as crisp as the scanned images i am using as source
    any help is appreciated - i am completely self taught in video editing and it is really bugging me that the file output is not how i envisioned.
    thanks,
    DB

    I note you specified that the images were 600 dpi.  The dot per inch are an issue only for printing a hardcopy.  For video work, the issue is the pixel dimensions and the pixel aspect ratio. If your image is 600 pixels by 400 pixels with a PAR =1.0. If your sequence is 1440 x 1080 with a pixel ratio ratio of 1.33, then the images must be the same and PrPro must scale up the image.  You can get good images from imported stills in PrPro. I prefer to rescale my images using Photoshop.  I am told that the scaling algorithm in PrPro has been improved.  But regardless, if you are scaling up, you will see degradation becauae Prpro has to interpolate between pixels to fill the video frame.

  • IMac issues with displaying Internet images

    Recently my iMac hasn't been displaying some images on the Internet correctly. For example the header of bbc.co.uk/news looks like a TV searching for a scrambled signal, but the rest of the images on the page are fine. There are a few other sites that I'm experiencing the same issue. When I try to save those images, they download with the same scrambled effect. I'm not sure what caused it to do this, but it also started on my Macbook Pro a few days after. It's not the browser because the same thing happens on Chrome, Safari and Firefox. I've tried resetting the cache and PRAM but to no success. Both computers are running OS X 10.9.
    I'm not sure how to attach a file on this forum, but here is an imgur link to a screen shot of the problem http://imgur.com/7hGFSqE.
    If anyone has seen something like this, please let me know.
    Regards,

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, or by corruption of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and Wi-Fi on certain models.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • SQLServer to oracle migration. Issue with table having image data.

    Hi,
    I am using the SQL Developer version 1.5.0.53 Build MAIN-53.38. I am trying to migrate from sql server database to oracle. Sql server database version is 2005 and oracle database version is 10g (10.1.0.2 and 10.2.0.3). Both Oracle and Sql server databases are on windows-xp.
    Everything (including data) migrated well except for the one table having blob (oracle) and image(sqlserver). I am getting the following error in sql developer while migrating data for the blob from sql server to oracle.
    Data Move information:Rows : 497 Errors: 10278
    Commit failed: Closed Connection
    Must be logged on to server
    [POCRepository].[td].[REPOSITORY] Closed Connection
    Io exception: Software caused connection abort: socket write error
    [POCRepository].[td].[REPOSITORY] OALL8 is in an inconsistent state
    No more data to read from socket
    [POCRepository].[td].[REPOSITORY] No more data to read from socket
    Inserting ' ' into column td_POCRepository.REPOSITORY.RP_DATA (Row number 498)
    I have created sqldeveloper.cmd file as suggested in other threads and I am using the same java provided with SQL Developer 1.5.0.53.
    The database alertsid.log shows the following error messages for this activity.
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [0x34EF9E5] [] [] [] []
    ORA-00600: internal error code, arguments: [kghasp1], [0x5F3B718], [], [], [], [], [], []
    ORA-07445: exception encountered: core dump [ACCESS_VIOLATION] [0x34EF9E5] [] [] [] []
    The error ORA-00600[kghasp1] refers to the problem with heap memory. I also restarted the database and tried the data migration for only this table but with the same error.
    I tried it on both 10g release1 and 10g release 2.
    Can someone please help me in resolving this issue.
    Thanks
    Raghavendra

    Hi Raghavendra,
    Are you saying the Microsoft SQL Server bcp dump of image data failed? It has been tested, it results in a hex dump rather than a binary dump, hence the clob to blob, and hextoraw workaround.
    What are the version numbers and what is the reproducible test case?
    -Turloch
    Note that the clob to blob process is automated:
    Tools->preferences->Migration->Generation Options->General Options->Generate Stored Procedure for Migrate Blobs Offline
    From Help:
    Generate Stored Procedure for Migrate Blobs Offline: Causes a stored procedure named CLOBtoBLOB_sqldeveloper (with execute access granted to public) to be created if the schema contains a BLOB (binary large object); this procedure is automatically called if you perform an offline capture. If this option is not checked, you will need to use the manual workaround described in Populating the Destination Database Using the Data Files. (After the offline capture, you can delete the CLOBtoBLOB_sqldeveloper procedure or remove execute access from public.)

  • CENTRO ISSUE - Can't See Images Online Or Sent Pictures

    I am new to the Palm message boards, so I apologize in advance if I've missed the answer to this issue somewhere.  BUT my Centro suddenly stopped allowing me to view images online.  This includes PictureMail (I have Sprint).  In order to view received pictures I must save them to my device.  Another friend of mine says to be having the same issue with her Treo and hasn't really put much effort into figuring out how to resolve it.  Any thoughts?
    Post relates to: Centro (Sprint)

    Viewing online means using Blazer to me...
    There is a simple setting that will disable viewing pictures - it's called "Fast Mode".
    Tap the Lightning bolt at the top of Blazer and see if it's set to that mode.  Change it back to "Normal Mode" to view all the content on web pages.
    WyreNut
    Post relates to: Centro (AT&T)
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Issues when selecting multiple images in LR6.

    I've noticed a few changes to how LR6 behaves when I select multiple images.
    First, if I select a few images in the Library view, I am only essentially "stuck" in those images when I press the left or right arrow keys. In previous versions of LR, hitting the left or right arrow would move to image on either side of the selected images. Now I'm only able to endlessly scroll through the selected images and I have to press the up or down arrow to get out of the selected images. Is there a way to change it back to how it used to work?
    Second, and I think this is related to the first issue, I used to be able to select all images in a collection, press the down arrow and I'd end up at the last image in a collection. Now, it no longer works.
    Anyone else notice either of these things? Have you found a way to change it back to how it's always been?
    Thanks!

    Interesting. I just went back to LR5.7 (Mac) and confirmed that it behaves just like I originally said, but LR6 does not. Maybe Windows has always been this way? Regardless, any input from Mac users?

  • Issue with color profile image processing

    Their seems to an issue with the iPhone displaying an image which has a Color profile of: Generic HDR Profile. The image appears very dark and nearly unviewable. This has been frustrating to trouble shoot becasue the image will display correctly on the computer, but when it is viewed on the iPhone it looks completely different. When images have other color profiles such as sRGB the images will look the same on both platforms. When an image has a Generic HDR color profile it will not display correctly on the iPhone. 
    Anyone else come across this problem?

    When PSE gets weird, the first thing to do is to reset the preferences. Go to the editor preferences>general, click this button and restart the editor:

  • Issues with choppiness in image scrolling

    I am not super experienced in flash, but I'm wondering what the deal is.  The swf I export looks choppy as hell as it moves across the screen and I have it set to 120fps.  You can see it here: http://mattdaddy.net/client/animator_images.swf the fla is http://mattdaddy.net/client/animator_images.fla   The swf file is about 160k, so I don't think it's the size of it is the issue.  This is one piece of a bigger flash presentation someone else is pulling together - http://mattdaddy.net/client/intro_v5.html
    I don't get why it's scrolling fine in Flash, but when I export it, it looks like crap.  Any help would be MUCH appreciated because I REALLY just want to finish up this project once and for all.
    thank so much.
    M@

    double click each image in the library and check "Allow Smoothing."
    in cs4 you can highlight all of them and just right click > Properties to get them all at once.

  • Relink multiple images and export in jpg

    Hi, this is my first post, been searching for nearly 2 hours for my solution, didn't end up with any answers
    I have a template with the size of 500x500, there's my company logo at the right bottom and there's a brand's logo at the top left, i created a layer to put the products in the middle of the templates.
    So now I have nearly 400 products to be relink and export into jpg, anyone can help me with this? I found out I have to use javascript for this and i have no clue of how to do this.
    I would like to have 2 folders, first folder is my product, second folder would be the export photos be at(with the same title would it be possible?).
    so the script should be able to read from the first folder and relink the product automatically in the layer and export into jpg automatically and being save into the second folder. (all the product images have the same size so no worries about it.)
    Million thanks!

    Thank you sir! I've manage to do it nicely with the guide!!! Somehow someone inbox me to a fee of 40$ to do it
    lucky you show up!
    PS: How ever i've face a problem editing all the photo's images into 500x500, some of them aren't exactly the size, some are bigger some are smaller, any ways to make all the images to fit nicely into center of the canvas and resizing them(so there would actually some extra free space around the product,not resizing it into 500x500px, it would be out of shape)?

Maybe you are looking for