Break a single pdf into single pdf's

I have a 250 page pdf.  each page represents a departments information.  Is there a way to break apart that pdf into single pdf's but using part of the file to name the pdf?
for example, if the first report has a title that contains department 123, I could extract that page and name it department 123.
The only want I know how to break a pdf into multiple pages is to use the document / extract pages and select Extract pages as seperate files.  But when I do this it uses the name of the exiting file and adds a number to it.
Also, i was just reading up on creating bookmarks. is there a way to set one bookmark and apply that across all other pages?
Thanks

Re extracting and renaming pages: This is done with a script, but it can
only be done if your pages are consistent and the script can identify the
text that is to be used for the file name. If you wish, you can send me
some sample files by email ([email protected]), or share them somewhere and
post the link here, and I'll let you know if I think it's possible.
Re bookmarks: What do you mean, exactly? You mean you want to copy&paste a
bookmark? No, that's not possible. But bookmarks can also be generated with
a script.

Similar Messages

  • "Save as PDF" breaks up the document into multiple PDFs

    Ever since my Lion install, when I open a doc in MSWord and try to "Save as PDF", it breaks up the document into multiple PDFs, not one saved PDF. Haven't seen this problem before. Anyone else experiencing this new "feature"?

    What version of Word?  It's working fine with my Word 2011 on Lion.  (version 14.1.2.  Applied SP1 and the .2 update.)
    A workaround would be to print, then select the PDF dropdown in the lower corner of the print window.
    Otherwise, you'll probably want to ask in the Microsoft forums, as Save As is using Word's programming code, not OSX's code like it does with the print function.

  • How can you insert "Page Break" in a pdf file so you will specify the pages

    How can you insert "Page Break" in a pdf file so you will specify the pages

    How / from what was the PDF originally created?  It would be easiest to insert page breaks into the original document, then recreate the PDF.

  • Breaking a long clip into 'sub-clips'

    So, I have a long clip that I've imported from, say a single long shot at an event.  I want to break that clip up into what used to be subclips.  I want to be able to treat those subclips as if they were clips - I want to be able to give them names, organize them in folders and I want to be able to drag them onto the timeline.
    My question is, how does Apple think we should be doing this?  The way that I see recommended around the web is:
    Select your 'master' clip. 
    Set In and Out points.
    Bring up the keyword editor.
    Enter a new keyword for that 'subclip'
    Doing this allows you to organize each 'subclip' by the keyword that's assigned to it and, by 'expanding' the master clip in the clip window, you can see the subclips/keywords in that master clip and you can drag them onto the timeline.
    There are big issues with this, however. 
    There is no easy way to organize these subclips.  Lets say I make 40 subclips (keywords) from a master clip.  I then organize them into folders, 20 per folder, according to how I want them grouped. When I select a folder, I see a list of 20 clips - all named the same ... they are all named after the master clip!  I have no way of telling which clip is which without individully exanding each clip!  I could go back to the actual master clip by looking at it under the Event and exanding the master clip to see the list of all the 'keywords' - but then I have no way of orgainizing them - they're all just under that master clip.
    What I want is not a 'keyword' - which is essentially a reusable identifier, used in this work-around as a single-use identfier - but a way of making parts of a master clip funtionally equivalent to the original master clip.  Just because I shot some things in one take - especially with event videography - that doesn't mean I want them grouped together for editing.  As far as I can see, there is no way to dissociate these subclips from the original master clip for the purposes of working with them.
    This is basic functionality ... so am I missing something?  What is the non-workaround way of doing this?
    Here is another explanation of the issue by a kindly blogger:
    http://fcpxquirks.tumblr.com/post/7122539715/so-far-the-biggest-workflow-problem -in-final-cut-10-0
    Thank you!
    A

    Well, the difference is you can't do anything, like drag to the timeline or scrub, with the names in the library pane, only in the clips pane. 
    But you're right, that does suggest an improvement over using the folder to reveal the (sub)clips in the clip pane.  I could drag the library pane as wide as possible so I can see as much of the 'subclip names'/'keyword collection names' as possible.  Then expand the folder I want in the library pane, revealing those names.  Then I click on the subclip/keyword I want, which reveals the (sub)clip in the clips pane. I can then drag it to the timeline or scrub it etc there.  That's probably also an improvement over expanding the master clip in the clips pane, though still a right hacky pain.
    I really don't think that being able to create subclips is an either/or with keywords.  They fullfill different needs.  Keywords do what they do well, but we still need the ability to create subclips, both from a logical workflow point of view and from a practical point of view, given how inconvenient this hack with keywords is.  It should be 5 step process ...
    1. You shoot your video, stopping and starting how it suits you at the during the shoot.
    2. You import the video.
    3. You break it up into clips for editing convenience.
    4. You label and group and fine tune those clips with the keywording system.
    5. You edit.
    The ability to non-hackily do Step 3 is missing in Final Cut Pro X, it seems.

  • How to break the name column into first,middle,last

    hi,
    Having a column in a table called employee_name which is
    containing the names of employees like:-
    employee_name
    Syed Azhar Husain
    Also having another table having cloumns first_name,middle_name, last_name
    I just want to write the query that break my employee_name column into
    first name, middle name, last name and
    store into table columns first_name, middle_name, last_name respectively
    i.e. it should display like
    first_name middle_name last_name
    Syed Azhar husain
    I am using oracle9i database.
    Thanks in advance
    Azhar

    Dear Asuri,
    Thanks for quick reply,
    your query was working fine when there was one record into the table but when there was more then one record into the table it was giving error "ORA-01427: single-row subquery returns more than one row". So i did small modification in the query as below
    SELECT SUBSTR(' ' || name || ' ', INSTR(' ' || name || ' ' , ' ', 1, rn) +1,
    INSTR(' ' || name || ' ' , ' ', 1, rn + 1) - INSTR(' ' || name || ' ' , ' ', 1, rn) -1) name
    FROM test , (SELECT ROWNUM rn FROM all_objects
    WHERE ROWNUM <= ( SELECT distinct(LENGTH(name) - (LENGTH(REPLACE(name, ' ')))) / LENGTH(' ') + 1
    FROM test ))
    order by name
    so above query is working fine with more than one record but there is another problem as i am explaining blow
    Suppose there is table called "test" as follows
    SQL> select * from test;
    NAME
    Rajendra kumar jain
    syed azhar husain
    Chander Shekhar Kumar
    when i am putting above query it is giving result as follows
    NAME
    Chander
    Kumar
    Rajendra
    Shekhar
    azhar
    husain
    jain
    kumar
    syed
    my requirement is that for complete full name like 'syed azhar husain' it should give
    name
    fist name : syed
    middle name: azhar
    last name: husain
    first name: rejendra
    middle name: kumar
    last name: jain
    first name: chander
    middle name: shekhar
    last name: kumar

  • Breaking up the weblogs into different categories

    It will be really nice to break up the weblogs into different categories based on technical areas(kind of like forum but not that many categories). There could be one category where all the general discussion weblog could be posted. I think this will generate more traffic towards weblogs. Right now lot of the technical weblogs are getting lost among the general content. Just a suggestion. Love to hear back from SDN members.

    Hi Sing,
    Once in a while this request comes up and I have the same reaction as Craig has. It's there, just select Topics and every one of them has it's own page.
    For example here is the EP page:
    https://www.sdn.sap.com/sdn/weblogs.sdn?blog=/weblogs/topic/22
    Your latest Weblog still on top although there were many other posts on the most recent weblogs page.
    It makes me think how we could better make it available to people. The weblogs as well as the link on the main EP page is directly to this page.
    Not sure what else can be done, besides a Weblog pointing it out again.
    Best, Mark.

  • When I capture from tape, express 4 now breaks my captured material into separate shots, an icon in the browser for each. Before it captured the whole clip till I hit escape, and created just one Icon. How to i get back the way it was.

    When I capture material from tape with final cut express 4, it used to create one icon for the whole clip. Now, when i capture, it breakes  the material down into many browser icons, shot by shot. I dont want that. How to I return to what I ahd before/

    What you describe is normal behavior for HDV capture using FCE.
    DV captures as one clip or may split the clip if there are timecode breaks on the tape.
    HDV always breaks clips at the shot changes using FCE.
    HDV cameras can downconvert to DV even if HDV was used to record the footage so it's important to know what the camera outputs during FCE capture.
    Maybe this is why you have had mixed results with the differing capture windows?
    Al

  • I am working on a book in the book module of Lightroom. When I started, I didn't realize that there was a limit of 240 pages. I am going to need to break this book up into two books now. Is there anyway to move pages from one book and create a new book wi

    I am working on a book in the book module of Lightroom. When I started, I didn't realize that there was a page limit of 240 pages. I am going to need to break this book up into two books now. Is there a way to take pages from one book to start a second book without having to "redo" the pages again in the new book?

  • ALV grid - how to break a long string into several lines?

    I have a ALV grid, where one of the fields contains a textstring that is typically 100 characters long.
    Is it possible to break this long string into shorter strings on multiple rows?
    Kind of like in Excel, when using row break...

    Thats not possible in ALV

  • Breaking up a project into smaller units for YouTube

    Hi,
    I used FCPX and Compressor to export a 55 minute FCPX movie for YouTube. The resulting 720p file, while looking fantastic, was 4.37 gigabytes and failed to upload to YouTube. Rather than compressing to a smaller, lower resolution movie, I think I'd rather break the movie up into four separate movies and upload those smaller files to YouTube. What I am asking is this: What's the easiest way to break up my project into separate movies, using either FCPX or Compressor?
    Thanks!

    rebbi wrote:
    Hi,
    I used FCPX and Compressor to export a 55 minute FCPX movie for YouTube. The resulting 720p file, while looking fantastic, was 4.37 gigabytes and failed to upload to YouTube. Rather than compressing to a smaller, lower resolution movie, I think I'd rather break the movie up into four separate movies and upload those smaller files to YouTube. What I am asking is this: What's the easiest way to break up my project into separate movies, using either FCPX or Compressor?
    Thanks!
    You can set IN and OUT points in the timeline to export just a section of the movie.
    But since you already exported, there is an easier way. Open the exported movie in MPEG Streamclip, set an IN and an OUT point, and do Save As...; repeat with other IN and OUT. This is quick, since it does not recompress the movie.

  • Break the page name into two lines..

    Hi,
    I am trying to break the page neme into lines.For example Knowledge Management is the name of a page in Detailed Navigation and I want it to be displayed linke Knowledge and Management in two lines.I was just adding the break statement within the page name but was not successful.Any Ideas ??
    Thanks.

    I think you'll need to write your own detailed navigation to do this. There are a set of tags to make this easier...
    Cheers

  • Way to break up published file into several SWFs?

    I really really want to use Captivate to develop training for
    my organization but one aspect of it is in our way - the size of
    the published SWF file. We're going a lot of system simulation and
    Captivate would be a great fit - but our LMS IT dept. has a fit
    when they see the files we need to post are 6MB+. Is there a way to
    have Captivate break each slide up into it's own SWF? Like Breeze
    does to Powerpoint slides. We're looking to publish this training
    to bank branches and bandwidth is tight. You don't want a bunch of
    steaming SWFs disrupting ATM and other branch traffic.
    If not, this is a much need feature to add in version
    3.

    Hi nudoru,
    I use a similar approach to get around the all-or-nothing
    background audio looping. For each project I have three
    sub-projects.
    1. The first is the intro project - a corporate
    marketing/branding-provided AVI converted into SWF with overlaid
    title Text Animation at the end.
    2. That branches into the main "body" project which contains
    the looped background audio and main presentation content.
    3. When the body reaches the end it branches into the closing
    project consisting of a video (another AVI converted into SWF) and
    copyright notice slide.
    At the end of the closing project I can then branch back to a
    main menu/project, a website, or just stop. None of my individual
    presentations are longer than three to four minutes though, and I
    try to limit the quantity of full-motion capture that comes from
    excessive window moving and resizing. As a result, the bulk of the
    body project swf file size comes from the audio track, ~1MB/minute.
    Hope this helps!
    Andrew.

  • How to break up a String into multiple array Strings?

    How do I break up a string into a bunch of String arrays after the line ends.
    For example,
    JTextArea area = new JTextArea();
    this is a string that i have entered in the area declared above
    now here is another sting that is in the same string/text area
    this is all being placed in one text field
    Sting input = area.getText();
    now how do I break that up into an array of strings after each line ends?

    Ok I tested it out and it works.
    So for future refrence to those that come by the same problem I had:
    To split up a string when using a textfield or textarea so that you can store seperate sections of the string based on sperate lines, using the following code:
    String text = area.getText() ;
    String[] lines = text.split("\n") ;
    This will store the following
    this is all one
    entered string
    into two arrays
    Cheers{
    Edited by: watwatacrazy on Oct 21, 2008 11:06 AM
    Edited by: watwatacrazy on Oct 21, 2008 11:16 AM
    Edited by: watwatacrazy on Oct 21, 2008 11:16 AM

  • Convert 1 single microsoft word document with section breaks to multiple pdf files

    I am a windows 7 users. I have a single microsoft word document which contain 1500 pages. These 1500 pages are seperated by sections breaks in the microsoft word. I am trying to convert this word document to multiple pdf files seperated by the section breaks in the Microsoft word. How can I convert the single microsoft word document with section breaks to multiple seperate pdf files?

    Acrobat (Adobe PDF Printer and PDFMaker ) doesn't recognize the Section breaks.  It never has as far as I am aware.  The easiest thing to do is to manually break up a copy of the MS Word Document into the Sections you need and then create the PDFs from those MS Word documents.

  • How do I break up a pdf file into smaller files?

    I have a huge pdf file that I am trying to send as an attachment but it is too large to send.  I need to break it up into about 10 different files.  Any help would be appreciated.

    Hi sbills04,
    To split a PDF (or extract pages), you need to use Acrobat. Please see https://acrobatusers.com/tutorials/how-to-break-a-pdf-into-parts
    Please let us know if you have additional questions.
    Best,
    Sara

Maybe you are looking for

  • Google Tasks Script

    I was looking for a way to access my Google Tasks, eventually to put into a widget for Awesome WM, so I created this script. it's based on http://privacylog.blogspot.com/2010/07/ - tasks.html but has some changes. That script created an e-mail that g

  • Send Mail to Customer while saving the Sales Order

    Dear Friends, My Requirment is to send the mail to Customer automaticaly when create any Sales Order. While sending the mail given three points reqired. 1.     Send the attachment of Order Conformation along with the mail. 2.     There must be The ti

  • Slow user interface graphics - Finder, Expose, Dashboard, etc...

    Hi, I just bought a new Mac Mini 2.0 w/ 1GB RAM. I'm not a gamer, so I didn't think the integrated graphics would be an issue for me. However, even simple things like opening Dashboard, dragging a Finder window, or double clicking to zoom on a photo

  • Error in query function

    Hi everyone!! I had created a function which returns a varchar2, this varchar2 is a query. This is to execute in the apex. Obviously the type of identification of region is SQL Query(PL/SQL function body returning SQL query) The error is the next: OR

  • Best practice for sending client ai files

    If a client requests ai files...and they don't have Illustrator - but they want the orig files for printers and vendors, should I save the file using legacy or just save as a normal cs4 ai file? Thx. Chemol