Copying images from a server linked to InDesign document?

I have a issue where I have images on a windows server in a "hold folder", when I finish with my images I move them to a "done folder" on the same volume. If my InDesign 5.5 document(mac) is open those images move to the "done folder", but also leave a ghost file with the same name with 0k. InDesign still see these file as if they are still in the "hold folder". I'm thinking that InDesign has a hold or is accessing the image links when its being copied and locking the image file. How often does InDesign check for modified links?

Links in ID use absolute paths. If the time stamp or file size is different from what is stored in the file for each link it would be condidered modified. If the file is no longer at that location it would be listed as missing. When you open a file ID checks the links (if your prefs are set to do so) and reports modified links and missing links. If a link is missing in the specified location, ID will also search the folder where the .indd file is stored and any subfolders. Having a 0byte file at the old location would be a problem.
The best way to handle this is probably to use File > Package to move copies of everything to the new location. ID updates the links at the same time. You can then delete the original files to avoid duplication.

Similar Messages

  • How to export Image from a REPORT to MS word document?

    hi all,
    I am using SAP Desktop Office Integration interfaces to export data from server and store in a MS Word document, Kindly explain me following things:
    1. How can I export a image from SAP server to MS word document.
    2. Can I also do the formating (BOLD, ITALICS, UNDERLINE etc) of the data  in the MS word document being created.
    Please reply, it is very urgent.
    Thanks in advance.

    use following code to store any kind of document in the SAP server.
    CREATE OBJECT o_document_set.
      MOVE: '1' TO wa_signature-doc_count,
      '1' TO wa_files-doc_count.
    'C:\SAPPCADM' to wa_files-directory,
    'BDSPresentation.PPT' to wa_files-filename.
      APPEND wa_signature TO i_signature.
      APPEND wa_files TO i_files.
      CALL METHOD o_document_set->create_with_files
        EXPORTING
          classname  = i_classname
          classtype  = 'OT'
        CHANGING
          object_key = i_object_key
          files      = i_files
          signature  = i_signature.
    Thanks
    Yogesh Gupta

  • Loader will load images from another server, but then we get error on Bitmap operation

    I'm developing an app that currently is using Loader to get images from another server.  This shouldn't currently work since we are still waiting for the owner of that server to put a crossdomain file in place.  However, it does work -- sort of .
    Loader can load the images fine, without an error.  But then the app has a feature in which we are making a larger duplicate of the image to display in a sidebar, we do this in this manner:
    var myBitmap:Bitmap = Bitmap(loader.content);
    and when this runs we get a Flash player security error 2122, sandbox violation.
    So while I'm hoping all this will fix itself when the crossdomain.xml file is put in place, I'm confused as to why we only get the sandbox error when we make a Bitmap from the image, and not when we initially try to retrieve the image.
    (Incidentally: is there a better way to make a "copy" of an image loaded by a Loader, and then change its width and height for simultaneous display in another part of the stage?  I don't need to change its actual dimensions -- I just need to change its display width and height.)
    Thanks!

    The sandbox allows viewing, not editing from another server without a crossdomain.
    So, when you try to load it up, it loads it, but "read-only" and gives you an error when you try to "edit" it by making a new Bitmap out of it.
    This should resolve itself once that crossdomain is in place.
    ||EDIT||
    I just realized I should clarify my statement a little more.
    When you load images from another server without a crossdomain, it allows the load for display only.  When you try to load data, it will fail.  This is because, XML data, or some other type of data is editable by default, and images are only viewable by default.  So, the image fails when you try to convert it into an editable form.

  • Using flash to display images from sql server or file system

    hello,
    what methods and parameters of the urlloader class we have to use to display images in a flash player if possible..
    also movie should update everytime a new image is added to a database or file
    the images can either be in a file system or in a sql database (if possible)
    does flash comes with an object of this type or we have to create it.
    regards,

    i responded to your duplicate message 4 days ago:
    is it possible to insert and retrieve images from sql server using actionscript.
    you'll need server-side script to query your database and you can use the flash urlloader class to call your script.
    also  is it possible to create a flash scrolling gallery based on images  stored in a database and everytime an image is added it is displayed in  the gallery.
    load the data using the urlloader class and  then load the images.  periodically query the database for new images if  there's no direct way for flash to know a new image was added.

  • How to copy images from another MC in reversed order??

    Hi everyone,
    I'm new to AS3 and have been fighting and searching for a solution to this problem for a week now, and I'm VERY close!
    I crated a MC holding of a series of images (about 50) and I jump around in it using plenty AS3 scripts (most of which I don't fully understand yet, but I'm working on that to! )
    I had to find a way to "rewind" (= play backwards) the MC. Since there is a stop(); command in almost every frame, prevFrame does not work and if I put that in a loop, it goes WAY to fast (but worked).. So I could think of only one way...
    Create a new (reverserd) MC with the same image sequence ald reverse it manually and play that one.
    This all works fine (very proud of it ).
    Now my question:
    To get this to work for multiple image sequences, I have to load all images twice (once in MC_1 and again in MC_2 and select them and reverse them).
    Not a big one, unless you want to create MANY of those SWF's...
    Is it possible to load the 50 images of the first MC in reverse into the second MC dynamically? JUST the images, noting else.
    extra info: the MC_2 is already in the lib(empty) and placed on the stage.
    something like:
    var pointer:Number=1;
    for (var:i:Number=50;i>=0;i--) {
    get MC_1.picure(var);
    put it in MC_2.frame(pointer);
    pointer = pointer + 1;
    All help is welcome and please take into account that I have little experience and copy most of my scripting from people like you
    T.I.A.
    Melluw

    I tried your advice (thanks for that)
    The event I already have is the mouse leave
    I //-d out the part I removed (what did work)
    The code I ended up with is:
    function Start() {
    stage.addEventListener(Event.MOUSE_LEAVE, cursorHide);
    function cursorHide(evt:Event):void {
    var currFrame = MC_1.currentFrame;
    if (CCW == true) {  //it is true in this case
      movStart = (50 - currFrame);
    else {
      movStart = currFrame;
    if (movStart>25) {
      MC_1.prevFrame();
    // removed swapChildren(MC_1, MC_2); // This is the part I removed
    // removed MC_2.gotoAndPlay(movStart);
    else {
      MC_1.gotoAndPlay (movStart);
    And if I leave the stage on the part where movStart is indeed >25
    Nothing happens,
    So I guess this is not what you meant
    Subject: Action Script 3 how to copy images from another MC in reversed order??
    I cannot direct you in the loading of the images approach, it will be too complicated, and will probably not work anyways... when you move away from a frame that has dynamic content, you lose the content.  So basically, there is nothing practical in taking that approach.
    I do niot understand what the problem will be with the enterFrame/prevFrame approach. If everything you can do with the mouse is already used (which I doubt) by the first mc, then there is nothing else you can do with this file.  You probably just need to rethink your control scheme.  You should search Google for "AS3 slideshow tutorial", and to lighten up your design, add "XML" in that search.
    >

  • How do I copy image from web and paste into Open Office Document

    Whenever I choose Copy Image from Safari and then paste into open office, I only get the image url and not the image. I am sure that I am not selecting Copy Image Address.
    When I copy images from my iTunes album artwork and paste into open office it works fine.
    Any thoughts?

    I have done the same thing using Firefox and it works just fine. It seems to be an issue with Safari.

  • How can i copy ztable from development server to ides server?

    how can i copy ztable from development server to ides server?

    Hello Suresh
    The simplest way is to use a transport request.
    Another possibility is to check for SAPLINK plugins which allow to download table definitions (including data elements and domains) into a flat file. Upload on IDES again via [SAPLINK|https://wiki.sdn.sap.com/wiki/display/ABAP/SAPlink].
    Regards
      Uwe

  • Can I copy images from Album to Album

    Can I "copy" images from Album to Album and then expect to be able to export that data into Keynote?
    I put copy in quotes because I am such a new user I am not even sure at this point when I am copying or moving images as opposed to pointers.
    But the bottom line is that I need to know if I can use the data in Albums that I see images in for a presentation.
    Thanks.

    Aperture 3 does have a few things that work in different ways than Ap2, but dragging images to albums is the same. Cut/copy has never been a feature. It works in a different way. Allan

  • Smart collection of image files linked to InDesign documents?

    I would like to create a Smart Collection that finds all of the image files linked to InDesign documents in a specific folder.
    I am the yearbook advisor at school and I need to easily find all of the images that have been placed so that we don't reuse images by mistake.
    I have no scripting experience, so I can't create something myself, and I haven't been able to find anything that does such a thing.
    Many yearbook design software programs do offer something like this - indicating that an image has been used previously.
    I guess it would need to look at the metadata of the InDesign Files for the Linked Files and then pit all of the files found there into a Smart Collection.  Ideally, I would be able to further limit it by file type. ANd to not include Master pages if so desired (although that would just be a bonus!)
    I greatly appreciate any assistance anyone can give.
    Thanks!

    I'd be glad to give it a shot, even though I'm a beginner (and I am afraid I am out of my depth), but i'm missing something obvious because I could download and install the script, but if I try to open it to edit it, I just get gobbeldygook.  Any chance you could paste the script here?
    Again, I really appreciate your help.

  • How do you Automatically Copy Images From Camera?

    I would like to create an AppleScript that will run when I plug in my digital camera. Here is what I cannot figure out.
    How to make it run when the camera is plugged in.
    How tow to copy images from camera to a designated folder.
    Thanks!

    You can do all you requested - without 'AppleScript'.
    01. Connect your camera launch 'Image Capture' ('/Applications/' folder - if it does not automatically launch.
    02. Select the 'Image Capture, Preferences...' menu item.
    03. Click on the 'General' tab.
    04. From the 'Camera:' 'When a camera is connected, open:' pop up menu - select the 'Image Capture.app' menu item.
    05. From the 'Devices' menu select your camera from the menu items list. A window will appear with the title of your camera.
    06. From the 'Download To:' pop up menu select where to save the camera's photographs. You can select any folder anywhere on your hard disk drive(s).
    07. Click the 'Options...' button, and from the drop down sheet click on the 'Connection Options' 'Automatically download all items' check box - to add a check mark. There are other options you may have be interested in.
    08. Click on the 'OK' button.
    09. If you want to download the photographs now - click on the window's 'Download All' button. Or, to test the above setting changes - quit 'Image Capture' and disconnect your camera. Then reconnect the camera - and watch the above setting changes take effect.
    Note:
    The above automatic action can also happen if the storage device of the camera were inserted into a USB digital camera card reader. So long as apply the Steps above, and you select the USB digital camera card reader from the 'Devices' menu's menu item list in Step 05 above.
    'Image Capture' is not scriptable; but, may be control-able via 'tell application "System Events" to tell process "Image Capture" ....
    When a camera is connect to the Mac, the storage card of the camera is mounted onto the 'Desktop' and also listed, as an alias, in the (invisible) '/Volumes/' folder.
    Now that you know the name of the storage card ... you can create a 'Folder Action Script' (an example is presented below) and save it into the '/Library/Script/Folder Action Scripts/' folder,
    Open the '/Volumes./' folder (in 'Finder' via 'Go, Go to Folder' - enter '/Volumes/').
    Perform a right button click ('<control> - click, for single button users) on the 'Volumes' folder's window, and select 'Enable Folder Actions' (if not already).
    Rpeat the right button click (<control> click) and select 'Attach a Folder Action...' - selecting your script ('Volumes_FAS.scpt' as shown below).
    Below is a 'Folder Action Script' example - where you will have to substitute 'NO NAME' with the name of your digital camera's storage card's name.
    -- --- Save code as a script with the name 'Volumes_FAS.scpt' --- --
    on adding folder items to this_folder after receiving added_items
    set myStorageCard to "NO NAME" -- The name of my 1 GB stroage card. The name of your card may differ.
    repeat with i in added_items
    tell application "Finder" to set tName to (name of i) as string -- Obtain name of mounted storage card.
    if (tName is equal to myStorageCard) then my handle_card(i) -- If my storage card, continue processing.
    end repeat
    end adding folder items to
    on handlecard(localVolume)
    set folder_Path to ((path to desktop folder from user domain) as string) -- Path to 'Desktop' folder.
    set download_Folder to "NO_NAME Photographs" -- Name of folder to store storage card's items (files and folders).
    -- create download_Folder, if it does not exists.
    tell application "Finder" to if (not (exists folder (folder_Path & download_Folder))) then make new folder at (folder_Path as alias) with properties {name:download_Folder}
    -- Duplicate all the items (files and folders) of the storage device to the '~/Desktop/NO_NAME Photographs' folder.
    tell application "Finder" to duplicate items of local_Volume to (folder_Path & download_Folder) as alias
    end handle_card
    -- --- End of code --- --
    Review 'Finder's dictionary (in 'Script Editor') for the various ways to incorporate 'duplicate ...'.
      Mac OS X (10.4.4)  

  • How to copy images from iPhone folders other than camera roll?

    How to copy images from iphone folders other than camera roll?
    Images in these folders are synced to iPhone from different laptop and I need to download them in my laptop. I am able to download and access only those pics which are present in Camera Roll folder.Remaining pics are in different folder and also appearing in Photo Library from all folders.
    Same problem is with iPod touch as well.

    - Via a computer program like PhoneView or Touch Copy
    - By using an app like Photo Transfer

  • To load the image from appl. server to FORM

    Hi all,
    i have to fetch the image from Application server and Print in a form. i don't know how to load the image from appl. server to FORM.Through SE78 i guess we can load the image only from presentation server,,,,can anyone help on this????

    Hi Bhuvaneshwari ,
    Through <b>SE78</b> you can fetch the image from application server.
    Goto><b>Graphics</b>><b>BMAP(Bit map images)</b>>In <b>Name</b> parameter click <b>F4</b> for input help.>click on <b>execute</b> button.
    These images are stored on document server.
    There you can find images of application server.
    Those images you can import.
    Reward if helpful.
    Regards,
    Sandhya.

  • How to read bytes(image) from a server ?how to display image after read byt

    How to read bytes(image) from a server ?how to display image after reading bytes?
    i have tried coding tis , but i couldnt get the image to be display:
    BufferedInputStream in1=new BufferedInputStream(kkSocket.getInputStream());
    int length1;
    byte [] data=new byte[1048576];
    if((length1=in1.read(data))!=-1){
    System.out.println("???");
    }System.out.println("length "+length1);
    Integer inter=new Integer(length1);
    byte d=inter.byteValue();

    didn't I tell you about using javax.imageio.ImageIO.read(InputStream) in another thread?

  • How do you copy images from the internet and paste them on Microsoft Word

    I'm trying to copy images from the internet and trying to paste them on to Microsoft Word and Powerpoint for an assignment but it's not working. I tried to use copy and paste and then paste special but nothing is working. Saving the image onto documents and trying to open them on Microsoft Word still doesn't work.
    PLEASE HELP!!!
    Thank you

    Hi Lily, and welcome to Apple Discussions.
    A screenshot can capture almost anything you're viewing. Hold the command and shift keys down, then press the 4 key and release all keys. Hold down the mouse button and drag the cursor to the size/area of the image you want to capture. Release the mouse button and you've captured the image. Remember that it is the individual's responsibility to respect copyright laws.

  • I just tried to copy text from power point to a word document. Since then the word document is frozen an shows no reaction. Also can not restart word. Can anyone help me to unfreeze or recover the word document?

    I just tried to copy text from power point to a word document. Since then the word document is frozen an shows no reaction. Also can not restart word. Can anyone help me to unfreeze or recover the word document?

    If the PDF page content is an image (for text that'd by the image that any scanner provides) then it is an image that exports to Word.
    Regardless, Adobe Reader cannot export PDF page content, cannot create PDF and cannot manipulate PDF page content.
    Adobe Reader is a PDF viewer only.
    Perhaps you have a subscription to one of Adobe's online subscription services.
    (ExportPDF, PDF Pack, etc.)
    Each of the online subscription services have their own dedicated user-2-user forums.
    Easy find as there here in Adobe's Forums. Hmmm, just dumping somewhere means ... Ah well, won't go there. Miss Manners would not approve eh.
    Resources for getting into a dialog with Adobe:
    (other than the user-2-user forums)
    ~~~~~~~~~
    To contact support for acrobat.com subscription services: 
    https://www.acrobat.com/misc/en/contact-support.html 
    Other links to support:
    http://helpx.adobe.com/contact.html
    http://helpx.adobe.com/support.html
    contact Adobe Customer Care on Twitter @AdobeCare.
    Phone support (for a fee - have credit card ready)
    800-833-6687, Mon - Fri, 5AM - 7PM PT 
    Be well...

Maybe you are looking for

  • User Provisioning in OIM 11g to Oracle DB 11g R2

    Hi All, We have installed OIM 11.1.1.5. We have created User in OIM and wanted to provision it to database 11g R2. For this we have created a table in DB. We are not sure about the next steps or which connectors to use.... Experts can u please guide

  • A field is missing in the selection screen.

    Hi, I could find a field in the default screen of the report(in SE80) however there is no such field on the selection screen when I execute the program. What would be the reason? Any guesses? Note:The field is not in hide mode.

  • Problem Installing Oracle Enterprise Edition 8.0.4.0

    Hi All, While installing Oracel Enterprise Edition 8.0.4.0 on win 2000 server. I am getting following errors. 1. The memory could not be "read". (Application Error) 2. Unable to delete the NT service for the SQL*Net V2 Listener. 3. Failed to Create W

  • Sdo_intersection across the antimeridian

    Hello All, I'm trying to create a function which splits geometries at the antimeridian, producing multipart geometries.  I'm approaching this using a sdo_intersection and a clipping geometry representing each of the hemispheres.  I'm confused about t

  • Cover Flow Theme?

    Just downloaded the trial version of Keynote and am trying it out. Is there a Cover Flow theme? A way to show photos like you see them in the "Cover Flow" view in iTunes? -Kirk