Copy layer content between InDesign files

Hello,
I'm trying copy layer content between 2 files, the sources file is a Spanish version of a training manual and the target is an English version. Essentially making a single multiple language file out of two single language documents.
I'm not well-versed in scripting.
Thanks

Hello Again Steve,
Perhaps if I shared a bit more detail.
We began with an English version. All content was placed on layer 1. At the time some of the manuals were created there was no thought of needing multiple languages.
These files had their one layer with all placed graphics and text renamed English. The Idea was all the graphics that have text embedded in them have been edited to add the second language onto a new layer in the graphic files. (Many of the manuals share graphics between them, so a common links folder was used to maintain the library of images. The graphics files have an "art layer" and "English" layer and a "second and in some cases a third language layer added.)
In InDesign the English layer was to be duplicated (duplicating both the graphics and the text) The text was then exported out as tagged type and translated into the second language and was to be flowed back in to the second language layer. InDesigns layer overrides would be applied to each of the duplicate images to turn off the English text layer and turn on the second language layer. One copy of all the graphics and one InDesign file containing each language layer with it's appropriate layer overrides.
To print the thought was to turn of the language layer visibility you didn't want and turn on the language layer you did want.
I hadn't anticipated the translation company would override the request to perform the translations in this manner and provided a single language file back instead.
I thought it was an efficent system. A single copy of each manual to deal with and single graphic files in a common library to be maintained. At some point e-publishing is being considered and I thought one e-book with all the languages in it could be created and within the e-reader the appropriate language could be enabled. Eventually, I anticipate, and hopefully prior to the e-book effort, we will be upgrading to CS5.5 to take advantage of it's enhanced e-pub features.
Like I said, I am new to this multiple language publication process and imaged the workflow to do the job rather slickly. Rather then having sequential languages one after another in the same book the languages would take advantage of the virtual Z dimension.
Fewer files to maintain, if a change was made to the english version the change could be made to all language layers on the same page.
Given your extensive experience I'd be interested in entertaining the pros and cons of sequential verses layered multlingual files. Seemed more efficient to duplicate the text in this manner then to duplicate all the graphic files. In some cases the manuals we are working with are so old (but not outdate) as to not even have digital versions. It's a big project and management within the company doesn't always think very far ahead. I'm attempting to develop a "plan" and not certain nor convinced it is the most appropriate so your advice and opinion would be recieved with great consideration. I haven't found a whole lot of resources regarding multilingual publishing. The project was sort of "thrown" at me and at the moment it's rather difficult to determine if I'm sinking or swimming. My head goes underwater but I could be doing the butterfly and that's suppose to happen.
Right now language needs are limited to the languages with land masses attached to ours North Central and South America. International Spanish was one choice, rather then having to support each dialect. That will likely change in the upcoming years but I know of no plans when.
Thanks again,
Mark

Similar Messages

  • Copy Illustrator contents to Indesign (Scripting) - Urgent

    Hi,
    I need to copy the contents of illustrator to indesign using scripting. Can any of you please help me to copy the contents from illustrator to indesign.
    Thnaks for help in advance

    ... Erm. What was the difference, then?
    BridgeTalk is a way to comunicate between Adobe applications -- for example, you can use it to trigger an InDesign script from Bridge to process selected indd-files (thumbnails) in Bridge. And vice versa, you can run a Bridge script from InDesign -- e.g. to get some metadata that you can't get directly from InDesign.
    Kasyan

  • How to copy the content of one file into another

    I have tried this code
    try {
                   fin = new FileInputStream("file path");
              catch(FileNotFoundException exc)
                   System.out.println("File not found");
                   return 0;
              catch(ArrayIndexOutOfBoundsException exc)
                   System.out.println("Usage: Showfile file");
                   return 0;
              while(true){
                   i=fin.read();
                   if(i==-1)
                        break;
                   cnt++;
              fin.close();*/
    now in this way i can lift one character at a time and copy it into another file (note i have not done the copy part in this code but that can be implemented) however this whole procedure is taking too much time if the size of the file is too big....kindly suggest another way to copy one file into another

    have you ever copied and pasted a large file in Windows or another OS? Larger files take more time to copy, that's just how it is.

  • Copy table contents between separated systems

    Hi!
    We have 3 different ECC6 SAP systems, on physically separated computers: DEV, TST and PRD.
    I would like to update some of the ZTABLE's content from the productive PRD system to the test TST system.
    Is there a standard solution for this?
    Thank you
    Tamá

    Hi,
    You can adjust table entries using SM30 like below way.
    <copy/pasted passage removed by moderator>
    Best Regards
    Manoj
    Moderator message: please do no copy/paste without listing the source!
    http://help.sap.com/saphelp_sm32/helpdata/en/67/86b1ef415811d1893d0000e8323c4f/content.htm
    Edited by: Thomas Zloch on Aug 16, 2011 2:20 PM

  • IS it possible to print image name/Path in a different layer in my existing indesign file??

    I want to print my image name and its path in a different layer in my indesign file.. Is it possible through script? Can any one help me how can I do this..

    Hi Tom,
    I'm pretty sure the IPTC data gets completely consumed inside an Adobe
    PDF file, even if the original images have this metadata or extended
    data (XMP) information. In other words, they do not make it through.
    Try downloading a copy of Enfocus Pitstop - I know you can link to an
    original authoring document (InDesign/Quark) through the CertifiedPDF
    route but you cannot display the image name?
    This is an interesting topic.
    Jon

  • To Copy the file content to another file and to delete the orginal file.

    Hi ,
    Can you pls let me know how i need to copy the contents of one file to other,
    For e.g   P_FL Consits of following records ( Assume that file need to created on application server)
      This is standard header ( header record)
    name  school class adreess ( item records)
    xyz     abc     1        kkkkk
    jjjj        cba     2       jkjkjkj
    uiui      cab     3       oioioioi
      i need to copy the above mentioned file contents( P-FL) into another file say P_NEWFL.
    so how i need to create this new file and how to copy the content of old file to new file.
    After copying the contents of old file to new file i need to delete old file.

    Sample code to implement this
    PARAMETER: p_file TYPE file DEFAULT 'd:\interface\In\barcoinbound2sap.txt',
               p2_file TYPE file DEFAULT 'd:\interface\In\backup_barcoinbound2sap.txt'.
    START-OF-SELECTION.
      OPEN DATASET p_file IN TEXT MODE ENCODING DEFAULT FOR INPUT.
      OPEN DATASET p2_file IN TEXT MODE ENCODING DEFAULT FOR OUTPUT.
      DO.
        READ DATASET p_file INTO line.
        IF sy-subrc NE 0.
          EXIT.
        ENDIF.
        TRANSFER line TO p2_file.
       IF sy-subrc NE 0.
         EXIT.
       ENDIF.
        SPLIT line AT ',' INTO lit_barco-prodnorder lit_barco-quant lit_barco-machtime lit_barco-duedate.
        APPEND lit_barco.
        CLEAR lit_barco.
      ENDDO.
      CLOSE DATASET p_file.
      CLOSE DATASET p2_file.
    dalete dataset p_file

  • InDesign File Sizes

    I'm experiencing some strange things with document file sizes in InDesign (CS3 and CS4)
    I have a document that's 2.6 Mb. When I delete all the content, it stays as 2.6 Mb.
    When I copy the content to another file, the new file is 1.6 Mb.
    When I delete the content from this document it becomes 1.7 Mb.
    I also had a document that was 260 Mb, deleted half of the content and it remained at 260 Mb.
    Has anyone else experienced such problems?
    Gordon

    Thanks Scott.
    Sorry, I should have stated that it's a RAID that's connected to our server.
    We update approx 300 files per week from the RAID on our client machines before copying our files back to it.
    I've just dropped the first file I tried from 50Mb to 5Mb by doing a "Save As".
    45Mb x 300 Adverts x 52 Weeks = 702 Gb in 1 year.
    Ouch!
    I guess we'll have to start saving over some old files.

  • Why is file size increasing while copiying contents of the file.

    Hi,
    Iam copying the contents of a file to another file using streams.But while doing this the size of the destination file is greater than the source file.For example, if iam copying the contents of file A whose size is 78 KB into file B then the size of B is 80 KB. Any body please explain the reason for this.The code i used for copying is given below.
    Thanks in advance.
    public static boolean copyFile(File srcFile,File destFile){
              FileInputStream fis = null;
              FileOutputStream fos = null;
              boolean isCopySucess = false;
              //============================================
              int ReadBytes = 0;
              int BUFSIZ = 4096;
              long fileSize ;
              long copiedBytes=0;
              try
                        fis = new FileInputStream(srcFile);
                        fos = new FileOutputStream(destFile);
                        fileSize = srcFile.length();
                        byte Buf[] = new byte[BUFSIZ];
                        while(copiedBytes < fileSize)
                             ReadBytes = fis.read(Buf, 0, BUFSIZ);
                             fos.write(Buf);
                             copiedBytes +=ReadBytes;
                        isCopySucess = true;
              }catch(Exception ex)
                   isCopySucess = false;
                   ex.printStackTrace();
              //============================================
              finally{
                   try {
                        if(fis != null)
                             fis.close();
                        if(fos != null)
                             fos.close();
                   } catch (final IOException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                   return isCopySucess;
         }

    ReadBytes = fis.read(Buf, 0, BUFSIZ);
    fos.write(Buf, 0, ReadBytes);

  • CS5 - Layer links get lost when copying/duplicating to another psd-file

    Hello,
    Following problem when using Photoshop Extended CS5 12.0.4 on OSX 10.6 described as example situation:
    1) You have a psd file with several layers and/or groups.
    2) Let's say 1 layer (N1) is linked to another layer(N2)  in that file and a further layer (N3) is again linked to another layer (L4). That makes 2 linked layers sets. (N1 and N2;  N3 and N4)
    3) When copying those linked layers to another existing file (either by using drag and drop, but also if using the duplicate layer/group menu option), all linked layers get linked together as one link, meaning that your previous SETS of linked layers are gone. (all 4 layers are linked together now as one instead of 2 separate sets of 2 interlinked layers.
    Note: The only way to partially fix it was to duplicate the group  into a new file (using duplicate layer group from menu option as new  file), but i require it to be working for copying content from one  existing file to another existing file, hence this method is not  satisfactory.
    4) Does anyone know how this can be fixed, it looks like a PS bug to me?
    Any suggestions appreciated, many thanks.
    Best regards
    Manuel

    Hi Dave, thanks for your swift reply.
    The sample i have posted is just to explain the priniciple. Usually we work on very complex images with loads of groups and linked content.
    Therefore drag each set of links is not really an option in this case, as it would cost quite a bit of time.
    Our workaround trick at the moment is to mark the linked layers in colours in the layer palette and relink them after they have been duplicated but again this is not ideal. Thank you for your response, much appreciated.
    Manuel

  • What are the advantages and disadvantages of suppressed and unsuppressed content in indesign layer option?

    what are the advantages and disadvantages of suppressed and unsuppressed content in indesign layer option?

    I occasionally use layers set to suppress output for holding text that differs from the text in the visible part of a document that I need for variables or TOC entries sometimes, or for notes or guides I want in the file but I don't want printed. You might also want to suppress a layer with some sort of overlay, like the die-lines for a die-cut piece, when you export a PDF for screen viewing.
    I'm sure you can come up with other reasons for having content on a page in the layout, but not in the final output.

  • Grown InDesign files with the same content from 40 MB to 430 MB

    Hello
    I have a recurring project where always the same pdfs with vector contents are included. The InDesign file had always around 40 MB.
    Since the update to CC the new .indd files suddenly grew to 230 MB, and at the next step to 430 MB.
    I resave the files under a new name, when new corrections come in, so i can go back to the last version and track changes, there are about 120 pages, with about 60 tables and 35 graphics that were opened and colored in CMYK in Illustrator.  From the 40 to the 430 MB nothing has changed on my course of action... How can that be what I can do?
    Thank you!
    Hallo,
    ich habe ein wiederkehrendes Projekt in dem immer die gleichen pdfs mit Vektor Inhalt enthalten sind. Die InDesign Datei dazu hatte immer um die 40 MB.
    Seit dem update auf CC sind die neuen .indd Dateien plötzlich auf 230 MB gewachsen, und beim nächsten abspeichern dann auf 430 MB.
    ich speichere die Dateien, wenn ein Schwung Korrekturen kommt immer neu ab, damit ich zur letzten Version zurückkehren kann, deshalb kann ich nachverfolgen, wann die Daten so gewachsen sind... der Inhalt ist immer gleich, es sind ca. 120 Seiten, mit ca. 60 Tabellen und 35 Grafiken, die als pdf mit Illustrator geöffnet und dort in CMYK eingefärbt wurden. Von den 40 bis zu den 430 MB hat sich an meiner Vorgehensweise nichts geändert... wie kann das sein, was kann ich dagegen tun?
    Danke!

    It's sometimes best when changing version of Indesign to use File>Export and choose IDML
    then open that in the new version of Indesign.
    You can do this with your current files and see if the problem is fixed.

  • Content of linked files in a inDesign-document refuses to update when edited.

    The problem:
    I have a question about linked files in an inDesign-document.
    We have a indesign-file (indd) wich contains text, linked map-illustrations and ads.
    One of the linked maps gets changed by an external map-producer via an VPN-tunnel. He works directly on one of the existing linked files (a map), and does not change the name or location of it after editing.
    After the change, we open the indd-file again, but no dialog-window appears telling us that a link needs to be updated. So we do it manually, but the changed content doesn't get updated in inDesign.
    If we target the linked file and choose to open it in illustrator for editing, all of the changes that was ment to be there, still is. It just doesn't show up in indesign. This also shows that the linking isn't the problem.
    The file is only placed at one spot in the document.
    Workaround:
    1. If WE (not the external map-producer) open the linked file and save it again (same name, same location), inDesign instantly promts us to update the link and the graphics updates without problem.
    2. If we place the file in a another location of the same inDesign-file, the correct content shows. (But still, the existing one does not update.)
    Question:
    Is there any way you can think of that could make this happen?
    If so, How can we solve it without having to use the workarounds?

    This will work if you all use the file syncing of the Creative Cloud desktop application and then you use the Collaborate option for the folder containing all the files. Then it will work on each of your desktops.
    Links to files will not work in the browser when viewing the InDesign document from https://creative.adobe.com/files.

  • I place a psd file with transparent background on another layer in my InDesign document. The layer b

    I placed a psd file with transparent background on another layer in my InDesign document. The layer below has a color (RGB). When the psd file is placed it changes the color on the layer below. I've tried other psd files thinking something is wrong with my file, but get the same result. I have tried for days to figure this out. Can anyone help me?

    Wow, thank you! That was fast. I googled that question to death and even bought (another) book on CS5 and never saw that answer. Thank you so much. You made a very good ending to my day! I'd buy you a beer if I could!!

  • Content generation error. Failed to open the InDesign file.

    Hey all -
    In importing an article to a folio, I just received this error:
    "Content generation error.
    Failed to open the InDesign file. Please confirm the file can be opened in InDesign."
    The file is open right now in InDesign. I can close it and reopen it with no errors.
    I've tried resaving the article to a new file. No help.
    I tried creating a new folio and importing the article there. No help.
    All links are good. It's a simple file with images, a scrolling pane, and some buttons that link to other articles.
    Anyone else run into this problem? Any solutions?
    Thanks!

    Im getting this error also....?
    Want to avoid inporting each artical on at a time. Need to import multiple articals at once.
    Thanks.

  • Creating pdf files from word document and allow copying of content

    I generate word documents and then save them in PDF format before sending out to clients.  Sometimes these documents contain quite a lot of data in table format and I want my clients to be able to copy the data from the tables and be able to paste it into excel.  How do I save as PDF and still allow copying of content?
    Thanks

    Open such a PDF in Adobe Reader: File | Properties | tab Security.  It will tell you if copying is allowed or not.
    I don't know if you can change these security options from Word; you'll have to ask Microsoft.  To change them after the PDF was created, you will need Acrobat.

Maybe you are looking for

  • Apple TV can't access iTunes, but I can send a movie from my iMac to Apple TV

    Why does my Apple TV 50% of the time not access my iTunes on my iMac, but when I go to my iMac and play a movie, I can then send that movie to my Apple TV and it works 100% of the time.  When I try accessing the iTunes from my Apple TV it says, "Unab

  • Labview Program will hang between 33% and 50% of the time.

    I have a problem with a Labview program I made. I have two programs that do the same thing. One is in flat sequence form and the other is in state machine form. As explained in the link below, I would like to make use of a microcontroller to make wir

  • How can i get iphoto 9?

    I am running OSX 10.5.8 and I have iphoto 7.1.5  I just spent many hours creating a calendar.  When I went to purchase it, I got an error message stating that apple doesn't support calendar purchases in iphoto 7 any longer, and I need to upgrade to i

  • New Mac Pro (late 2013)

    Having some weird issues with my new Mac Pro which I just received 3 days ago. To get setup I took my hard drives out of my old Mac Pro, installed them into a Promise Raid. One of the drives was my old startup drive which I had done a clean system in

  • Problème adobe premiere elements 12 - windows 8.1

    Hello, I already say that the pc that I have was installed by an electronics; Intel core i5 Mother board B85M-G I'm in windows 8.1 There is a recent one month. Problem with adobe: I entered photoshop and adobe premiere elements 12 at the same time, P