PDF- Filename automated from labelscript (after data merge)

Hello,
first of all I'm quite new in javascripting... but some simular scripts I have found on the internet could provide a solution for my problem.
What I've done is the following:  I've used Data Merge and created a 200-paged file with 1 label on each page. Each label has a labelnumber.
What I could do is export the file - split it up in 200 different pages - rename each file to the specific labelname. Seems a lot of work and this job I need to repeat about once a month.
I looked for a solution and came to these discussion: http://forums.adobe.com/thread/289666http://      http://forums.adobe.com/message/3178412#3178412
What I want to create is a script that I can run every month after I have updated my 200 labels and overrides all the pdf-files of the old labels.
With the different scripts I have found I constructed the code below.
The script works, it prints to multiple pdf's which have the correct labelnames, export is according to the requested presets,  but the CONTENT of each label is the content of the FIRST label (first page).
I have tried a lot of thing (trail&error) but as I said, I'm quite new to this matter...
So.... I can use some help or advice on this one.
Thanks in advance,
Dheart
function getLABEL_A(page) {
          for (var  currentTextFrameIndex=0;currentTextFrameIndex<page.textFrames.length; ++currentTextFrameIndex) { // Iterates over frames
               if (page.textFrames[currentTextFrameIndex].label=="LABEL_A") // if label is LABEL_A..
                    return page.textFrames[currentTextFrameIndex].contents; // ..returns text frame contents
          return null; // if not found, returns null
var LABEL_A;
     var pagesList=app.activeDocument.pages;
     for (var currentPageIndex=0;currentPageIndex<pagesList.length;++currentPageIndex) { // Iterates over pages list
          currentPage=pagesList[currentPageIndex];
          LABEL_A=getLABEL_A(currentPage);
          if (LABEL_A!=null) { // If we have a LABEL_A - PDF file name-
                var export_preset = app.pdfExportPresets.item("[Smallest File Size]");
               app.activeDocument.exportFile(ExportFormat.pdfType,"F:/.../"+LABEL_A+".PDF",false,export_ preset); //.. and save the file
          } else {
               alert("Page number "+currentPageIndex+" NO LABEL_A");
               alert(LABEL_A);

Thx for the reply, indeed this is a solution for consecutive numbering, however, the numbering is following another 'system' and in this case the numbering is given randomly.
Anyway, trying a lot of things,  gave me a working script!!!
The script exports a multipaged indesign file to single-paged pdf files. The namegiving of the pdf-files is automated and follows a labelscript (textlabel) on each page.
function getLABEL(page) {
          for (var  currentTextFrameIndex=0;currentTextFrameIndex<page.textFrames.length; ++currentTextFrameIndex) { // Iterates over frames
               if (page.textFrames[currentTextFrameIndex].label=="LABEL") // if label is LABEL..
                    return page.textFrames[currentTextFrameIndex].contents; // ..returns text frame contents
          return null; // if not found, returns null
var LABEL;
     var currentPage;
     var pagesList=app.activeDocument.pages;
     for (var currentPageIndex=0;currentPageIndex<pagesList.length;++currentPageIndex) { // Iterates over pages list
          currentPage=pagesList[currentPageIndex];
          LABEL=getLABEL(currentPage);
          if (LABEL!=null) { // If we have a LABEL PDF -file name-
              app.pdfExportPreferences.pageRange=String(currentPageIndex+1); // set up the export range..
                var export_preset = app.pdfExportPresets.item("[High Quality Print]");
                 app.activeDocument.exportFile(ExportFormat.pdfType,"F:// fill in destination"+LABEL+".PDF",false,export_preset); //.. and save the file
          } else {
               alert("Page number "+currentPageIndex+" without LABEL box");
               alert(LABEL);

Similar Messages

  • Filename automated from text?

    First off, thanks for reading. I am no scripter so forgive my ignorance.
    What I've done:
    I've used Data Merge to create one document with 44 pages. Each pages is a unique form letter with the person's name in a text box.
    What I need to do:
    Export each page as its own Jpg, with the filename being the persons name. So I guess, I need a script that will, upon naming the file, use that Text box as a filename. OR a script that will pull the <<name>> field from the data merge file.
    I've searched the forum and it looks like it was touched on here: http://forums.adobe.com/message/1875427#1875427
    But I don't need to use a field that isn't already on the page, as that fellow does. So maybe my problem is easier?
    Any advice or leads would be greatly appreciated.
    Thanks so much,
    Kayla

    Joe,
    Thanks for the advice, but, once again, I'm not the best at implementing it.
    Here's what I have in total:
    function getPersonName(page) {
              for (var  currentTextFrameIndex=0;currentTextFrameIndex<page.textFrames.length; ++currentTextFrameIndex) { // Iterates over frames
                   if (page.textFrames[currentTextFrameIndex].label=="PERSON_NAME") // if label is PERSON_NAME..
                        return page.textFrames[currentTextFrameIndex].contents; // ..returns text frame contents
              return null; // if not found, returns null
    var personName;
         var currentPage;
         app.jpegExportPreferences.jpegExportRange=ExportRangeOrAllPages.EXPORT_RANGE; // Export only given range pages
         app.jpegExportPreferences.exportingSpread=false;
         var pagesList=app.activeDocument.pages;
         for (var currentPageIndex=0;currentPageIndex<pagesList.length;++currentPageIndex) { // Iterates over pages list
              currentPage=pagesList[currentPageIndex];
              personName=getPersonName(currentPage);
              if (personName!=null) { // If we have a person name -jpeg file name-
                   app.jpegExportPreferences.pageString=String(currentPageIndex+1); // set up the export range..
    app.jpegExportPreferences.jpegQuality=Maximum;
                   app.jpegExportPreferences.resolution= X ;
                    app.jpegExportPreferences.jpegRenderingStyle=JPEGOptionsFormat.BASELINE_ENCODING;
                   app.activeDocument.exportFile(ExportFormat.JPG,"/Users/kaylasrodawa/Desktop/Flyers/"+pers onName+".JPEG"); //.. and save the file
              } else {
                   alert("Page number "+currentPageIndex+" without person name box");
                   alert(personName);
    I'm not sure if I added the quality stuff in the right place. Also, I've tried all sorts of values there, High, Maximum, "100", 100 etc etc. And every time it either says "expeted jpegquality enumerator, recieved "X" " or it says , "X undefined."
    So, obviously I'm still messing this up somewhere. I'd appreciate any more advice you could give. I know this is a longer commitment than you probably intended to make in the beginning. =D
    Kayla

  • Dynamic pdf filename creation from form data content

    Hello Community!
    Can someone give me step by step solution to dinamicaly take an invoice number (example field) and include it in the filename.PDF output?
    Thanks

    I do this a differnt way that you might find helpful. A prerequisite is that you can pass the invoice number as a variable in the jobline. The jobline would then look something like this:
    ^JOB INVOICE -fINVOICE -advDOC12345
    Then I set up job INVOICE to call transition file INVOICE.tdf with this content:
    O ' N 1 N N Y Y O
    S * CARD '^JOB' 1 1 1 10
    S * LINE '' 1 1 1 10
    E DESIGN CARD '-f' 1 1 1 2 80 0 0 ' '
    E ID CARD '-advDOC' 1 1 1 7 80 0 0 ' '
    E LINE LINE '' 1 1 1 1 100 0 0 ''
    #startscript CARD
    ^JOB @DESIGN.B -z..\pdf\@[email protected] ..\pdf\@[email protected] -afxon
    ^FORM @DESIGN.M
    #endscript
    #startscript LINE
    @LINE[1,--]
    #endscript
    You will now have:
    ^JOB INVOICEB -z..\pdf\INVOICE-12345 ..\pdf\INVOICE-12345

  • HELP!! Very Large Spooling / File Size after Data Merge

    My question is: If the image is the same and only the text is different why not use the same image over and over again?
    Here is what happens...
    Using CS3 and XP (P4 2.4Ghz, 1GB Ram, 256MB Video Card) I have taken a postcard pdf (the backside) placed it in a document, then I draw a text box. Then I select a data source and put the fields I wish to print (Name, address, zip, etc.) in the text box.
    Now, under the Create Merged Document menu I select Multiple Records and then use the Multiple Records Layout tab to adjust the placement of this postcard on the page. I use the preview multiple records option to lay out 4 postcards on my page. Then I merge the document (it has 426 records).
    Now that my merged document is created with four postcards per page and the mailing data on each card I go to print. When I print the file it spools up huge! The PDF I orginally placed in the document is 2.48 MB but when it spools I can only print 25 pages at a time and that still takes FOREVER. So again my question is... If the image is the same and only the text is different why not use the same image over and over again?
    How can I prevent the gigantic spooling? I have tried putting the PDF on the master page and then using the document page to create the merged document and still the same result. I have also tried createing a merged document with just the addresses then adding the the pdf on the Master page afterward but again, huge filesize while spooling. Am I missing something? Any help is appreciated :)

    The size of the EMF spool file may become very large when you print a document that contains lots of raster data
    View products that this article applies to.
    Article ID : 919543
    Last Review : June 7, 2006
    Revision : 2.0
    On This Page
    SYMPTOMS
    CAUSE
    RESOLUTION
    STATUS
    MORE INFORMATION
    Steps to reproduce the problem
    SYMPTOMS
    When you print a document that contains lots of raster data, the size of the Enhanced Metafile (EMF) spool file may become very large. Files such as Adobe .pdf files or Microsoft Word .doc documents may contain lots of raster data. Adobe .pdf files and Word .doc documents that contain gradients are even more likely to contain lots of raster data.
    Back to the top
    CAUSE
    This problem occurs because Graphics Device Interface (GDI) does not compress raster data when the GDI processes EMF spool files and generates EMF spool files.
    This problem is very prominent with printers that support higher resolutions. The size of the raster data increases by four times if the dots-per-inch (dpi) in the file increases by two times. For example, a .pdf file of 1 megabyte (MB) may generate an EMF spool file of 500 MB. Therefore, you may notice that the printing process decreases in performance.
    Back to the top
    RESOLUTION
    To resolve this problem, bypass EMF spooling. To do this, follow these steps:1. Open the properties dialog box for the printer.
    2. Click the Advanced tab.
    3. Click the Print directly to the printer option.
    Note This will disable all print processor-based features such as the following features: N-up
    Watermark
    Booklet printing
    Driver collation
    Scale-to-fit
    Back to the top
    STATUS
    Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.
    Back to the top
    MORE INFORMATION
    Steps to reproduce the problem
    1. Open the properties dialog box for any inbox printer.
    2. Click the Advanced tab.
    3. Make sure that the Print directly to the printer option is not selected.
    4. Click to select the Keep printed documents check box.
    5. Print an Adobe .pdf document that contains many groups of raster data.
    6. Check the size of the EMF spool file.

  • PDF docs disappear from iBooks after upgrading to iOS 4.2

    I recently upgraded my wifi-only iPad to iOS 4.2. Afterwards, when I opened iBooks, most of the .PDF publications I had previously stored there in the Library had disappeared -- just one remained out of 20! Are they gone permanently, or is there a way I can retrieve them? Phil in Toronto

    Check the "Media Kind" for the item under "Get Info > Options" change it to "Book"
    This seems to be a bug in 4.2.1

  • Is there a way to name the .indd files created by a data merge with values in the CSV file

    I have a data merge document that is set to single Record per Document page and 1 page per document.  In my CSV file I have a field for Part Number.  If I run a data merge with 10 records I end up with 10 .indd files.  I need a way so that the resulting .indd files are named the same value that is in the Part Number field.

    Loic has provided a link for my original piece, and I've written up some follow-up pieces for indesignsecrets.com:
    http://indesignsecrets.com/data-merging-individual-records-separate-pdfs.php
    http://indesignsecrets.com/data-merging-individual-records-separate-pdfs-part-2-scripting. php
    So there are several ways to get unique name PDFs from an indesign Data Merge. However, none of these 3 articles will truly answer your question of how to get unique indesign filenames using the database. I can see a practical purpose for this as merging business cards directly to PDFs is great, but I can be guaranteed that while on proof, there will be alts to the business cards that need to be done outside the merge, meaning specific records need to be exported to indesign files for further manipulation.

  • CS5 - Data Merge - Create Merged Document - Multiple Record - Ignore title/other objects on page?

    When I create a merged document with multiple records, the items usually come out right, but the problem is the the title or header of the page is usually also replicated into every line.
    Is there anyway to seperate certain objects/images/text/etc so that when I create the merged document (multiple records), it would not duplicate those items?
    This tutorial manages to do that:
    http://tv.adobe.com/watch/instant-indesign/automating-a-catalog-with-data-merge/
    But does not seem to explain how he keeps the title, seperation dots, etc, from duplicating with data merge.
    Thanks for any input

    I thought I had tried that, but I guess I didn't do it correctly because I just got it to work.
    Now I feel silly.
    Thanks Peter for your help

  • How do I automate a large catalog with several unique sections using Data Merge and Microsoft Excel?

    My boss would like me to use data merge to create a catalog with 300+ pages and unique data fields on almost every page. It is an informational catalog that would contain pictures and several unique fitment and specification fields for each product that we sell and manufacture on each page. For years the catalog was made and modified manually in quark express. Is it possible to use data merge to recreate such a complex document? Does anyone have any useful reccomendations or links for tackling this project? I really appreciate any advice or help.
    Thank You,
    Kevin
    Message was edited by: kpalombi

    Online video
    http://tv.adobe.com/watch/instant-indesign/automating-a-catalog-with-data-merge/
    Software
    http://www.65bit.com/home/home.shtm
    Data Merge Tips
    http://www.theindesigner.com/blog/episode-43-data-merge-video

  • Data Merge: Grouping data under a shared section title

    I am a total newb to using data merge in indesign. I watched the "Automating a Catalog with Data Merge" video and found it very helpful. I am creating a catalog for an auto parts company so I have a csv file with a field for Make, Model, Year Range, Part Number. I use Make as a header and put the other information below it. I do not want it to repeat Make (Honda) over and over.
    Rather than:
    Honda
    Accord         2005-2010     Part Number 4214-0100
    Honda
    Civic          2005-2010     Part Number 4214-0100
    Honda
    Odyssey     2005-2010     Part Number 4214-0100
    I would like it to display:
    Honda
    Accord         2005-2010     Part Number 4214-0100
    Civic          2005-2010     Part Number 4214-0100
    Odyssey     2005-2010     Part Number 4214-0100
    Can someone please give me some advice?
    Thanks!

    P Spier wrote:
    JonMedford wrote:
    I have tried this method but and I think this would suffice but it still doesnt format nicely. It puts too much space inbetween each row of data and not enough space between the sections I want to separate. I suppose I could do this by brute force once I get all of my data in, but this will be dreadful to do for a multiple hundred page catalog. Setting the merge to delete blank lines appears not to work. Not sure if this is a bug or not.
    A real catalog plugin is probably the way to go, but if you stick with Data Merge you can control spacing with paragraph styles, most likely. Apply a style with Space Before added to the paragraph containing the section.
    As far a removing blank lines, if the line isn't being removed, it probably means it isn't really blank. Blank means there can be NOTHING on the line except a field, and the field value in that record is null. If you have punctuation or white space of any sort on the line in additon to the field tag, it's never going to be blank, so you should be doing whatever concatenation you need in the data file first, as John mentioned.
    I might just do that. I am staring at this 138 page manual for the Smart Catalog plugin and trying to use the darn thing with very little success. There is not GUI formatting available and it is really frustrating.

  • How to create multiple editable PDFs from data merged Indesign file

    Hi
    This is quite complicated but I'm hoping someone can help me and hoping I can explain it too!
    I am working on a project for a client. She wants to send 150 people a 6 page PDF with fields to complete and return to her.
    She has an Excel spreadsheet with some of the fields completed already so these will be Data Merged into InDesign CS6.
    The short version of the question goes like this:
    Can you automate the process so that once all the data is in the InDesign file, it can then create a PDF every 6 pages all in one go?
    For those still interested, the long version of the question goes like this:
    I have created 3 pages in InDesign with fields to complete and used the 'Data Merge' facility to add the Excel info.
    I have created 3 more pages with blank fields to fill in.
    Then I have made all fields editable using the 'Buttons and Forms' facility in the Interactive menu.
    Then I have created an interactive PDF. Then I have opened that PDF in Adobe Acrobat X Pro and saved it as 'Reader Extended PDF' and 'Enable Additional Features'
    I now have an Editable PDF with half the fields filled in and half blank to be filled in and this can be saved and returned.
    Now, this would be great if it was only one or two. But I need to create 150 different versions and this is just for the Pilot study. If all goes well, this will go to 5,000 people and I can't be creating 5,000 seperate PDFS!!
    At this stage, I am just focussing on the 150. So again, going back to the original question, is there a script that could be written either to break up the 1st PDF every 6 pages into 150 different PDFS? Is there even a way of extending that script to Save as Reader Extended etc? Is there a simple idea that I'm missing? Are there any ways to do this? I can use 'Created Merged Documents' to make 150 x 6 pages in Indesign so can anything be done from there?
    Any advice greatly appreciated
    Thanks
    G

    Hi Akash,
    1) Pass the three header data in header table. 2) Pass all the item data in item table. here explain where you struck.
    Regards,
    Madhu.

  • 200+ files Data Merge automation to PDF

    I have many (200+) inDesign files in the folder that I would want to export to PDFs with the same name as inDesign files but,
    these inDesign files has Data Merge text fields that would not export to PDFs and would be empty in the final PDFs.
    My question is, is there any chance someone can help me with creating a script that would:
    1. open the window to select inDesign files (that has data merge text fields lnked to csv) that needed to be converted
    2. has option to autoutomatically update links that has been changed/updated
    3. automatically data merge records from linked csv when exporting to PDF files
    I would greatly appreciate your help,
    Thank you,
    Alex

    I have many (200+) inDesign files in the folder that I would want to export to PDFs with the same name as inDesign files but,
    these inDesign files has Data Merge text fields that would not export to PDFs and would be empty in the final PDFs.
    My question is, is there any chance someone can help me with creating a script that would:
    1. open the window to select inDesign files (that has data merge text fields lnked to csv) that needed to be converted
    2. has option to autoutomatically update links that has been changed/updated
    3. automatically data merge records from linked csv when exporting to PDF files
    I would greatly appreciate your help,
    Thank you,
    Alex

  • Data Merge (ID) then Split Documents with Filename

    Hey everyone,
    I'm using InDesign and Data Merge to create business cards for our printer, but we of course have the recepients proof them first.
    I was wondering if there was a way where after the Data Merge, I could separate every 2 pages into their own PDF (front and back of card).
    Even more awesome would be if the PDF filename could be "<<FirstName>><<LastName>>-BC-proof.pdf"
    Thanks!

    Created this desription for someone looking to help, may clarify:
    So here’s my workflow and goal result for these files.
    I am creating special business cards for a handful of people in our company. And since our print vendor usually handles proofs and approvals per individual, I’ve got to try and replicate that process for this piece.
    I created an InDesign file with the fields I need to populate from a spreadsheet with all their contact information.
    Data Merge works like it should, and my merged document contains the front and back of each card for each individual in the handful of people. But now, I need to send out a copy of each for the recipient to approve.
    Another helper here has been manually splitting the documents and sending them out for approval, but I’d very much like to streamline the process (from merge, to proof, to approval, to printer). And the printer will likely be needing these in separate files for shipping reasons.
    So now that I have a merged document, my goal would be to export every 2 pages with a filename of the “<<LastName>><<FirstName>>-COE_BC_PROOF.pdf” so our helper can get them sent out for approval.
    A second step may be to re-do this process with bleed for the printers (or if that seems too much, the proofs will just include bleed and what not so we can forward them straight to the printer).
    So wadda ya think?

  • How do I generate a data merge in InDesign from an excel spreadsheet which includes a barcode

    Can you please advise if the following process is possible within InDesign CS 5.5? (Mac OS 10.8.2).
    We need to create a data merge that includes a barcode. The data merge is for several thousand records.
    We have a customer-supplied Excel spreadsheet that contains seven fields, one of which is a number that ultimately needs to print as a barcode when we make the data merge in InDesign.
    As you would expect, the conventional six fields data merge perfectly - but we can't find a way to make the barcode print correctly within the data merge.
    We have investigated several possible solutions without success.
    Some solutions suggest a plug-in for Excel to convert the number into a barcode whilst still in the spreadsheet - but this doesn't come across correctly when we import the CSV file into the InDesign data merge.
    We have investigated certain third party software applications but none provide the full solution we require. Some, for example, appear to create the barcode within the Excel spreadsheet but don't produce the barcode correctly when we data merge in InDesign; and some will allow us to create a one-off barcode within InDesign but have no automated way of retrieving the thousands of Excel numbers and turning them into barcodes.
    We have also come across possible 'font' solutions but have had no success with these either.
    For a previous job we needed to produce we outsourced to a specialist mailing company, who assured us they produced the whole job (very quickly) within InDesign. They, understandably, won't tell us how they did it. But, given the speed with which they produced the job for us, we imagine - with the correct software - the whole process is easy to do.
    Can you please advise?

    HI MIKE
    Thanks again for your reply and your help with this.
    I've downloaded the barcode font from the link you supplied.
    I've tried three tests - and seem much closer to getting what we need. But I've come up against a couple of issues.
    TEST 1 - almost just to see if the downloaded font worked, I simply data merged our source csv file and applied the downloaded barcode font to the serial number in ID. Probably unsurprisingly, this produced a perfectly printed barcode - that wouldn't scan.
    TEST 2 - I manually added asterisks before and after the serial number in the first couple of fields and then tried the same process as TEST 1. It produced a perfectly printed barcode which this time DID scan correctly - but obviously the barcode had asterisks on it which I don't want. I just want the serial number. And with thousands of serial numbers we need the addition of the asterisks to happen automatically (which is where your text editor process seems the perfect solution, if we could get that to work).
    TEST 3 - Noting your comments about using parenthesis around the serial number, I followed your example of (123456). But Excel won't let me type a parenthesis. It lets me type the parenthesis but then instantly substitutes it with a - (hyphen) before the number in the actual serial number cell and no character at all after the number.
    If you have any suggestions or solutions for any of the above they'd be gratefully received! Thanks again for all your help with this.
    Kind regards
    Rob

  • Is there any way to name the records from a data merge?

    I have a spreadsheet, that has all the names for the images I'm using for a data merge. What I want to do is name the resulting records after the filenames in one of the columns in the spreadsheet. Is there anyway to do this? Or is there some other way to individually name the records from a data merge? I don't have any scripting prowess, so I can't really mess with that. Any help is greatly appreciated! Thanks!

    You merge it along with the others, just like any field. ID cannot do the naming for you during the merge, but most spreadsheets have lots of logic capabilities that should allow you to extract a name for the record from the filename in the column of your choice. The only reason ID knows to find the image instead of writing the filename is that you've used a special name for the field.

  • IDCS6 MACOSX JS: Data Merging many txt files one after another

    Hello everybody.
    I have a situation where I have to data-merge many text files to the one actual indesign "base" file. The formats of the databases are all the same, the point of difference is a code in the second field of the database that refers to a mailing zone (not a zip/postcode, a "distribution centre" code that has 56 or so possibilities). I would prefer to data merge one file and then somehow split the resulting PDF via Acrobat, but the length of the resulting mailing zones is inconsistent and something that can't be done though the "split document" feature in acrobat.
    The database starts out as one massive file but using a one-line  code, can be split into its mailing zones into separate text files.
    My ultimate question: is there any way to data merge more than one file at once (e.g. one after another) and give them their names based on the names of the input text file?
    Ole Kvern had a script to Data Merge one file without the UI. I have altered the last line slightly so that it outputs to a PDF based on [High Quality Setting]:
    if(app.documents.length != 0){
            var myDocument = app.activeDocument;
            app.dataMergeOptions.removeBlankLines = true;
            //Select a source file.
            var myDataFile = File.openDialog("Select a data file")
            var exported = "file location(redacted for the sake of this post)"
            if(myDataFile != ""){
                    myDocument.dataMergeProperties.selectDataSource(myDataFile,);
                    myDocument.dataMergeProperties.exportFile(exported,"[High Quality Print]",);
    I figure the answer has to do with the variable "myDataFile" and rather than being simply open a dialog, it would be somehow selecting an array of text files, but this is where I am out of my depth.
    Any insights or other thoughts that may not involve trying to do many merges at once but may somehow revolve around one large merged PDF?
    Many thanks
    Colin

    I've answered my own question, but the answer lies outside of Adobe InDesign – it uses bookmarks within Adobe Acrobat.
    1) Data Merge the art/data to one large PDF file.
    2) In the resulting PDF file, manually search out the mailing zones and apply bookmarks to each first instance only of each mailing zone. In this case, it is a manual process of find/replace to find one of 70 possible mailing zones that may be used in any database. Each bookmark should be named with its respective code. It is a manual process, but it would take 5 minutes so this is acceptable.
    3) Using "Split Document" from the pages panel, make sure the "top level bookmarks" radio button is checked, and in the Output Options make sure that the "Use bookmark names for files" radio button is checked.
    I'm aware that this was a rather obscure question that only a fraction of users on this forum may wish to know an answer for, but hopefully this workaround helps someone else in a similar situation.
    Colin

Maybe you are looking for

  • Since the iOS7.0.2 update to my iPhone 4S, I can no longer choose use of my Bluetooth device if using the power cord to listen to MUSIC or answer my phone (choice of powercord as 'dock,' speaker,

    Since the iOS7.0.2 update to my iPhone 4S, I can no longer choose use of my Bluetooth device if using the power cord to listen to MUSIC or answer my phone (choice of powercord as 'dock,' speaker, & phone only).  Was this former-feature now an oversig

  • Error in" BAPI_GOODSMVT_CREATE"

    Hi All, Thanks For the reply, My main problem is when i post goods  GR for the <b>subcontracting PO</b>  then only the error occurs <b>"Of the required quantity of material TM1252-2020, 1.000 EA remain(s) open"</b> When i post the GR for Standard PO

  • What's wrong with this?HELP

    What's wrong with this piece of code: clickhereButton.addActionListener(this);      ^ That's my button's name. Everytime I try to complie the .java file with this code in it it says: Identifier expected: clickhereButton.addActionListener(this); ^ Ple

  • Audio - mono/stereo

    Pretty new to FinalCut. I have imported and created a Media map with clips in it. Clips "item property" says its stereo. Same thing after pulling a clip into the wiever. Still stereo. From there on to the timeline or canvas it changes to mono? And I'

  • Set Default "Save As" Path When Launching

    Hello, Is it possible to pass command-line arguments to Reader (and what are the options)? I cannot seem to find documentation on this. Specifically, I would like to open a document, in Reader, from an external process, with the 'Save As' option poin