Requested: Data Merge Glitch Solutions

Hello,
I'm using data merge in InDesign cs5.5 but the merged file does not resemble the preview - if it generates at all.  Most of the time InDesign closes unexpectedly trying to generate a preview.  I did try skipping preview as suggested by related posts, to no success.  From what I've read so far, data merge glitches are normal with InDesign but I still need to produce a working file.  Any kind of solutions to such glitches would be greatly appreciated.  I'd also like to attach the file I've done so far in case anyone wouldl like to review it, but I'm new to online forums (this being my first post) and as of now, can't figure out a simple way to go about it.  So here are screen shots of the preview and the merged file instead.  Please feel free to show me how to attach a file too, if so inclined.  Thank you, and hope to hear from you soon. 
Preview:
Generated file:

So I'm having a similar issue. In Preview everything looks great. I get 23 pages of barcodes (or data merged information). I found there are 2 ways to do a merge. One is to create the merge, the other is to create PDF. I'm doing barcodes and need the file to be a PDF anyway, so it makes sense to go direct to PDF. My barcodes are 44 up on a sheet. If I create 1 page, 44 barcodes, I get the perfect 11x17 page with 44 barcodes. But if I try to do even 45 barcodes to go to the next page, I get a page full of the data box and no merged file. I tried without previewing. I then tried a new document and couldn't even get the 1 page of barcodes.
I am working in CS5. I do have CS6, I'll go try that and maybe this has been fixed.
I just tried doing a merge, not to PDF, and that was worse. That would put the first code on the page, correct position, next 43 codes next to the page, and keeps going until no space. The 45th code goes to page 2 and so on.
So weird that this would work a few months ago, and then not now. Well I did this same job a year ago. I'll also check to see if there are maybe some CS5 updates I missed.

