How do you extract pages from .indd to create a new .indd?

How do you extract pages from .indd to create a new .indd?

Laubender schrieb:
@moseymums – two answers here:
1. Duplicate the document and remove all not wanted pages.
2.a Duplicate all selected pages in the Pages Panel to a different open InDesign file (the target) with the "Move Pages…" command.
2.b Remove all unwanted pages from the target InDesign file.
Uwe
But take care on text threads accross several pages. If you delete a page with a text frame linked to a thread accross several pages, the text will change to the beginning of the thread on every first page.
So it might be good to run a script which will unlink threadened text frames before.
If you have often to do this task, there are several plugins which will help you to perform this. E.g. Output factory from http://zevrix.com/

Similar Messages

  • How do i extract pages from within a pdf document?

    how do i extract pages from within a pdf document?

    Hi adobespurs,
    To extract pages from a PDF, you need to use Acrobat. If you don't have Acrobat, you can try it for free for 30 days. Please see www.adobe.com/products/acrobat.html for more information.
    Best,
    Sara

  • How do I extract pages from a Secured PDF file

    How do I extract pages from a Secured PDF file?

    Adobe would call that hacking, and don't allow discussion of it in this forum. You should contact the copyright holder and see if they are prepared to release the password, or an unsecured document, to you. If it's something made for you like a bank statement you should tell the bank how inconvenient their choices are.

  • Just had Adobe Reader 11 installed on my Mac desktop.  How do I extract pages from a PDF?

    Just had Adobe Reader 11 installed on my Mac desktop.  How do I extract pages from a PDF?

    You can extract pages with Adobe Acrobat, not Adobe Reader.

  • How do I extract pages from a pdf using 'Adobe PDF Pack'?

    How do I extract pages from a pdf using 'Adobe PDF Pack'?

    I think you have to buy extractor for 1.99 a month to extract PDF.  But I am having trouble activating it.  Good luck.

  • How do you combine pages from separate PDFs?

    How do you combine pages from separate PDF files into one document?

    I use Adobe Acrobat for this.

  • How do you transfer playlists from on computer to a new one, library has already been transfered

    how do you transfer playlists from on computer to a new one, library has already been transfered

    - Why not just copy the iTunes computer folder to the new computer?
    - You can transfer iTunes purchases to the computer by:
    iTunes Store: Transferring purchases from your iPhone, iPad, or iPod to a computer
    - You can transfer non-iTunes purchased music by using one of the third-party programs discussed in ths previous discussion:
    Best iPod to PC
    - Unless you can move/copy the iPod backup file from your old computer to the new one and restore from backup, you will have to restore to factory defaults/new iPod and thus loose all app date. The iPod backup file is located:
    Mac: ~/Library/Application Support/MobileSync/Backup/
    Windows XP: \Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    Windows Vista and Windows 7: \Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\

  • How to you transfer everything from your iphone to a new computer

    how do you transfer everything from your iphone to a new computer

    You transfer iTunes data computer to computer not from iPhone.
    see here
    http://support.apple.com/kb/PH1463
    and
    http://support.apple.com/kb/HT4527

  • How do you transfer data from old iPad to a new iPad?

    How do you transfer data from old iPad to a new iPad?

    iOS- Transferring information from your current iPhone, iPad, or iPod touch to a new device
    How to Transfer Everything from an Old iPad to New iPad
    iTunes Store- Transferring purchases from iOS device or iPod to a computer

  • HT201269 How do you transfer music from your iphone to your new computer on a new itunes

    How do you transfer music from your iphone to your new computer on a new itunes ... Thanks.

    Follow the steps given here  to get your iPhone synced to your new computer without data loss...
    https://discussions.apple.com/docs/DOC-3141

  • How do you shuffle the image order when creating a new slideshow in apterture 3?  i would like to do this automatically when creating a new slideshow.  i see how you do it when you just play a slideshow.

    how do you shuffle the image order when creating a new slideshow in apterture 3?  i would like to do this automatically when creating a new slideshow.  i see how you do it with presets when you just play a slideshow, but i don't see an option to randomly shuffle the slide order when you create a new slideshow.  i know you can sort it by different fields, but i want it to be random.  thanks.

    If you want to rearrange images in random order you can try an AppleScript:
    retrieve a list of selected images from Aperture
    shuffe the list properly
    create an album in Aperture and add the images from the list to the album (make sure that the album set to be orederd manually)
    Here  is a sample script that shuffles the selected images and displays them in random order in Full Screen Mode:
    on removeItem(ims, i)
      -- remove the item at position "i" from a list ims
              if ims is {} then return {}
              if (length of ims is 1) then return {}
              if i < 2 then return rest of ims
              if (i = length of ims) then return (items 1 thru (i - 1) of ims)
              if i > (length of ims) then return ims -- should be error?
              return (items 1 thru (i - 1) of ims) & (items (i + 1) thru (length of ims) of ims)
    end removeItem
    on shuffle_items(ims)
      -- shuffle the items of the list "ims" randomly
              local numitems, ims_shuffled, nextrest, nextpick, i
              set numitems to length of ims
              if length of ims < 2 then return ims
              set ims_shuffled to {}
              set nextrest to ims
              repeat until nextrest is {}
                        set i to (random number (numitems - 1)) + 1
                        set nextpick to item i of nextrest
                        set beginning of ims_shuffled to nextpick
                        set numitems to numitems - 1
                        set nextrest to removeItem(nextrest, i)
              end repeat
              return ims_shuffled
    end shuffle_items
    on shuffleIms()
      -- retrieve the selected images from Aperture
      -- and display them in random order in full screen mode
              local imageSel, shuffled, i
              tell application "Aperture"
      activate
                        set imageSel to (get selection)
                        set shuffled to my shuffle_items(imageSel)
                        set fullscreen to true
                        if imageSel is {} then error "Please select some images."
                        repeat with i from 1 to count of shuffled
                                  reveal {item i of shuffled}
      delay 3 -- chnage that to the time you want
                        end repeat
                        set fullscreen to false
                        return shuffled
              end tell
    end shuffleIms
    shuffleIms()
    Some more code snippets to go from here:
    To create an album:
                        tell library 1
                                  if not (exists album "shuffledAlbum") then
      make new album with properties {name:"shuffledAlbum", image version:shuffled}
                                  end if
                        end tell
    And to add the images from the shuffled list to the album:
                        repeat with i from 1 to count of shuffled
                                  duplicate item i of shuffled to album "shuffledAlbum"
                        end repeat
    Regards
    Léonie

  • Hi guys n girls. How do you copy a whole table to create a new table with all cell sizes in tact? Thanks for your help. Jason.

    Hi guys n girls. How do you copy a whole table to create a new table with all cell sizes in tact? Thanks for your help. Jason.
    when you copy n paste into a new table, all the cell sizes are changed.
    is there a way to put in a new table from your templates into an existing file, different to the standard very basic ones in insert table.
    I look forward to your answers.  Your help is very much appreciated.
    Also how do you search for question answers already written in this support area please.

    Hi Jason,
    In Numbers 3, you can select a whole table by clicking once in the table to make it active, then click once on the "bull's eye" at the top left.
    Now copy and paste. All formatting (and any cell content) is pasted intact. In Numbers 2.3 (Numbers '09) it is a little different for selecting a whole table. But I won't go into that unless you are using Numbers '09. Please reply.
    I don't like the look of the tables in Insert Table. I keep custom tables in My Templates. I have set Numbers > Preferences > General > For New Documents > Use template: (name of my favourite custom template)
    That opens when I launch Numbers, or ask for a new document (command n). Note that if you follow this preference setting, then Menu > File > New From Template Chooser (for another template) requires you to hold down the option key in that menu.
    Regards,
    Ian.
    Message was edited by: Yellowbox. All formatting (and any cell content) is pasted intact.

  • How can I extract pages from a PDF? The Tools menu is missing.

    I used to be able to extract pages from my PDF file. I don't see the tools icon anymore. How can I access the tools icon?

    Hi lenm,
    To extract pages, you need to use Acrobat (not Adobe Reader). As I can attest (because I do have both Reader and Acrobat installed on the same computer), it is quite easy to open files in Reader when you mean to open then in Acrobat. So, please make sure you have the right app open. (I pull this one all the time!)
    Now, if the Tools menu is missing from Acrobat, choose View > Show/Hide > Toolbar Items > Show Toolbars to make them reappear.
    Please let us know how it goes.
    Best,
    Sara

  • How do I extract pages from a PDF?

    I am trying to extract pages from a pdf document through Adobe XI and the command is not there through page thumbnails or through tools.  What can I do?  We have the current version which I verified through checking for updates.
    [Please choose only a short description for the thread title.]
    Message was edited by: Jim Simon

    "Adobe XI" does not exist.
    There is Acrobat XI (Standard or Pro).
    There is Adobe Reader XI.
    Acrobat XI Pro (and maybe Standard) can extract pages from a PDF.
    Adobe Reader XI cannot extract pages from a PDF.
    Once either application is open it is easy to determine which you have open.
    The "name" is in the top most "ribbon" of the application window.
    From what you've written it appears that you are using Adobe Reader XI.
    Be well...

  • How do you install programs from a disc onto the new Mac Book Pro?

    Can anyone say how do you install software from a disc/dvd onto the new Retina display Mac Book Pro?

    Maybe also this:
    DVD or CD sharing: Using Remote Disc

Maybe you are looking for

  • Can't get Adobe Flash to work reliably with Video

    I'm going NUTS trying to fix Adobe Flash - I hate this company and wish they would go out of business. Short of that, I want to use Safari as my default browser. Problem is, Adobe site says I have the latest version and shows it's working. However, m

  • How to setup SOAP Adapter in order to include BinarySecurityToken element

    Hi,   I am building an integration scenario where I need to configure a SOAP receiver that will include the BinarySecurityToken element (as described in http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0.pdf). The value

  • 3.2 download

    I am trying to download from apex.oracle.com the 3.2 version. I click the download link on the page, accept the license agreement, and download the Oracle Application Express 3.2.1 zip file. All that is downloaded is a 0 byte file. Any ideas why this

  • Apple tv claims i am not authorized to see purchased movie

    I can see other downloaded material and previous and free shows, but i am unable to see purchased movies.  I have authorized and deauthorized, and re-authorized my computer several times without success.  I have restarted my computer as well.  My sof

  • Tax error: Precedence Level: This Precedence level is already in use.

    Customer applied Vertex integration with Oracle Etax ,while update tax juristiction information and apply ,the error is out like below: Precedence Level: This Precedence level is already in use. You must create unique precedence levels for tax jurisd