Move layers from one document to another

I have two catalouges of about 200 pages in two different languages. Each language is at a seperate layer. I want to move one layer to the other document. I can do that without problems for one page (with copy/paste in place). But is it possible to do easily with so many pages? As far as Im aware it cant be done in InDesign CS4, but maybe there is a plug in that can do the work?
Gert

I have a script that may do the job... I try to send it, I have some problems with this forum software...
Copy script to your indesigns script folder
Open your source and target documents
Backup them, results with scripts may sometimes be suprising, specially if script operates inside multiple documents
Hide all the other layers, keep the one you want to copy visible
Run the script
Keep Visible layers only checked
Hope it works
Script is originally made in german by Martin Fischer.
Direct link to script if attachment doesn´t work
http://files.getdropbox.com/u/133381/copyLayers.jsxbin

Similar Messages

  • A way to move layers from one file to another in actions?

    Ok, question for the gurus out there - rather than try to explain, I'll give you an example: Lets say I have a series of adjustment layers that I want to apply to a sequence of 40 images. The adjustments are in a layer group, and are saved as a separate file.
    I DON'T want to drag and drop them, I want to run an action that will copy the adjustments to each image- now I know I can save down each adjustment as a separate file, lets a curve (acv) a selective color (ahu) file and load THAT in as part of my action. But I don't want to do that either, because these adjustments will change and I want to easily re-render my changes on all 40 images in one step.
    I also don't want to use After Effects to do it, because my client doesn't own it. There used to be
    a way to move layers from one file to another in actions because I seem to remember doing it. The answer is not Duplicate Group either because that needs you to specify a destination file name.
    Is it possible to do this without scripting? I'm pretty sure it used to be because I seem to remember doing it, just cant remember HOW I did. Maybe I'm wrong about this though.
    Thanks and sorry for the long post, this has been baffling me for weeks.

    Thanks Ed, but as I explained above
    "I know I can save down each adjustment as a separate file, lets a curve (acv) a selective color (ahu) file and load THAT in as part of my action. But I don't want to do that either"
    What I want to know is is there a way to move adjustment layers from one file to another in an action. I know also that you can use the clipboard to move pixel layers, but I've yet to find a way to move adjustments.

  • [CS3 JS]  Move pages from one document to another?

    First, a brief explanation of what I am trying to do. I have several individual chapters that I am including in an INDD book. However, I also want to be able to allow those individual chapters to stand alone, meaning that I want to add a cover/title page to each chapter file (these two pages would be placed before the current page 1 of each chapter).
    My preference would be to write a script that would open the cover/tp file and open the first chapter file; this part is no problem. Where I am running into trouble however, is the second step: moving the cover/tp pages (2 pages) over into the chapter file.
    Manually, I would open Cover.indd, activate the "move pages" menu, "Move pages: 1-2", "Destination: Before_Page 1", "Move to: Chapter1.indd".
    With over 100 chapters in the book, however, I would prefer to automate the process. I have looked into the Page.move and PageItem.move elements, but both look like they would require a location in the current document (either in (x,y) form or using "AT_BEGINNING".
    If I cannot get this to work, I will likely try to insert two blank pages, then cut/paste with a script, but I would prefer the "move" functionality, if it is possible.
    A couple of answers to potential questions:
    I can't simply place the INDD cover file b/c it uses a text variable to pull the chapter name; this personalizes each stand-alone chapter.
    Same answer to why I can't just slap the 2-page .pdf on the front of each. I need the text variable to still be active.
    Has anyone tried to move pages from one document to another using scripting? I tried to explain what I am trying to do, but if it doesn't make sense, I can try again. :)
    thanks!
    Matt

    ok here we are
    I get a raw skeleton that you will have to adjust but it's functional.
    Use a PDF for placement as you can specify the page that you want to place.
    I don't know if you can do the same for indesign files.
    So basically, it starts adding 2 pages and placeing the pdf in the same time.
    After that, it creates the textVariable and the frame that will receive it.
    Here you are:
    //If a document is open
    if(app.documents.length!=0)
    var ad = app.activeDocument;
    //Pages placement
    for(i=0; i<2; i++)
    //Add 2 pages on top of the document;
    var tmpPg = ad.pages.add(LocationOptions.BEFORE, ad.pages[0]);
    //Here you place your pdf
    app.pdfPlacePreferences.pageNumber = i;
    tmpPg.place(File(cover.pdf), false)
    //You should specify page x and page y but ain't found yet the way to go.
    //Text variable creation
    //Check if the textVariable named "txtVar" does not already exist...
    if(ad.textVariables.item("txtVar")==null)
    //if not found, create the text variable named "txtVar"
    var txtVar = ad.textVariables.add();
    txtVar.variableType =VariableTypes.CUSTOM_TEXT_TYPE;
    txtVar.name = "txtVar";
    //Set the contents of the text variables to the string "test"
    ad.textVariables.item("txtVar").variableOptions.contents = "test";
    //these coordinates don't care aboutyour units but you may adjust them to your needs
    var y1 = ad.marginPreferences.left;
    var x1 = ad.marginPreferences.top;
    var y2 = y1+5;
    var x2 = x1+25;
    var myFrame = ad.pages[0].textFrames.add({geometricBounds:[y1,x1,y2,x2]});
    //Set the contents of the frame to the text variables "txtVar"
    myFrame.contents=ad.textVariables.item("txtVar").variableOptions.contents;
    //You may want to stylize the txtVar
    //In this case, either you use a existing characterStyle or you create one in the script
    Bye Loic

  • Copy/Move Layerset From One Document To Another Without Flattening

    Hello,
    Does anyone know how to move a layerset from one document to another using JavaScript ExtendScript, but without having to flatten the layers first as I still need to edit them after the move.
    Many Thanks,
    James

    This requires that you have the the two documents open the first document open is the one you are copying from with the layer/layers selected.
    activeDocument=documents[0];
    dupLayers();
    function dupLayers() {
        var desc15 = new ActionDescriptor();
            var ref12 = new ActionReference();
            ref12.putEnumerated( charIDToTypeID('Lyr '), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
        desc15.putReference( charIDToTypeID('null'), ref12 );
            var ref13 = new ActionReference();
            ref13.putName( charIDToTypeID('Dcmn'), documents[1].name );
        desc15.putReference( charIDToTypeID('T   '), ref13 );
        desc15.putInteger( charIDToTypeID('Vrsn'), 2 );
        executeAction( charIDToTypeID('Dplc'), desc15, DialogModes.NO );

  • When I move pages from one document to another, it creates a new alternate layout.

    Hello,
    I'm having an issue with combining some documents. Usually I use the "move pages" command and tell the pages to integrate with another document. However, because of the new alternate layout feature, both documents have the default layouts as "Letter V". So when I move pages from one document to the end of another, it creates a new alternate layout labeled "Letter V2" and "Letter V3" etc. Is there a way to make the pages just go into the main layout of Letter V without creating a new alternate layout? How do I merge alternate layouts created in the integrated document? All documents are the same page size and orientation.
    Thank you kindly,
    Sheena

    Petrill,
    Thank you. I was trying to do that yesterday, but it was grayed out. It seemed to work alright today.
    Thanks,
    Sheena

  • How to move sections from one document to another?

    In Pages 08 I could merge two documents by simply moving the sections from one document to the other one. By activating the thumbnail-view you could drag and drop sections. In Pages 5.2.2 that doesn't work. Any suggestions? Copy and paste doesn't work, because the layout is broken afterwards.
    Jan

    You only recourse in Pages v5 (any release) is copy/paste between documents, and its layout consequences; follow Peter's advice, or use a non-Apple word processing solution that allows you to get work done effectively. Apple put dumbnation into Pages v5.

  • Copying layers from one document to another problem?

    Hey there, so I have two documents of the same size (11 inches x 8.5 inches) and I am trying to copy some layers from an original document and move it to the second one. I'm doing this by just dragging the layers from the original to the new document. The problem is, the text or images are extremely smaller on the new document and if I blow them up, look really pixelated. What am I doing wrong? The original document is saved as a Photoshop PDF and I believe was made on CS4. I am currently using Photoshop CC 2014.

    Make sure the DPI/Resolution is the same for the new document as it is for the original.  Files created with 11x8.5 at 72 dpi will show up smaller on 11x8.5 at 300 dpi documents for example.  You can also right click on the layer and choose 'duplicate layer', then when the dialog open, select the name of the new document in the dropdown as the place to put the duplicate layer.  Either way, the dpi of both files should match.  Viewing the image size on the image menu can tell you the current DPI/Resolution.  Hope that helps with your problem some.  I'm not sure if the fact that the original is a PDF is causing an issue.

  • Copying layers from one document to another

    Hi using Cs6, locked down all the layers I didnt want to copy across, select all, copy .. new document select paste remembers layers, paste in front, all layers beautifully copied but I cant see any of them on the artboard, only in the layers panel.  There is nothing on top of the layers .. any suggestions much appreciated .. thanks

    Do a view >> outline view, do you see the elements anywhere?
    Zoom out, you may have pasted close to the edge of the pastboard
    If you had an element selected(that was inside a mask), and then did a paste in front or back, you may have nested the items inside a mask - though I doubt this is what happened since you have more than one layer.

  • FW CS5: Copy Page from one document to another without changing layers

    Hi,
    how can I copy a Page from one document to another without changing the layers?
    Drag-and-drop isn´t possible and by Copy-Paste all elements are placed in the same layer.
    Greetings,
    toho

    Use File > Import.
    Open the File, then navigate to the page you want to import
    Be sure to select Insert after current page, or FW will just import the content into the current page itself.

  • Move (or copy or cut and paste) entire sheet from one document to another.

    I have several sheets I want to move from one document to another and retain all formatting and spacing, etc.
    What is the best way to do this?
    Thanks

    On the left of the screen is the list of sheets and tables and charts. Select the sheet. Copy. Paste into the same area (i.e., in the area where the sheets are listed) of the new document.

  • Cannot move the pages from one document to another

    Hi,
    I cannot move the pages from one document to another, abobe gets crashed. I am not sure but I think this was happening when I try to copy or move the threaded content. How to resolve this, this is happening in both CS4 and CS5. Can anyone help me?

    Thanks for ur reply.
    1. Open two documents, for ex doc1 and doc2, doc1 contais 4 pages, doc2 contains 2 pages
    2. Using Move Pages from the Pages panel menu in doc1, moving 1st two pages to doc2
    Move Pages  : 1-2
    Destination   : After page 1
    Move to        : doc2
    Actually I was not able to copy the textframe which is linked with another, immediately it crashes.

  • Move Files from one document set to another document set using workflow

    Hi All,
    Env : SP 2013 Server - SPD 2013.
    I'm trying to make a SPD Workflow that must copy a  files from one Document Set to another Document set in the same library other document library  
    Does Someone already get success for Copy  files from one Document Set to another Document set?
    Thanks for your help.

    Hi,
    According to your post, my understanding is that you wanted to move Files from one document set to another document set using workflow.
    I recommend to use the custom workflow activity  Copy List Item Extended Activityto
    copy files to another document set.
    You can do this with codeless SharePoint Designer workflows as long as you can install the
    Codeplex Custom SharePoint Designer Workflow Activities. 
    These activities are also built-in to SPD2013. However, you can only use the custom activities in the SharePoint 2010 Platform.
    To install the custom activities, please follow the steps as below:
    Download the solution file form
    Useful Sharepoint Designer Custom Workflow Activities
    Copy the wps file to the Disk C.
    Open the SharePoint 2013 Management Shell.
    Run the command: add spsolution c:\ dp.sharepoint.workflow.wsp
    Open the Center Administration, click System Setting->Manage Farm Solution-> dp.sharepoint.workflow.wsp->Deploy to one or more Web Application.
    Open the SharePoint designer, create SharePoint 2010      Platform workflow, add action from Custom Actions.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • How do I copy layers from one image to another?

    I am editing figures for a journal and I need arrows for multiple images.  Is there a standard arrow?  I can only see free hand.  If I use a free hand arrow I then want to copy it to the other images for consistency.  How do I copy or share layers between images?

    There are many arrows in the shape tool, or you can set the line tool to have an arrowhead in the tool options. You can copy/paste layers from one image to another, or drag a layer from the layers panel into the main image window of another image and then use the move tool to position it. You can also drag into the thumbnail in the photo bin, but you'll still need to bring the image up to adjust the positioning.

  • How do I copy an art object from one document to another using illustrator API(C  )

    Hi, I'm trying to copy text and graphic elements from one document into another, does anybody has an idea how to do it using Illustrator SDK(C++)?
    Thanks in advance.

    If you call AIArtSuite::ReorderArt() giving the layer group handle from the target document and using art from the source document, it will move art between documents. That said, there are all sorts of caveats that come along with that -- some things move over automatically (graphic styles, symbols) while others cause problems. E.g. copying art that contains a swatch can cause a crash when you shut down the source document because it may keep the style reference to the swatch in the source document -- which goes away when the document is closed. Gradients in particular are a problem I believe. Straight up colours are (I think) fine. I've had to write a lot of workarounds for various headaches caused by moving art between documents.
    Bottom line: its very doable, but there are a lot of edge cases. This was clearly not an intended use of the SDK, though it is possible.

  • How to move cursor from one textfield to another textfield byusing enterkey

    hii all,
    I have a problem in java script.
    To move cursor from one textbox to another text box ,I have take the length of the textboxes of the first column.I used onkeyDown event .
    in the function ,firest i checked the condition like
    for(i=0;i<form1.box.length;i++) //box is the name of the textboxes
    if(event.keyCode==13)
    form1.box[i+1].focus();
    return false;
    by using this the cursor is moving from first text box to secon textbox and stops.
    if i use event.returnValue=false; instead of return false ,then the cursor automatically going to the laxt textbox of the column.
    my problem is how i can focus the cursor from one textbox to another textbox one after the other till the end.
    if any one has solution please help me.
    also if we can do in another way also,please help me.
    thanx.>

    try the following code :
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    <META NAME="Generator" CONTENT="EditPlus">
    <META NAME="Author" CONTENT="">
    <META NAME="Keywords" CONTENT="">
    <META NAME="Description" CONTENT="">
    </HEAD>
    <SCRIPT language="Javascript">
    function fnTest(str)     {     
              if(event.keyCode==13)          {
                   if(str == 4)     {
                        formHeader.box[0].focus();
                   else     {
                        formHeader.box[parseInt(str)+1].focus();
                   return false;
    </SCRIPT>
    <BODY>
    <FORM name="formHeader">
    <CENTER>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('0');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('1');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('2');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('3');">
    <br>
    <INPUT TYPE="TEXT" name="box" value="" onKeyDown="javascript:fnTest('4');">
    </CENTER>
    </FORM>
    </BODY>
    </HTML>
    ----------------------------------------------

Maybe you are looking for

  • How to restore documents after a clean install when location is not known?

    I have had some troubles with my computer recently and the person at the genius bar said I should wipe my drive clean and include everything except my library folders and system folder. The only thing I don't know how to restore is documents that are

  • SQL Query Problem - Please Help

    Post Author: nmellick CA Forum: Data Connectivity and SQL Hello, I am trying to use a query in CR9 to pull the latest date of a DREXAM for each patient.  The patient can have one item or several items.  When I run this query, it only pulls back one r

  • Making a credit note

    hi, there are two line items in the final invoice and the client now wants to make a credit note in such a way that for the first line item in the invoice she wants to give complete credit and for the second line item she wants to give partial credit

  • Oracle Business Rule interoperability

    Hello, I'm evaluating Oracle Business Rule for a project that is using Bea Weblogic products (WLS 9.2, Aqualogic, etc.). I understand that the new Oracle Soa suite is based on either Weblogic 10 or Websphere. I would like to know if it is possible to

  • Install failing on Server and Shared Components: Indesign Server CS3

    Two identical servers, same result on both servers. Windows 2003 x86 servers, up to date w/MS patches. .Net 3.5 sp1 installed. Run InDesign Server CS3 install, install takes a LONG time and then fails with the error below: I've looked for some sort o