Similar Messages

  • 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);

  • IDCS6/IDCC MACOSX 10.6 and up: Inability to create tagged PDF during "Export PDF" in Data Merge

    I have a rather odd question concerning an obscure feature of InDesign but have to ask it concerning a somewhat over-engineered solution to an ongoing problem. I will try to give an abridged version but forgive me if I ramble...
    I have a solution that splits a large PDF based on bookmarks in the document. The InDesign file doesn't use bookmarks itself; but has paragraph styles that have been tagged using the expert tagging feature of the paragraph style. Once in Acrobat, I am able to make new bookmarks from structure and voila... bookmarks that were based on tags.
    For this solution to work, a checkbox in the General window of the export PDF dialog box called "Create Tagged PDF" needs to be checked
    This checkbox is normally available when exporting PDFs from InDesign. However, when attempting to export PDF from the Data Merge panel, the dialog changes.
    The parts highlighted in green I expect to change; but the red change is unexpected and for my purposes, fouls up what I'm trying to do.
    I should stress that if the data merge file is merged to one large new InDesign file, then this problem doesn't happen. However, the amount of data that I'm dealing with (tens of thousands of records) would take too much time and be double-handling.
    Is this greying out of the checkbox a glitch;  is it intentional; or am I missing something?
    Concerning alternative ways of making bookmarks from a data merged PDF:
    I have tried using manual bookmarks applied to form fields and only the actual words that were made as a bookmark appear in the PDF;
    Merging to a new InDesign file is not an option given the record lengths that I work with (from 10,000 - 100,000)
    Acrobat does have a way of automatically tagging an untagged document; however the results have been less than desirable so far.
    There are a few third party applications for Acrobat that allow dynamic bookmarks based on type in certain positions, but many of these applications are Windows based. Mac compatible PDF-SAM looks promising but have had no testimonials on whether or not tasks like mine are possible.
    Colin

    Can also confirm that too Uwe. I thought those particular issues may just have to do with using the default [High Quality Print] setting... but no, Create Acrobat Layers and Include Hyperlinks can't be done regardless of how sophisticated the options within the export Adobe PDF dialog box (during data merge) is.
    I know this is a user-to-user forum but from time to time I see Dov Isaacs on here and was hoping he may have some insight. Even if the answer still remains that it can't be done, at least I can then consider more alternatives for this uncanny and frustrating procedure.
    Colin

  • How Do I get data merge to work without creating duplicate pages in a single page native file?

    I've called Adobe about this and they indicated it was some kind of setting that needed to be changed in InDesign, but wouldn't tell me how to do it unless I paid for an "incident pack" and talked with technical support.
    Problem: I have a single page document in InDesign CS5. It's a direct-mail postcard with large high-res images and complicated graphics on it. I want to merge a list of recipients names/addresses from Excel with this single-page design. Excel document has 2,000 names in it.
    I successfully create the merge using InDesign's data merge feature, but it creates a new InDesign document with 2,000 pages in it. Each page is a duplicate of my original file, but with different addresses on each page. Because of the multiple records and the high res images it has created 2,000 duplicates of - InDesign crashes. It also took about 4 hours to do the merge.
    There has got to be a better way to merge data w/o it created the same page over and over again.
    I can't make a pdf to solve this problem becasue I have to work with an in-house printer and they do a poor job of printing from pdf. So, I always send them native files. This printer does not have variable data software. However, if that is the fast and easy solution to this problem - I will force them to purchase it.
    Any advise or solution to this problem would be appreciated. Is there a setting in InDesign that needs to change so it doesn't repeat the single page design 2,000 times and cause InDesign to crash?
    Thank you.

    That's exactly how Data Merge works. If it's on the page, it gets duplicated. 2000 records is a lot, so I'm not sure if the images or the sheer number is what's slowing things down.
    One thing you can try is to moove everything EXCEPT the merge placeholders to a master page, then assign the [None] master to the page with the placeholder anbd do the merge. Change the master to the one with your static content after the merge. That might speed up the merge, but it won't do anything for the file being 2000 pages that each has to RIP for printing. The best way to deal with this is to find a printer who can do VDP printing and give him the template file and your data file, and let him do the merge in the print stream.

  • 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

  • Why won't data merge allow more than one data source at a time?

    I need to number tickets, 8 up on a tabloid page, in InDesign (CS5)
    I have found out how to use data merge, but it won't allow me to select more than one data source at a time, therefore, making me use 800 sheets of paper instead of 100. That's not acceptable!! Is there a way to merge the pdfs if I make 8 different ones in the places they need to be? Each file that I export will have 100 pages, so is there a way to merge the files to put all eight tickets on each sheet, sequentially? This is driving me nuts!!!!!!!

    Past users have solved this frustrating problem. You can find their solutions with a Google search like "InDesign data merge multiple sequential items on one page" without quotes.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices
    Frankie at Quad wrote:
    I need to number tickets, 8 up on a tabloid page, in InDesign (CS5)
    I have found out how to use data merge, but it won't allow me to select more than one data source at a time, therefore, making me use 800 sheets of paper instead of 100. That's not acceptable!! Is there a way to merge the pdfs if I make 8 different ones in the places they need to be? Each file that I export will have 100 pages, so is there a way to merge the files to put all eight tickets on each sheet, sequentially? This is driving me nuts!!!!!!!

  • Indesign CC 9.2 crashes upon opening the data merge panel

    I have a document that's in a book (of multiple files) with cross references to other documents in the book. I also have almost all the content in an inCopy assignment in order to manage multiple versions/layouts with the same content. All cross references are unlinked from inCopy as the page numbers vary from book to book.
    That said, while other documents in the book work fine, this one is having issues. Whenever I try to view the data merge panel it crashes. I had a similar problem with other files where if I try to select a data merge source it would crash. I fixed the problem by saving a copy, deleting all pages from the document, selecting the data merge source (which now works with no content on the pages), then copy/pasting the content back onto the pages. Not sure why this works but it did.
    The problem is that I tried the same solution on this document and now, and it worked until I tried click on the data merge panel after following those steps, inDesign crashes. If I open the data merge panel, THEN open the document, it crashes as well.
    I am going to attempt to redo this with the data merge panel open while I copy/paste content back in and see if I can narrow down the problematic content if that's the issue.

    I actually tried this already, it still crashes and the error is reproducible on four different computers here: 1 Mac and 3 Windows machines. I didn't even restore my old preferences, I just did the reset and it still has the issue. Note it's not crashing when I use data merge, simply when I try to view the panel.
    The only thing that differentiates this document from the other ones I've had issues with that I got my work-around to fix is that the cross-references point to other documents (where the other ones I've managed to fix have cross-references within the same document).
    For the sake of my sanity I may just convert the (2) cross-references to text if they are in fact the issue.

  • [CS5.5/6] - XML / Data Merge questions & Best practice.

    Fellow Countrymen (and women),
    I work as a graphic designer for a large outlet chain retailer which is constantly growing our base of centers.  This growth has brought a workload that used to be manageable with but two people to a never ending sprint with five.  Much of what we do is print, which is not my forte, but is also generally a disorganized, ad-hoc affair into which I am wading to try to help reduce overall strain.
    Upon picking up InDesign I noted the power of the simple Data Merge function and have added it to our repetoire in mass merging data sources.  There are some critical failures I see in this as a tool going forward for our purposes, however:
    1) Data Merge cannot handle information stored and categorized in a singular column well.  As an example we have centers in many cities, and each center has its own list of specific stores.  Data merge cannot handle a single column, or even multiple column list of these stores very easily and has forced us into some manual operations to concatenate the data into one cell and then, using delimiter characters, find and replace hard returns to seperate them.
    2) Data Merge offers no method of alternate alignment of data, or selection by ranges.  That is to say:  I cannot tell Data merge to start at Cell1 in one column, and in another column select say... Cell 42 as the starting point.
    3) Data merge only accepts data organized in a very specific, and generally inflexible pattern.
    These are just a few limitations.
    ON TO MY ACTUAL DILEMMA aka Convert to XML or not?
    Recently my coworker has suggested we move toward using XML as a repository / delivery system that helps us quickly get data from our SQL database into a usable form in InDesign. 
    I've watched some tutorials on Lynda.com and havent yet seen a clear answer to a very simple question:
    "Can XML help to 'merge' large, dynamic, data sets like a list of 200 stores per center over 40 centers based off of a single template file?"
    What I've seen is that I would need to manually duplicate pages, linking the correct XML entry as I go rather than the program generating a set of merged pages like that from Data Merge with very little effort on my part.  Perhaps setting up a master page would allow for easy drag and drop fields for my XML data?
    I'm not an idiot, I'm simply green with this -- and it's kind of scary because I genuinely want us to proceed forward with the most flexible, reliable, trainable and sustainable solution.  A tall order, I know.  Correct me if I'm wrong, but XML is that beast, no?
    Formatting the XML
    Currently I'm afraid our XML feed for our centers isnt formatted correctly with the current format looking as such:
    <BRANDS>
         <BRAND>
              • BrandID = xxxx
              [Brand Name]
              [Description]
              [WebMoniker]
              <CATEGORIES>
                   <CATEGORY>
                        • xmlns = URL
                        • WebMoniker = category_type
              <STORES>
                   <STORE>
                        • StoreID = ID#
                        • CenterID = ID#
    I dont think this is currently usable because if I wanted to create a list of stores from a particular center, that information is stored as an attribute of the <Store> tag, buried deep within the data, making it impossible to 'drag-n-drop'. 
    Not to mention much of the important data is held in attributes rather than text fields which are children of the tag.
    Im thinking of proposing the following organizational layout:
    <CENTERS>
         <CENTER>
         [Center_name]
         [Center_location]
              <CATEGORIES>
                   <CATEGORY>
                        [Category_Type]
                        <BRANDS>
                             <BRAND>
                                  [Brand_name]
    My thought is that if I have the <CENTER> tag then I can simply drag that into a frame and it will auto populate all of the brands by Category (as organized in the XML) for that center into the frame.
    Why is this important?
    This is used on multiple documents in different layout styles, and since our store list is ever changes as leases end or begin, over 40 centers this becomes a big hairy monster.  We want this to be as automated as possible, but I'd settle for a significant amount of dragging and dropping as long as it is simple and straightforward.  I have a high tollerance for druding through code and creating work arounds but my co-workers do not.  This needs to be a system that is repeatable and understandable and needs to be able to function whether I'm here or not -- Mainly because I would like to step away from the responsibility of setting it up every time
    I'd love to hear your raw, unadulterated thoughts on the subject of Data merge and XML usage to accomplish these sorts of tasks.  What are your best practices and how would you / do you accomplish these operations?
    Regards-
    Robert

    From what I've gleaned through watching Lynda tutorials on the subject is that what I'm hoping to do is indeed possible.
    Peter, I dont disagree with you that there is a steep learning curve for me as the instigator / designer of this method for our team, but in terms of my teammates and end-users that will be softened considerably.  Even so I'm used to steep learning curves and the associated frustrations -- but I cope well with new learning and am self taught in many tools and programs.
    Flow based XML structures:
    It seems as though as long as the initial page is set up correctly using imported XML, individual data records that cascade in a logical fashion can be flowed automatically into new pages.  Basically what you do is to create an XML based layout with the dynamic portion you wish to flow in a single frame, apply paragraph styles to the different tags appropriately and then after deleting unused records, reimport the XML with some specific boxes checked (depending on how you wish to proceed).
    From there simply dragging the data root into the frame will cause overset text as it imports all the XML information into the frame.  Assuming that everything is cascaded correctly using auto-flow will cause new pages to be automatically generated with the tags correctly placed in a similar fashion to datamerge -- but far more powerful and flexible. 
    The issue then again comes down to data organization in the XML file.  In order to use this method the data must be organized in the same order in which it will be displayed.  For example if I had a Lastname field, and a Firstname field in that order, I could not call the Firstname first without faulting the document using the flow method.  I could, however, still drag and drop content from each tag into the frame and it would populate correctly regardless of the order of appearance in the XML.
    Honestly either method would be fantastic for our current set of projects, however the flow method may be particularly useful in jobs that would require more than 40 spreads or simple layouts with huge amounts of data to be merged.

  • Variable text files in CS 5.5 data merge

    I have a document that I need to change the text in the document based on a variable in the data file that is being used for the data merge. For example if the are in group A the get letter from text document A, if they are in group B they get the letter from text document B.
    Can the data merge in CS 5.5 do this?

    not with text and not by itself, but a solution is workable.
    indesign's data merge can't place text files as if they were merging pictures, but it can place pictures from jpg, eps, pdf... if the text which changed was a picture, say a PDF, then this would be fine.
    as to telling data merge what is variable, indesign won't parse the data as such... it'll just put the data wherever the placeholders were. if you want if/else statements, these need to be done in the excel file first prior to saving as a text file for indesign.
    so yes, what the OP wants is do-able, but not "off of the shelf" - some manipulation in excel is required.

  • How can I generate a data merge that includes a barcode from excel spreadsheet to InDesign?

    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?

    See second posting atHow do I generate a data merge in InDesign from an excel spreadsheet which includes a barcode

  • Can I use InDesign's Data Merge for more than just address labels?

    I am a Graphic Designing working on a new science exhibition in Melbourne, Australia.
    I'm trying to streamline the way we import our label content into InDesign (currently cut and paste from Word which is slow and leaves room for error). I've been going down the path of having a macro developed which converts the Word content into a csv file so I can then import this into InDesign through data merge, however the import is falling over.
    Through testing we can conclude that data merge doesn't like paragraph breaks, en-dashes and apostrophies (and possibly more we haven't come across) and will only import data up until one of these items occurs in the data. We've tested a number csv file formats however we can't find a solution.
    Has anyone come up with a solution for this? My macro developer would be keen to get a hold of a working csv file that deals with these issues...
    Thanks!

    I have done what you are describing, with Word & InDesign, on a daily basis, for years. Word is not the best choice for this kind of workflow, of course, but if I had to choose between placing Word & doing a data merge with CSV, I'd be torn. Neither one is really the tool for the job. XML import would suit you better, but if you're already midstream in VBA development, there's no point in trying to describe why placing carefully styled RTFs and clearing overrides is better than writing VBA to clean up Word files and turn them into CSV.
    (Look at style mapping in Import Options when placing a Word file for future projects.)
    (Also: it's not extra codings that you want to apply in VBA, it's purging Word-specific "Symbols" and just using true Unicode values for em dashes and other typographical symbols.)

  • Data Merge Crash

    This has probably been answered. Please link me to the solution if its been addressed already.
    Data Merge Indesign CS2 crashes once I click "Create Merge Document"
    Process:         Adobe InDesign CS2 [94022]
    Path:            /Applications/Adobe InDesign CS2/Adobe InDesign CS2.app/Contents/MacOS/Adobe InDesign CS2
    Identifier:      com.adobe.InDesign
    Version:         4.0.5.688 (4050)
    Code Type:       PPC (Translated)
    Parent Process:  launchd [98]
    Date/Time:       2011-02-11 15:05:16.508 -0600
    OS Version:      Mac OS X 10.6.6 (10J567)
    Report Version:  6
    Interval Since Last Report:          1304888 sec
    Crashes Since Last Report:           458
    Per-App Interval Since Last Report:  5785 sec
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                      7A37D15A-1CF1-4B3C-9B73-C53FFD992474
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0
    Thread 0 Crashed:
    0   com.adobe.InDesign                0xb80c5d10 0xb8000000 + 810256
    1   com.adobe.InDesign                0xb80c0037 0xb8000000 + 786487
    2   com.adobe.InDesign                0xb80dd8e8 0xb8000000 + 907496
    3   com.adobe.InDesign                0xb8145c1d spin_lock_wrapper + 3973
    4   com.adobe.InDesign                0xb801ceb7 0xb8000000 + 118455
    Thread 1:
    0   libSystem.B.dylib                 0x801430fa mach_msg_trap + 10
    1   libSystem.B.dylib                 0x80143867 mach_msg + 68
    2   com.adobe.InDesign                0xb819440f CallPPCFunctionAtAddressInt + 206231
    3   libSystem.B.dylib                 0x8017085d _pthread_start + 345
    4   libSystem.B.dylib                 0x801706e2 thread_start + 34
    Thread 2:
    0   com.adobe.InDesign                0xb815acc0 spin_lock_wrapper + 90152
    1   com.adobe.InDesign                0xb8179c5b CallPPCFunctionAtAddressInt + 97763
    2   com.adobe.InDesign                0xb80e88cb 0xb8000000 + 952523
    3   ???                               0xcb6abe4a 0 + 3412770378
    Thread 3:
    0   com.adobe.InDesign                0xb815aa8b spin_lock_wrapper + 89587
    1   com.adobe.InDesign                0xb818c3eb CallPPCFunctionAtAddressInt + 173427
    2   com.adobe.InDesign                0xb818eeec CallPPCFunctionAtAddressInt + 184436
    3   com.adobe.InDesign                0xb80e88cb 0xb8000000 + 952523
    4   ???                               0x8aace216 0 + 2326585878
    Thread 4:
    0   com.adobe.InDesign                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign                0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.InDesign                0xb80c0037 0xb8000000 + 786487
    4   com.adobe.InDesign                0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.InDesign                0xb8145397 spin_lock_wrapper + 1791
    6   com.adobe.InDesign                0xb801ceb7 0xb8000000 + 118455
    Thread 5:
    0   com.adobe.InDesign                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign                0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.InDesign                0xb80c0037 0xb8000000 + 786487
    4   com.adobe.InDesign                0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.InDesign                0xb8145397 spin_lock_wrapper + 1791
    6   com.adobe.InDesign                0xb801ceb7 0xb8000000 + 118455
    Thread 6:
    0   com.adobe.InDesign                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign                0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.InDesign                0xb80c0037 0xb8000000 + 786487
    4   com.adobe.InDesign                0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.InDesign                0xb8145397 spin_lock_wrapper + 1791
    6   com.adobe.InDesign                0xb801ceb7 0xb8000000 + 118455
    Thread 7:
    0   com.adobe.InDesign                0xb815a8c8 spin_lock_wrapper + 89136
    1   com.adobe.InDesign                0xb8176d61 CallPPCFunctionAtAddressInt + 85737
    2   com.adobe.InDesign                0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.InDesign                0xb80c0037 0xb8000000 + 786487
    4   com.adobe.InDesign                0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.InDesign                0xb8145c1d spin_lock_wrapper + 3973
    6   com.adobe.InDesign                0xb801ceb7 0xb8000000 + 118455
    Thread 8:
    0   com.adobe.InDesign                0xb815aa8b spin_lock_wrapper + 89587
    1   com.adobe.InDesign                0xb818c3eb CallPPCFunctionAtAddressInt + 173427
    2   com.adobe.InDesign                0xb818eeec CallPPCFunctionAtAddressInt + 184436
    3   com.adobe.InDesign                0xb80e88cb 0xb8000000 + 952523
    4   ???                               0x8aace216 0 + 2326585878
    Thread 9:
    0   com.adobe.InDesign                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign                0xb80e88cb 0xb8000000 + 952523
    3   ???                               0x8bac77ea 0 + 2343335914
    Thread 10:
    0   com.adobe.InDesign                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign                0xb80e88cb 0xb8000000 + 952523
    3   ???                               0x8bac77ea 0 + 2343335914
    Thread 11:  com.apple.CFSocket.private
    0   com.adobe.InDesign                0xb815ac81 spin_lock_wrapper + 90089
    1   com.adobe.InDesign                0xb816ad6f CallPPCFunctionAtAddressInt + 36599
    2   com.adobe.InDesign                0xb80c6b13 0xb8000000 + 813843
    3   com.adobe.InDesign                0xb80c0037 0xb8000000 + 786487
    4   com.adobe.InDesign                0xb80dd8e8 0xb8000000 + 907496
    5   com.adobe.InDesign                0xb8145c1d spin_lock_wrapper + 3973
    6   com.adobe.InDesign                0xb801ceb7 0xb8000000 + 118455
    7   ???                               0xf0592a90 0 + 4032375440
    Thread 12:
    0   com.adobe.InDesign                0xb815a8ff spin_lock_wrapper + 89191
    1   com.adobe.InDesign                0xb8176e5d CallPPCFunctionAtAddressInt + 85989
    2   com.adobe.InDesign                0xb80e88cb 0xb8000000 + 952523
    3   ???                               0x8bac77ea 0 + 2343335914
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0xb80c5ce8  ecx: 0x00000000  edx: 0x00000002
      edi: 0x00000000  esi: 0x80a059a0  ebp: 0xb7fffa08  esp: 0xb7fff9d0
       ss: 0x0000001f  efl: 0x00010202  eip: 0xb80c5d10   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
    0x3fffa000 - 0x3fffbff7  BDL.dylib 38.0.0 (compatibility 1.0.0) <7962366F-BF58-160E-0B73-338F0736B27C> /usr/libexec/oah/Shims/BDL.dylib
    0x3ffff000 - 0x3ffffff7  libSystem.B.dylib 38.0.0 (compatibility 1.0.0) <63852FDA-04FA-AAA0-67E6-CBB15F6920F1> /usr/libexec/oah/Shims/libSystem.B.dylib
    0x40003000 - 0x40005ff7  CoreFoundation 38.0.0 (compatibility 150.0.0) <F267D656-C1AD-07A8-2CCC-9D40323BE626> /usr/libexec/oah/Shims/CoreFoundation.framework/CoreFoundation
    0x40013000 - 0x40013ff7  ApplicationServices 38.0.0 (compatibility 1.0.0) <3CCC383E-7267-5DBD-BFFF-DF0132FED485> /usr/libexec/oah/Shims/ApplicationServices.framework/ApplicationServices
    0x40017000 - 0x4001bff7  libGFXShared.dylib ??? (???) <9E14BE2F-C863-40E9-41A6-1BE9045663A0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x403e1000 - 0x403e4ff7  libCoreVMClient.dylib ??? (???) <973B9E1F-70B3-2E76-B14B-E57F306AD2DF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x407a0000 - 0x407a8ff7  IOKit 38.0.0 (compatibility 1.0.0) <DCA9B384-0F69-C525-ED46-383C34F025ED> /usr/libexec/oah/Shims/IOKit.framework/IOKit
    0x407ae000 - 0x407b2ff7  IOSurface ??? (???) <235E7E3D-B6E5-0AAA-C41A-7AC1F54A7EBF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x40ef8000 - 0x40f2dff7  GLEngine ??? (???) <68F67685-19B4-CB0E-6CE2-89A0F87BEAEE> /usr/libexec/oah/Shims/GLEngine.bundle/GLEngine
    0x415cf000 - 0x41600ff7  libGLImage.dylib ??? (???) <E3EC8E92-4DDD-E7B8-3D38-C5A5160A4930> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x4165c000 - 0x41680fe7  GLRendererFloat ??? (???) <1274B762-2FB9-48FE-EAFD-C459B2B4BECC> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x80000000 - 0x8005dff7  com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x8007d000 - 0x800e7fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x80142000 - 0x802e9ff7  libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <4FFBF71A-D603-3C64-2BC6-BFBFFFD562F0> /usr/lib/libSystem.B.dylib
    0x8036a000 - 0x804e5fe7  com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x805dd000 - 0x805ebfe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x805f0000 - 0x805fcff7  libkxld.dylib ??? (???) <9D8378E0-1C58-EED8-EA00-F4515B8BE7A3> /usr/lib/system/libkxld.dylib
    0x80600000 - 0x80646ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x80653000 - 0x807d5fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <35DB7644-0780-D2AB-F6A9-45F28D2D434A> /usr/lib/libicucore.A.dylib
    0x80837000 - 0x808e4fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <C8925910-B927-968B-4B71-D83A4CEF8646> /usr/lib/libobjc.A.dylib
    0x808f8000 - 0x808fbfe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <749D24EE-54BD-D74B-D305-C13F5E6C95D8> /usr/lib/dyld
    0xb8000000 - 0xb81defff +com.adobe.InDesign 4.0.5.688 (4050) <CC0F32CD-4587-7C83-03D0-9CFE28A58FB6> /Applications/Adobe InDesign CS2/Adobe InDesign CS2.app/Contents/MacOS/Adobe InDesign CS2
    0xcde00000 - 0xcdf78fe7  GLEngine ??? (???) <3A6C5513-7428-2242-2892-B429C72343CB> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xcec01000 - 0xced0dff7  libGLProgrammability.dylib ??? (???) <A077BFEA-19C6-9F48-2F36-8E4E55376F49> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
    0xd0000000 - 0xd0749ff7  com.apple.GeForceGLDriver 1.6.26 (6.2.6) <518182BB-5A3C-5F4C-3A84-17BB8E385BBF> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    0xd09a6000 - 0xd0dabfe7  libclh.dylib 3.1.1 C  (3.1.1) <745CBD72-DF1F-EC12-BE51-4EEA9847EADF> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <4FFBF71A-D603-3C64-2BC6-BFBFFFD562F0> /usr/lib/libSystem.B.dylib
    Translated Code Information:
    objc[94022]: garbage collection is ON
    Rosetta Version:  22.27
    Args:      /Applications/Adobe InDesign CS2/Adobe InDesign CS2.app/Contents/MacOS/Adobe InDesign CS2 -psn_0_11086482
    Exception: EXC_BAD_ACCESS (0x0001)
    Thread 0: (0xb02a2d74, 0xb815a8ff)
    0x985aaa78: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40
    0x01039f90: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACESemaphoreList::Wait(unsigned long) + 36
    0x0103a1dc: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACEMPThread::Task() + 76
    0x01039ba0: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : _TaskGlue + 28
    0x985ab9c4: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100
    0x94f49348: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x00000000         lr: 0x985aaabc        ctr: 0x94ea8bc0
    r00: 0xffffffda     r01: 0xf0284d20     r02: 0x02a182c0     r03: 0x00005a03    
    r04: 0x7fffffff     r05: 0x00000000     r06: 0x00000000     r07: 0x00000000    
    r08: 0x00000000     r09: 0x4d555458     r10: 0x97f6801c     r11: 0xa0711694    
    r12: 0x94ea8bc0     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000000     r17: 0x00000000     r18: 0x00000000     r19: 0x00000000    
    r20: 0x00000000     r21: 0x00000000     r22: 0x00000000     r23: 0x00000000    
    r24: 0x00000000     r25: 0x00000000     r26: 0x00000000     r27: 0x00000000    
    r28: 0x00000000     r29: 0x7fffffff     r30: 0x00000000     r31: 0x985aaa5c   
    Thread 1: (0xb0428e34, 0xb815a8ff)
    0x9502cac8: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248
    0x9502b1b4: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116
    0x94f49348: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x20000000         lr: 0x9502cae0        ctr: 0x94ea8bc0
    r00: 0xffffffda     r01: 0xf0407dc0     r02: 0x00000000     r03: 0x00002703    
    r04: 0x00000040     r05: 0x3b9ab440     r06: 0x00000020     r07: 0x00000000    
    r08: 0x3b9ab440     r09: 0x00000000     r10: 0x3b9ab440     r11: 0xa0711694    
    r12: 0x94ea8bc0     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000000     r17: 0x00000000     r18: 0x00000000     r19: 0x00000000    
    r20: 0x00000000     r21: 0xa07177cc     r22: 0xa07177c0     r23: 0xa07177c8    
    r24: 0x0002309e     r25: 0xf6e9f678     r26: 0xa071750c     r27: 0x00000040    
    r28: 0x0000000f     r29: 0x224d3440     r30: 0xa07177a0     r31: 0x9502c9d8   
    Thread 2: (0xb019e84c, 0xb815aa8b)
    0x00000000: No symbol
    0x985eb504: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _TS_exception_listener_thread + 128
    0x94f49348: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x20000000         lr: 0x94ea9284        ctr: 0x94ea8b50
    r00: 0xffffffe1     r01: 0xf0182df0     r02: 0xa071c4d0     r03: 0x03001e00    
    r04: 0x00000002     r05: 0x00000000     r06: 0x00000054     r07: 0x00004e0b    
    r08: 0x00000000     r09: 0x00000000     r10: 0x03800000     r11: 0xa0711190    
    r12: 0x94ea8b50     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000000     r17: 0x00000000     r18: 0x00000000     r19: 0x00000000    
    r20: 0x00000000     r21: 0x00000000     r22: 0x03001e00     r23: 0x00000000    
    r24: 0x00000054     r25: 0x00004e0b     r26: 0x00000000     r27: 0x00000000    
    r28: 0x00000002     r29: 0x00000002     r30: 0x00000000     r31: 0x985eb48c   
    Thread 3: (0xb04aae34, 0xb815a8ff)
    0x9502cac8: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248
    0x9502b1b4: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116
    0x94f49348: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x20000000         lr: 0x9502cae0        ctr: 0x94ea8bc0
    r00: 0xffffffda     r01: 0xf0488dc0     r02: 0x00000000     r03: 0x00002703    
    r04: 0x00000040     r05: 0x3b9ab9b8     r06: 0x00000020     r07: 0x00000000    
    r08: 0x3b9ab9b8     r09: 0x00000000     r10: 0x3b9ab9b8     r11: 0xa0711694    
    r12: 0x94ea8bc0     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000000     r17: 0x00000000     r18: 0x00000000     r19: 0x00000000    
    r20: 0x00000000     r21: 0xa07177cc     r22: 0xa07177c0     r23: 0xa07177c8    
    r24: 0x000230a3     r25: 0x0886686b     r26: 0xa071750c     r27: 0x00000040    
    r28: 0x0000000f     r29: 0x224d39b8     r30: 0xa07177a0     r31: 0x9502c9d8   
    Thread 4: (0xba8cfbcc, 0xb815ac81)
    0x9140b4e4: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : ___CFSocketManager + 872
    0x94f49348: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x20000000         lr: 0x9140b598        ctr: 0x94f0969c
    r00: 0x0000005d     r01: 0xf0592a90     r02: 0xa01ab184     r03: 0x00000040    
    r04: 0x40600010     r05: 0x40600000     r06: 0x00000000     r07: 0x00000000    
    r08: 0x00000000     r09: 0xa01bbb80     r10: 0xa06dc800     r11: 0xa01a6448    
    r12: 0x94f0969c     r13: 0xa01b9a3c     r14: 0x40600000     r15: 0x00000000    
    r16: 0xa01bb184     r17: 0x40600010     r18: 0x40600020     r19: 0x914b4d2c    
    r20: 0x00000000     r21: 0x40600040     r22: 0xf058ae60     r23: 0xa01ba1b8    
    r24: 0x00000001     r25: 0x00000000     r26: 0x00000040     r27: 0x00000000    
    r28: 0x00002000     r29: 0xc680b260     r30: 0x00000000     r31: 0x9140b184   
    Thread 5: (0xb0220d74, 0xb815a8ff)
    0x985aaa78: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40
    0x01039f90: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACESemaphoreList::Wait(unsigned long) + 36
    0x0103a1dc: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACEMPThread::Task() + 76
    0x01039ba0: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : _TaskGlue + 28
    0x985ab9c4: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100
    0x94f49348: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x00000000         lr: 0x985aaabc        ctr: 0x94ea8bc0
    r00: 0xffffffda     r01: 0xf0203d20     r02: 0x02a182b0     r03: 0x00005903    
    r04: 0x7fffffff     r05: 0x00000000     r06: 0x00000000     r07: 0x00000000    
    r08: 0x00000000     r09: 0x4d555458     r10: 0x97f6801c     r11: 0xa0711694    
    r12: 0x94ea8bc0     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000000     r17: 0x00000000     r18: 0x00000000     r19: 0x00000000    
    r20: 0x00000000     r21: 0x00000000     r22: 0x00000000     r23: 0x00000000    
    r24: 0x00000000     r25: 0x00000000     r26: 0x00000000     r27: 0x00000000    
    r28: 0x00000000     r29: 0x7fffffff     r30: 0x00000000     r31: 0x985aaa5c   
    Thread 6: (0xb011c84c, 0xb815aa8b)
    0x913fa368: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : ___CFRunLoopModeIsEmpty + 160
    0x913fea14: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : ___CFRunLoopRun + 2396
    0x913ffc64: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFRunLoopRunSpecific + 656
    0x913ffec4: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFRunLoopRun + 72
    0x91123688: /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv : TSystemNotificationTask::SystemNotificationTaskProc(void*) + 556
    0x985ab9c4: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100
    0x94f49348: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x00000000         lr: 0x94ea9284        ctr: 0x94ea8b50
    r00: 0xffffffe1     r01: 0xf0101060     r02: 0xa01ba3f4     r03: 0xf010117c    
    r04: 0x07000006     r05: 0x00000000     r06: 0x00000800     r07: 0x0000b317    
    r08: 0x00000000     r09: 0x00000000     r10: 0x00000000     r11: 0xa0711190    
    r12: 0x94ea8b50     r13: 0x00000000     r14: 0x7fffffff     r15: 0xffffffff    
    r16: 0x00023032     r17: 0x86031175     r18: 0xa07186d0     r19: 0x914b3ba8    
    r20: 0xa01b9a3c     r21: 0xf010117c     r22: 0xf010117c     r23: 0x00000000    
    r24: 0x00000800     r25: 0x0000b317     r26: 0x00000000     r27: 0x00000000    
    r28: 0x07000006     r29: 0x07000006     r30: 0x00000000     r31: 0x913fe0c0   
    Thread 7: Crashed (0xb7fff9d0, 0xb80c5d10)
    0x1faea848: ./Document Framework.framework/Versions/A/Document Framework : _GetPlugIn + 362104
    0x1faeabbc: ./Document Framework.framework/Versions/A/Document Framework : _GetPlugIn + 362988
    0x15cedba4: ./AppFramework.framework/Versions/A/AppFramework : _GetPlugIn + 37412
    0x15cee2e8: ./AppFramework.framework/Versions/A/AppFramework : _GetPlugIn + 39272
    0x2c192f0c: @executable_path/PublicLib.dylib : CSubject::Change(IDType<ClassID_tag>, IDType<PMIID_tag> const&, void*) + 108
    0x47ab45b8: ./DataMerge.framework/Versions/A/DataMerge : _GetPlugIn + 254984
    0x47ab4884: ./DataMerge.framework/Versions/A/DataMerge : _GetPlugIn + 255700
    0x47ab3198: ./DataMerge.framework/Versions/A/DataMerge : _GetPlugIn + 249832
    0x6f6bff60: ./DataMergeUI.framework/Versions/A/DataMergeUI : dyld_stub_binding_helper + 13072
    0x6f6c2400: ./DataMergeUI.framework/Versions/A/DataMergeUI : dyld_stub_binding_helper + 22448
    0x2b0adfe8: @executable_path/WidgetBinLib.dylib : CActionComponent::DoAction(IActiveContext*, IDType<ActionID_tag>, Point, IPMUnknown*) + 40
    0x2cd230f0: ./Actions.framework/Versions/A/Actions : _GetPlugIn + 6176
    0x6f6e2b28: ./DataMergeUI.framework/Versions/A/DataMergeUI : _GetPlugIn + 111128
    0x15cedba4: ./AppFramework.framework/Versions/A/AppFramework : _GetPlugIn + 37412
    0x15cee2e8: ./AppFramework.framework/Versions/A/AppFramework : _GetPlugIn + 39272
    0x2c192f0c: @executable_path/PublicLib.dylib : CSubject::Change(IDType<ClassID_tag>, IDType<PMIID_tag> const&, void*) + 108
    0x4d01bd94: ./Widgets.framework/Versions/A/Widgets : MDocWindow::GetStandardZoom(Rect*) + 4596
    0x4d01bb28: ./Widgets.framework/Versions/A/Widgets : MDocWindow::GetStandardZoom(Rect*) + 3976
    0x2b00b6e4: @executable_path/WidgetBinLib.dylib : GenericButtonEventHandler::TiggerControlData() + 100
    0x2b00afb8: @executable_path/WidgetBinLib.dylib : ControlEventHandler::LButtonUp(IEvent*) + 456
    0x2c1d68c4: @executable_path/PublicLib.dylib : CEventDispatcher::DispatchToEventHandlers(IEvent*) + 356
    0x2c1d694c: @executable_path/PublicLib.dylib : CEventDispatcher::DispatchEvent(IEvent*, IEvent::SystemHandledState) + 28
    0x15f8982c: ./Application UI.framework/Versions/A/Application UI : _GetPlugIn + 371404
    0x15f86f2c: ./Application UI.framework/Versions/A/Application UI : _GetPlugIn + 360908
    0x907b6640: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1524
    0x907b6ffc: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 456
    0x907b733c: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : _SendEventToEventTarget + 72
    0x907b27f8: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 1084
    0x907b6a78: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 2604
    0x907b6ffc: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 456
    0x907b733c: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox : _SendEventToEventTarget + 72
    0x15cc97f4: ./AppFramework.framework/Versions/A/AppFramework : dyld_stub_binding_helper + 3124
    0x15ce851c: ./AppFramework.framework/Versions/A/AppFramework : _GetPlugIn + 15260
    0x00002c58: No symbol
    0x000024fc: No symbol
    0x00002370: No symbol
    0xa8f7ffbf: No symbol
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x00000000         lr: 0x1faea848        ctr: 0x94f91e60
    r00: 0x1faea848     r01: 0xbfffc920     r02: 0x00000000     r03: 0x00000000    
    r04: 0x00000048     r05: 0x00000000     r06: 0x0000000b     r07: 0x00000001    
    r08: 0x00002cb0     r09: 0x014aca80     r10: 0x00e01928     r11: 0xa0e410f8    
    r12: 0x94f91e60     r13: 0x00000000     r14: 0x00000000     r15: 0xcddb2d70    
    r16: 0x00000000     r17: 0xcdd5b730     r18: 0xd3311360     r19: 0xa01a73fc    
    r20: 0xa01b7f18     r21: 0xa01b7f48     r22: 0xffffffff     r23: 0x00000000    
    r24: 0x1f9ed360     r25: 0xbfffd358     r26: 0x0000000a     r27: 0xcdd70680    
    r28: 0xcdd81e40     r29: 0x00000000     r30: 0xcdd70120     r31: 0x1faea3d4   
    Thread 8: (0xb0324d74, 0xb815a8ff)
    0x985aaa78: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40
    0x01039f90: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACESemaphoreList::Wait(unsigned long) + 36
    0x0103a1dc: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : ACEMPThread::Task() + 76
    0x01039ba0: @executable_path/../Frameworks/AdobeACE.framework/Versions/A/AdobeACE : _TaskGlue + 28
    0x985ab9c4: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100
    0x94f49348: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x00000000         lr: 0x985aaabc        ctr: 0x94ea8bc0
    r00: 0xffffffda     r01: 0xf0305d20     r02: 0x02a182d0     r03: 0x00005b03    
    r04: 0x7fffffff     r05: 0x00000000     r06: 0x00000000     r07: 0x00000000    
    r08: 0x00000000     r09: 0x4d555458     r10: 0x97f6801c     r11: 0xa0711694    
    r12: 0x94ea8bc0     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000000     r17: 0x00000000     r18: 0x00000000     r19: 0x00000000    
    r20: 0x00000000     r21: 0x00000000     r22: 0x00000000     r23: 0x00000000    
    r24: 0x00000000     r25: 0x00000000     r26: 0x00000000     r27: 0x00000000    
    r28: 0x00000000     r29: 0x7fffffff     r30: 0x00000000     r31: 0x985aaa5c   
    Thread 9: (0xb009adf8, 0xb815acc0)
    0x9502b4dc: /usr/lib/libSystem.B.dylib : __dispatch_mgr_invoke + 228
    0x9502aec0: /usr/lib/libSystem.B.dylib : __dispatch_queue_invoke + 308
    0x9502b050: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread2 + 372
    0x9502b18c: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 76
    0x94f49348: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x20000000         lr: 0x9502b4a4        ctr: 0x94eec7e4
    r00: 0x0000016b     r01: 0xf0080bb0     r02: 0x00000003     r03: 0x00000004    
    r04: 0x00000000     r05: 0x00000000     r06: 0xf0080d0c     r07: 0x00000001    
    r08: 0xf0080d28     r09: 0x00000000     r10: 0x00000003     r11: 0xa0710530    
    r12: 0x94eec7e4     r13: 0x10624dd3     r14: 0x9507ab04     r15: 0xf0080c0c    
    r16: 0xf0080c8c     r17: 0xa072b400     r18: 0xf0080d28     r19: 0xa0725570    
    r20: 0xa0726570     r21: 0xf0080d0c     r22: 0xa07254f0     r23: 0xa0725470    
    r24: 0xa072b400     r25: 0x00000000     r26: 0xa071762c     r27: 0x00000000    
    r28: 0xa0717604     r29: 0xa071733c     r30: 0xf0080d28     r31: 0x9502b400   
    Thread 10: (0xb052ce34, 0xb815a8ff)
    0x9502cac8: /usr/lib/libSystem.B.dylib : __dispatch_semaphore_wait_slow + 248
    0x9502b1b4: /usr/lib/libSystem.B.dylib : __dispatch_worker_thread + 116
    0x94f49348: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x20000000         lr: 0x9502cae0        ctr: 0x94ea8bc0
    r00: 0xffffffda     r01: 0xf0509dc0     r02: 0x00000000     r03: 0x00002703    
    r04: 0x00000040     r05: 0x3b9ab6bf     r06: 0x00000020     r07: 0x00000000    
    r08: 0x3b9ab6bf     r09: 0x00000000     r10: 0x3b9ab6bf     r11: 0xa0711694    
    r12: 0x94ea8bc0     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000000     r17: 0x00000000     r18: 0x00000000     r19: 0x00000000    
    r20: 0x00000000     r21: 0xa07177cc     r22: 0xa07177c0     r23: 0xa07177c8    
    r24: 0x000230a3     r25: 0x587f1505     r26: 0xa071750c     r27: 0x00000040    
    r28: 0x0000000f     r29: 0x224d36bf     r30: 0xa07177a0     r31: 0x9502c9d8   
    Thread 11: (0xb03a6d78, 0xb815a8c8)
    0x94f45a34: /usr/lib/libSystem.B.dylib : __pthread_cond_wait + 704
    0x51c6a448: ./TINthread.dylib : ThreadUtils::ConditionVariable::Wait(ThreadUtils::MutualExclusion&) + 24
    0x51c65708: ./TINthread.dylib : ThreadUtils::ThreadPool::Dispatcher() + 180
    0x51c651a4: ./TINthread.dylib : ThreadUtils::ThreadPool::ThreadProc(void*) + 20
    0x94f49348: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000    srr1: 0x00000000                     vrsave: 0x00000000
    cr:  0xXXXXXXXX        xer: 0x20000000         lr: 0x94f45b3c        ctr: 0x94ea8bb0
    r00: 0xffffffdb     r01: 0xf0386d30     r02: 0x00000001     r03: 0x00007d03    
    r04: 0x00007e03     r05: 0x00000028     r06: 0x00000030     r07: 0x00007c03    
    r08: 0x00000000     r09: 0x00000001     r10: 0x00000000     r11: 0xa0711698    
    r12: 0x94ea8bb0     r13: 0x00000000     r14: 0x00000000     r15: 0x00000000    
    r16: 0x00000000     r17: 0x00000000     r18: 0x00000000     r19: 0x00000000    
    r20: 0x00000000     r21: 0x00000000     r22: 0x00000000     r23: 0x00000000    
    r24: 0x00000000     r25: 0x00000000     r26: 0xa071871c     r27: 0x00000000    
    r28: 0x4ff07270     r29: 0x00000000     r30: 0x4ff072d0     r31: 0x94f45780   
    Model: MacPro4,1, BootROM MP41.0081.B07, 8 processors, Quad-Core Intel Xeon, 2.26 GHz, 6 GB, SMC 1.39f5
    Graphics: NVIDIA GeForce GT 120, NVIDIA GeForce GT 120, PCIe, 512 MB
    Memory Module: global_name
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    PCI Card: NVIDIA GeForce GT 120, Display, Slot-1
    Serial ATA Device: HL-DT-ST DVD-RW GH41N
    Serial ATA Device: Hitachi HDE721064SLA360, 596.17 GB
    USB Device: Keyboard Hub, 0x05ac  (Apple Inc.), 0x1006, 0xfa200000
    USB Device: Apple Keyboard, 0x05ac  (Apple Inc.), 0x0220, 0xfa220000
    USB Device: Microsoft 3-Button Mouse with IntelliEye(TM), 0x045e  (Microsoft Corporation), 0x0053, 0x1d100000
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x5a100000
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8215, 0x5a110000
    FireWire Device: built-in_hub, Up to 800 Mb/sec

    Try KERN_PROTECTION_FAILURE at 0x0000000000000000 and read the WHOLE thread.

  • How can I utilize text variable in my book which only uses data merge on the first chapter?

    Hey ladies and gents, I'm trying to automate a process here and running into trouble. I have the first chapter of a book with several data merge fields (legal documents etc), and want the later chapters to pick up from what I have already merged via text variables or SOMETHING. From what I've tried, the options available to me are limited and buggy.
    Using the running header with character styles almost worked, but it removes all visual tracking in text around it (I assume this is a bug) and it only works for the first/last instance of the style. I need something that will fill in all instances.
    Here is an example of what I'm doing. In the ch1 document of my book I data merge the Name, Age and Occupation of a person. In chapter two I want to have a variable that takes the name that was merged in ch1. Any ideas? Doesn't seem possible!

    I need some solution that references live text, specifically different fields that have been data merged. This solution needs to work between documents, so your cross-reference suggestion was in the right direction. If I data merge 'Plan Name' from a CSV file into my first document and mark it with something (character style, paragraph style, text anchor etc), I want to have places in my other documents that pull that exact text from the first.
    If document 1 says 'the plan is XXXX', document 2 will copy that name, i.e. 'According to plan XXXX'. Whatever solution this is it's what I'm looking for.

  • Strange Behavior with Data Merge (CS4) - Advice?

    This is the most bizarre behavior and I may have to chalk it up to a full moon or something since I can't reproduce it and I cannot find any hints as why this happened. This is my last attempt at figuring a solution...maybe someone has experienced this??? Anyway, here's what happened...
    I do a data merge for addressing envelopes. Been using the InDesign data merge feature for a couple of years now, no problems.
    My address list is approximately 1200. It's in a .csv file with the following fields: fname, lname, company, address1, address2, city, state, zip
    For my last mailing, approximately 300 addresses were merged wrong. Here's the crazy thing it did: instead of using the address1 field for the current record, it used the address1 field from the NEXT record, and ONLY the address1 field.
    Here's more bizarre-ness. The NEXT record was merged correctly.
    For example:
    Record 1 (address1 should be 555 Cherry Lane, Apt 5)
    John Smith
    Smith Company
    123 Main Street, Apt 5
    Small Town, CA 12345
    Record 2 (John Smith's address used THIS address1, but NOT address2 or any other field! Jane Doe's address is correct)
    Jane Doe
    Doe Company
    123 Main Street, Suite 300
    Big Town, TX 56789
    I've tested. I've looked for commonality in the records, where it's placed, if there was something unusual about it's format. I come up empty. The incorrect data seem randomly interspersed.
    One thing that I have to do is break up the actual merge. Either my computer memory or InDesign can't handle 1200 merge records. So, I merge approximately 200 records at a time (I make 6 print files). I don't know if this has anything to do with it (like I said, the incorrect data is interspersed all through out), but, thought I'd mention it.
    Any advice is appreciated. I'm hesitant to use it again until I can understand why this happened.
    thanks much,
    Kia

    CS was soemtimes flakey in this way with Data Merge.
    Are you updated to the latest patch? Most issues were resolved at some point.
    That said, I recall another user with this problem, and it never resolved with his particular file. I examined the data file and couldn't find any issues, but it behaved identically on my system tot he way it did on his so I can only conclude there was still some bug, or something about the data file that we were unable to detect. I seem to recall that the same data file merged correctly in CS3, but I don't recall if I saved it long enough to test in CS5. I've not had any issues with my own files in any version.
    Open the file in a plain text editor and look for any odd characters (I'd start the search where the merge first fails). Also do a Save As from the text editor to make sure there is no possibility of formatting from your spread sheet having found its way in.

  • Make Data Merge import certain page of pdf or indesign document

    I don't know if it is possible but can you make Data Merge import certain page of pdf or indesign document, this would be great addition for indesign

    Here are a couple of questions that might help understand what might need to be done to achieve your request:
    * How do you propose to identify the desired page(s) within a PDF and an ID document, so the merge field placeholder knows how to find it?
    * How do you propose to keep track of the page if they're re-ordered in an updated document?
    * What if the identification marker is within text and flows to a different page - would you want to retrieve the original page (before the reflow) or the new page to which the marker would have flowed?
    Perhaps the scripters could comment on the possibility of scripting these.
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices
    aybekDes wrote:
    I don't know if it is possible but can you make Data Merge import certain page of pdf or indesign document, this would be great addition for indesign

Maybe you are looking for

  • Accurate RoboHelp to PDF conversion?

    I've been attempting to generate PDFs that accurately reflect my RoboHelp projects. The output always comes out a bit funky (blank pages, orphaned headings and text, etc.). Also, the PDFs generate with headers which I don't want and the TOC as the fr

  • History of services entry

    Please share with us how  to find History of Services entry which T code use please suggest.

  • Accidently deleted Adobe Acrobat Professional 7.0 from WindowsXP

    I accidently deleted Adobe Acrobat Professional 7.0 from my WindowsXP at work. The thing is, there are still Adobe Acrobat Professional 7.0 icons. The icons look like a piece of paper with symbols on them. When attempt to open, it cant open it. I tri

  • Getting error as pmd runs during build

    An internal error occurred during: "add markers job". Index: 0, Size: 0 get this alert sometimes during build. with pmd nature added monitorize set latest builder 4 (stand alone) trunk flex sdk latest version of PMD

  • SQL statement with LIMIT and total count?

    Hello, I would like to know if it is possible to execute a single SQL statement that will return me a subset of data (for pagination purposes) that not only includes the subset of data for the page but the count of all available data. Can this be don