Large Footnotes Crashing Indesign CS2

My Indesign document contains more than 130 footnotes in that most of the footnotes are half of the page height.
It is crashing randomly i.e., first time after 30 footnotes crashing; second time after 10 footnotes crashing and so on.
Please suggest.
Regards,
Suresh

Select all the text - not in the footnotes - but in your normal text frames.
Then go to Window>Type and Tables>Character
Change the Language to No Language
Then run your spell check. It will only check the spelling in your Footnotes now.
When done, change the language back to whatever your usual dictionary language should be. (note it may still check text inside tables - so you might have to put up with that?)
Anyone know of a way to script changing all the text bar footnotes to No Language - run a spell check - then reset the text language back?
( you don't want to hear the other crazy ideas I had for this one !)

Similar Messages

  • PLEASE HELP-Is there a way to spell check footnotes in indesign cs2 separately

    Is there a way to spell check footnotes in indesign or in incopy cs2 separately?

    Select all the text - not in the footnotes - but in your normal text frames.
    Then go to Window>Type and Tables>Character
    Change the Language to No Language
    Then run your spell check. It will only check the spelling in your Footnotes now.
    When done, change the language back to whatever your usual dictionary language should be. (note it may still check text inside tables - so you might have to put up with that?)
    Anyone know of a way to script changing all the text bar footnotes to No Language - run a spell check - then reset the text language back?
    ( you don't want to hear the other crazy ideas I had for this one !)

  • CS2 Javascript crashing InDesign works as 2 parts and in CS3.

    I have a script which works fine in CS3 but when I set it up in CS2 I found it was crashing InDesign. I've tried to cut it down to the minimum and set the 2 parts as functions.
    The first function makeMyslug create a new layer called slug and then some text frames on all master pages, with details about the document. The second function printMyslug prints all pages to postscript and adds a page number to the postscript file.
    If I have a document open and run each of the functions separately all is well. If I try and run both function in one go InDesign crashes. The script seems to crash InDesign once the printing process begins.
    NOTE for this example to work you will need to have a document open and make sure there are no blank pages. I'll post in as a reply so that it can be copied if anyone is able to help me out.
    Any suggestions would be greatly appreciated.

    //Here is the script.
    var mySluglay, myBlueBlk, mySlugChr, mySlugPar, myPageNo, myTitle
    myPageNo = 1;
    myTitle = "Test";
    myDocument = app.activeDocument;
    function makeMyslug(){
    //Create a layer for the slug items.
    mySluglay = myDocument.layers.item("Slug");
    if (mySluglay == null){
    mySluglay = myDocument.layers.add({name:"Slug"});
    //Create a blue background color.
    myBlueBlk = myDocument.colors.item("BlueBack");
    if (myBlueBlk == null){
    myDocument.colors.add({name:"BlueBack", model:ColorModel.process, colorSpace:ColorSpace.cmyk, colorValue:[100, 60, 0, 0]});
    //Create a cahr style.
    mySlugChr = myDocument.characterStyles.item("SlugChar");
    if (mySlugChr == null){
    myDocument.characterStyles.add({name:"SlugChar", appliedFont:"Arial"});
    //Create a para style.
    mySlugPar = myDocument.paragraphStyles.item("SlugPar");
    if (mySlugPar == null){
    myDocument.paragraphStyles.add({name:"SlugPar"});
    // Set units to mm.
    app.activeDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.MILLIMETERS
    app.activeDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.MILLIMETERS;
    with(myDocument.documentPreferences){
    //Slug
    slugBottomOffset = "20";
    slugTopOffset = "20";
    slugInsideOrLeftOffset = "0";
    slugRightOrOutsideOffset = "0";
    //Set the documents ruler origin to page origin. This is very important
    //--if you dont do this, getting objects to the correct position on the
    //page is much more difficult.
    myDocument.viewPreferences.rulerOrigin = RulerOrigin.pageOrigin;
    //Create the slug details on all master pages.
    with(myDocument.masterSpreads.item(0)){
    myDocument.pages[0].appliedSection.continueNumbering = false;
    myDocument.pages[0].appliedSection.pageNumberStart = parseInt(myPageNo);
    var myDetails = "Title: "+myTitle;
    var myPageWidth = myDocument.documentPreferences.pageWidth;
    var myPageHeight = myDocument.documentPreferences.pageHeight;
    mp = app.activeDocument.masterSpreads.everyItem().pages.everyItem().getElements();
    for (i = 0; i < mp.length; i++){
    var myTitleBox = mp[i].textFrames.add(myDocument.layers.item("Slug"), undefined, undefined, {geometricBounds:[myPageHeight+6,10,myPageHeight+14, myPageWidth-10], contents:myDetails});
    myTitleBox.label = "Title";
    myTitleBox.textFramePreferences.verticalJustification = VerticalJustification.bottomAlign;
    myTitleBox.parentStory.paragraphs[0].appliedCharacterStyle = "SlugChar";
    myTitleBox.parentStory.paragraphs[0].appliedParagraphStyle = "SlugPar";
    myTitleBox.parentStory.fillColor = myDocument.swatches.item("Paper");
    myTitleBox.parentStory.pointSize = 10;
    myTitleBox.bringToFront();
    myTitleBox.textFramePreferences.ignoreWrap = true;
    myTitleBox.textFramePreferences.textColumnCount = 1;
    var mycount = app.activeDocument.masterSpreads.item(0).pages.item(0).textFrames.item("Title");
    var myBlueBlock = mp[i].textFrames.add(myDocument.layers.item("Slug"), undefined, undefined, {geometricBounds:[myPageHeight+6, 8,myPageHeight+20, myPageWidth-8]});
    myBlueBlock.label = "BlueBlock";
    myBlueBlock.fillColor = "BlueBack";
    myBlueBlock.textFramePreferences.verticalJustification = VerticalJustification.bottomAlign;
    myBlueBlock.sendToBack();
    var myWhiteBlock = mp[i].textFrames.add(myDocument.layers.item("Slug"), undefined, undefined, {geometricBounds:[myPageHeight+14.5, 9,myPageHeight+19, myPageWidth-9]});
    myWhiteBlock.label = "WhiteBlock";
    myWhiteBlock.fillColor = myDocument.swatches.item("Paper");
    var myPageNoBox = mp[i].textFrames.add(myDocument.layers.item("Slug"), undefined, undefined, {geometricBounds:[myPageHeight-5, 10, myPageHeight+18, myPageWidth-10]});
    myPageNoBox.label = "PageNo";
    myPageNoBox.insertionPoints.item(0).contents = SpecialCharacters.autoPageNumber;
    myPageNoBox.insertionPoints.item(0).contents = SpecialCharacters.emSpace;
    myPageNoBox.insertionPoints.item(0).contents = "Page No";
    myPageNoBox.parentStory.paragraphs[0].appliedCharacterStyle = "SlugChar";
    myPageNoBox.parentStory.paragraphs[0].appliedParagraphStyle = "SlugPar";
    myPageNoBox.textFramePreferences.verticalJustification = VerticalJustification.bottomAlign;
    myPageNoBox.textFramePreferences.ignoreWrap = true;
    myPageNoBox.textFramePreferences.textColumnCount = 1;
    //print function
    function printMyslug(){
    alert("Start print process.");
    myDocument.printPreferences.printer = Printer.POSTSCRIPT_FILE;
    myDocument.printPreferences.ppd = PPDValues.DEVICE_INDEPENDENT;
    for(var myCounter = 0; myCounter < myDocument.pages.length; myCounter++){
    myPageName = myDocument.pages.item(myCounter).name;
    myDocument.printPreferences.pageRange = myPageName;
    //The name of the exported files will be the base name + the page name + ".pdf".
    //If the page name contains a colon (as it will if the document contains sections),
    //then remove the colon.
    var myRegExp = new RegExp(":","gi");
    myPageName = myPageName.replace(myRegExp, "_");
    myFilePath = "/c/idjavascript/test_" + myPageName + ".ps";
    myFile = new File(myFilePath);
    document.printPreferences.printFile = myFile;
    try{
    myDocument.print(false);
    catch(e){
    alert("Page "+myPageName+" may be blank plesae check.");
    //call the makeMyslug function
    makeMyslug();
    //call the printMyslug function
    printMyslug();

  • Indesign CS2 Crashes when I try to export a document as pdf

    I'm using Indesign CS2 on a G5 using OS X version 10.4.11. As i try to export my document indesign completely crashes after I click the 'export' button in the pdf options window. I've tried saving using different pdf options and different document types but it still happens?

    Does your document contain any EPS files..? If so try re-saving them. InDesign can work with native photoshop & illustrator files.
    Failing that check your fonts as there may be a corrupt one lurking about...

  • After crash, users cannot use MS Office or InDesign CS2

    Hi,
    Our server had a couple of kernel panics last night. Once I got it back up and running, our 10 client computers could not access their user databases for Entourage, MS Word would not open, and Adobe InDesign CS2 would not work.
    All the clients were running when the server went down and I'm assuming the user folders got corrupted somehow since most of them were running these apps at the time.
    I've tried everything short of re-installing the software. Would this fix the problem? The MS apps are generally giving me an error code -5000 along with a dameon error, and that Entourage cannot access the user database. InDesign just reports a serious error and that it is shutting down. The error report has too many lines of code for me to decipher.
    Our server is a G4 DP 1.25 w/ 2GB of RAM, 500GB mirrrored RAID drive setup running OSX Tiger Server 10.4.9. The user's home folders are stored on the server... no user information is kept on the client machines.
    Any suggestions today (Sunday) would be greatly appreciated. We've got a newspaper to put out in the morning and I've been up all night already. It is going to be a long day...
    Alan

    Okay... got it figured out. It was actually pretty simple. I had never completely shut down the whole system at one time after the crash. Router, server, switches and clients... all together at one time (I had rebooted the server and clients separately though)...
    So, after bringing everything down, then back online one by one, things started to work again. Lesson learned.
    There were a few settings on the server that needed to be reset (DNS... POP in Mail services), but for the most part, things just worked once back online.
    Thanks for chipping in.
    Cheers,
    Alan

  • Error encountered when scrolling over particular InDesign CS2 page, causes file to crash

    I am working on a 36.6 MB InDesign file with 134 pages. There is at least one photo on each page. Most of the photos are linked in to a server.
    When I scroll to page 93, I always get an error message and the option to debug. But the debug always fails and InDesign closes.
    I have updated my InDesign CS2 to 4.0, but have had no luck.
    Here is the error signature:
    AppName: indesign.exe AppVer: 4.0.5.688 ModName: master page.rpln
    ModVer: 4.0.5.688 Offset: 000053b6
    Please, please help.

    Is page 93 based on a different master from the others?
    I think this could be caused by either a bad graphic or a bad font on the page.
    I also remember, vaguely, something about closing the links palette and or Navigator might help, as probably, would moving the links to your hard drive.
    Peter

  • InDesign CS4 to reinstall after a system crash. I have bought CS4 some years ago in order to update InDesign CS2. Of course, I have my S/N for CS4 but, during the reinstallation process, I have to give the S/N of InDesign CS2 wich is lost !

    I'm unable to reinstall InDesign CS4 which was bought as an update of an old InDesign CS2. I have the serial number of CS4 but I have lost the S/N of CS2 which is required.
    Thanks for help.
    Y. Ravassard

    Hi,
    Thanks a lot for your answer. In fact, I’ve really registered CS2 in 2002 (october 14th). But I guess that, at this time, my email address was [email protected] <mailto:[email protected]> which is no more presently usable.
    So, when the installation program of CS4 requires the S/N of CS2 (because my CS4 was an update of a preceding CS2, I’ve an answer (1037-0225-5711-8675-6584-4525) but this answer is not considered as correct by the program.
    I guess this change of mail adress is the reason why I don’t find, on my personal file on Adobe, any information about Indesign CS4 (S/N : 1037-0005-3808-1893-0944-6511) nor PhotoShop CS5 (S/N : 1330-0000-7535-1483-5980-1567).
    Thanks
    Y. Ravassard
    P.S.- My local time is GMT + 2 so don’t be afraid if my questions / answers are a little bit … delayed.

  • InDesign CS2 crashes on boot (Vista)

    Hi there
    I have just installed InDesign on this machine, and as soon as it tries to initialize, I get "Adobe InDesign CS2 has stopped working. A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available."
    When I try and start ID again, it searches for a solution, and then loops back to the same error message.
    Can anyone offer a solution?
    Thanks in advance

    Hi there
    I had already set that up, and it had no effect, but Ive just gone back into the properties, and disabled visual effects. InDesign launched with this error:
    the installer seems to have written the wrong AUM Application ID
    But then seemed to run fine... Ill test it with a couple of jobs, and hope for the best.
    Thanks for your help

  • Indesign CS2 Crashing with Tiger Server

    I have two different companies dealing with exactly the same problem as such:
    G5 Xserve (OS X Server 10.4.7) Indesign CS2. While working on files from the server, tools such as gradient, transparency, etc will consistently cause Indesign to Quit. If we drag the file over to the local desktop to work on it, it's fine. This problem just started cropping up with one machine at company "A" about a month ago. It has now affected more than one machine at company "A" and also just appeared today at company "B". Any solutions or suggestions would be greatly appreciated

    Next stop:
    http://www.adobe.com/support/techdocs/324628.html
    http://www.adobe.com/support/products/indesign.html
    Please note that Adobe does not support working off a network volume where Photoshop is concerned, see: http://www.adobe.com/support/techdocs/322391.html
    but they dodge the issue for InDesign...
    However, they clearly expect you to be using VersionCue

  • InDesign CS2 - 100 document limit and compatibility with newer versions

    Hello,
    I have Adobe InDesign CS2 and am using it to compile a large report. I have come across a problem once i tried to add more than 100 documents to my book and now see there is a 100 file limit to books in CS2. Each document needs to stay as a single file so i am unable to join files to overcome this problem.
    I have a summary table at the beginning of the document detailing the title of each file in the book. I am unable to work out how to create page hyperlinks in the pdf to the second book (documents over the 100 mark).
    It has since come to fruition that my company has updates to CS3 and CS5 and that these new versions do not have a 100 file limit in creating books. This document i am creating is over 400 pages long so i am wary of upgrading to a new version when i am not far from publishing.
    Should i have any concerns in upgrading to a new version of InDesign when i have almost finished my report? Would it be better to just upgrade to CS3 and not make such a large jump to CS5? Or does anyone know how to create page hyperlinks in my pdf to the files contained in the second book?
    Thanks for any help! Much appreciated.

    Normally I would advise against changing versions in midstream on a project like this, but I'm not sure you have a choice. My instinct is there will be fewer issues moving to CS3 than CS5, but there are far more features in CS5 you might like to use...
    One way to limit the possible anomalies would be to export all the CS2 files to .inx na open those in CS5, rather than converting the .indd files directly, then save as new CS5 .indd files and add to a new book. One very serious issue you may run into wehn moving to a later version is that the text engines are updated and text won't necessarily flow exactly the same, particualry justified text, which can cause line endings to move and some paragraphs may gain or lose a line, which can have a really devastating effect on a long doc if it causes a page count to shift. The killer is that the changes normally don't happen until you start to edit text in that story. I believe the .inx route will force a recompose on opening, but I'm not dead certain, so take a look at http://indesignsecrets.com/force-text-reflow-when-indesign-forgets-to-flow-the-text.php to see how to force the recompose manually as soon as you open the file (you'd only need to do it once, before saving in the new version, for each file), then check carefully for oversets or other problems. Live preflight in CS5 can help with that.
    As you can tell, a successful move to a newer version is likely to be a lot of careful work preparing and checking the files. Some of it can be automated (the export to .inx, the recompose, and the save in the new version) by scripting, but in all honesty you're going to need to check every page when you are done.
    One of the others who uses Hyperlinks will need to weigh in on ID's native abilities and linking to other files in a book. I know that doing that with cross-references (which don't even exist natively prior to CS4) is extremely likely to break down at some point and leave you trying to remake them all, and large numbers of links across docs is likely to slow CS5 in particular to a crawl unless all files (at least the ones to which there are links in the doc you are editing) in the book are open.

  • IDCS3 on Leopard: Quick Apply crashes InDesign every time

    I haven't been able to use Quick Apply in ages, and I really miss it. InDesign crashes instantaneously every time I try to access Quick Apply. Deleting my preferences doesn't fix it. Changing the keyboard shortcut from command-return doesn't fix it. Selecting Quick Apply from the Edit menu instead of using the keyboard crashes too.
    Quick Apply works fine in InDesign CS2 running on the same Leopard system.
    Any ideas? I'm really reluctant to reinstall, and honestly I don't really expect that to fix it.
    InDesign CS3, 5.0.2, OS X Leopard (10.5.2, all updates applied).

    No problem here with Quick Apply. OS 10.5.2, IDCS3 5.02.
    Since I've removed version cue and disabled default Folder for InDesign my crash problems have (almost) gone away

  • Does InDesign CS2 work with Snow Leopard

    I know, I know, I should be using CS4 but a client insists on sticking with CS2 and files made in newer versions aren't compatible with CS2.
    So, can anyone tell me if InDesign CS2 will work with Snow Leopard? It's only InDesign I'm worried about - I have current versions of Photoshop etc.
    Thanks
    Phil

    InDesign 4.0.5 is causing me real problems on Snow Leopard, and I'm considering rolling back to Leopard (which worked fine) unless there is a fix to this soon. As well as the disappearing text display problem that others have mentioned, InDesign is very hit and miss when it comes to exporting PDFs - often hanging during the process and then crashing. Error message is posted below. For me, this makes CS2 unusable, but I have a number of ongoing projects that have to remain in this format!
    Paul
    Process: translate [499]
    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 [81]
    Date/Time: 2009-09-23 15:31:26.127 +0100
    OS Version: Mac OS X 10.6.1 (10B504)
    Report Version: 6
    Interval Since Last Report: 558 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 382 sec
    Per-App Crashes Since Last Report: 1
    Anonymous UUID: 46BCF64C-DE78-4C78-ABBF-723F95CD4F55
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x00000000000000c8
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.adobe.InDesign 0xb80c5e94 0xb8000000 + 810644
    1 com.adobe.InDesign 0xb80c01bb 0xb8000000 + 786875
    2 com.adobe.InDesign 0xb80dda6c 0xb8000000 + 907884
    3 com.adobe.InDesign 0xb814551b spinlockwrapper + 1791
    4 com.adobe.InDesign 0xb801d03b 0xb8000000 + 118843
    Thread 1:
    0 libSystem.B.dylib 0x800c57da machmsgtrap + 10
    1 libSystem.B.dylib 0x800c5f47 mach_msg + 68
    2 com.adobe.InDesign 0xb819448f CallPPCFunctionAtAddressInt + 206155
    3 libSystem.B.dylib 0x800f2f39 pthreadstart + 345
    4 libSystem.B.dylib 0x800f2dbe thread_start + 34
    Thread 2:
    0 com.adobe.InDesign 0xb815ae44 spinlockwrapper + 90152
    1 com.adobe.InDesign 0xb8179d27 CallPPCFunctionAtAddressInt + 97763
    2 com.adobe.InDesign 0xb80c6c97 0xb8000000 + 814231
    3 com.adobe.InDesign 0xb80c01bb 0xb8000000 + 786875
    4 com.adobe.InDesign 0xb80dda6c 0xb8000000 + 907884
    5 com.adobe.InDesign 0xb814551b spinlockwrapper + 1791
    6 com.adobe.InDesign 0xb801d03b 0xb8000000 + 118843
    Thread 3:
    0 com.adobe.InDesign 0xb815aa83 spinlockwrapper + 89191
    1 com.adobe.InDesign 0xb8176f29 CallPPCFunctionAtAddressInt + 85989
    2 com.adobe.InDesign 0xb80c6c97 0xb8000000 + 814231
    3 com.adobe.InDesign 0xb80c01bb 0xb8000000 + 786875
    4 com.adobe.InDesign 0xb80dda6c 0xb8000000 + 907884
    5 com.adobe.InDesign 0xb814551b spinlockwrapper + 1791
    6 com.adobe.InDesign 0xb801d03b 0xb8000000 + 118843
    Thread 4:
    0 com.adobe.InDesign 0xb815aa83 spinlockwrapper + 89191
    1 com.adobe.InDesign 0xb8176f29 CallPPCFunctionAtAddressInt + 85989
    2 com.adobe.InDesign 0xb80c6c97 0xb8000000 + 814231
    3 com.adobe.InDesign 0xb80c01bb 0xb8000000 + 786875
    4 com.adobe.InDesign 0xb80dda6c 0xb8000000 + 907884
    5 com.adobe.InDesign 0xb814551b spinlockwrapper + 1791
    6 com.adobe.InDesign 0xb801d03b 0xb8000000 + 118843
    Thread 5:
    0 com.adobe.InDesign 0xb815ac0f spinlockwrapper + 89587
    1 com.adobe.InDesign 0xb818c47b CallPPCFunctionAtAddressInt + 173367
    2 com.adobe.InDesign 0xb818ef7c CallPPCFunctionAtAddressInt + 184376
    3 com.adobe.InDesign 0xb80e8a4f 0xb8000000 + 952911
    4 ??? 0x812ce286 0 + 2167202438
    Thread 6:
    0 com.adobe.InDesign 0xb815aa83 spinlockwrapper + 89191
    1 com.adobe.InDesign 0xb8176f29 CallPPCFunctionAtAddressInt + 85989
    2 com.adobe.InDesign 0xb80c6c97 0xb8000000 + 814231
    3 com.adobe.InDesign 0xb80c01bb 0xb8000000 + 786875
    4 com.adobe.InDesign 0xb80dda6c 0xb8000000 + 907884
    5 com.adobe.InDesign 0xb814551b spinlockwrapper + 1791
    6 com.adobe.InDesign 0xb801d03b 0xb8000000 + 118843
    Thread 7:
    0 com.adobe.InDesign 0xb815aa4c spinlockwrapper + 89136
    1 com.adobe.InDesign 0xb8176e2d CallPPCFunctionAtAddressInt + 85737
    2 com.adobe.InDesign 0xb80c6c97 0xb8000000 + 814231
    3 com.adobe.InDesign 0xb80c01bb 0xb8000000 + 786875
    4 com.adobe.InDesign 0xb80dda6c 0xb8000000 + 907884
    5 com.adobe.InDesign 0xb8145da1 spinlockwrapper + 3973
    6 com.adobe.InDesign 0xb801d03b 0xb8000000 + 118843
    Thread 8:
    0 com.adobe.InDesign 0xb815aa83 spinlockwrapper + 89191
    1 com.adobe.InDesign 0xb8176f29 CallPPCFunctionAtAddressInt + 85989
    2 com.adobe.InDesign 0xb80c6c97 0xb8000000 + 814231
    3 com.adobe.InDesign 0xb80c01bb 0xb8000000 + 786875
    4 com.adobe.InDesign 0xb80dda6c 0xb8000000 + 907884
    5 com.adobe.InDesign 0xb814551b spinlockwrapper + 1791
    6 com.adobe.InDesign 0xb801d03b 0xb8000000 + 118843
    Thread 9:
    0 com.adobe.InDesign 0xb815aa83 spinlockwrapper + 89191
    1 com.adobe.InDesign 0xb8176f29 CallPPCFunctionAtAddressInt + 85989
    2 com.adobe.InDesign 0xb80c6c97 0xb8000000 + 814231
    3 com.adobe.InDesign 0xb80c01bb 0xb8000000 + 786875
    4 com.adobe.InDesign 0xb80dda6c 0xb8000000 + 907884
    5 com.adobe.InDesign 0xb814551b spinlockwrapper + 1791
    6 com.adobe.InDesign 0xb801d03b 0xb8000000 + 118843
    Thread 10:
    0 com.adobe.InDesign 0xb815ac0f spinlockwrapper + 89587
    1 com.adobe.InDesign 0xb818c47b CallPPCFunctionAtAddressInt + 173367
    2 com.adobe.InDesign 0xb818ef7c CallPPCFunctionAtAddressInt + 184376
    3 com.adobe.InDesign 0xb80e8a4f 0xb8000000 + 952911
    4 ??? 0x812ce286 0 + 2167202438
    Thread 11:
    0 com.adobe.InDesign 0xb815aa83 spinlockwrapper + 89191
    1 com.adobe.InDesign 0xb8176f29 CallPPCFunctionAtAddressInt + 85989
    2 com.adobe.InDesign 0xb80c6c97 0xb8000000 + 814231
    3 com.adobe.InDesign 0xb80c01bb 0xb8000000 + 786875
    4 com.adobe.InDesign 0xb80dda6c 0xb8000000 + 907884
    5 com.adobe.InDesign 0xb814551b spinlockwrapper + 1791
    6 com.adobe.InDesign 0xb801d03b 0xb8000000 + 118843
    Thread 12:
    0 com.adobe.InDesign 0xb815aa83 spinlockwrapper + 89191
    1 com.adobe.InDesign 0xb8176f29 CallPPCFunctionAtAddressInt + 85989
    2 com.adobe.InDesign 0xb80c6c97 0xb8000000 + 814231
    3 com.adobe.InDesign 0xb80c01bb 0xb8000000 + 786875
    4 com.adobe.InDesign 0xb80dda6c 0xb8000000 + 907884
    5 com.adobe.InDesign 0xb814551b spinlockwrapper + 1791
    6 com.adobe.InDesign 0xb801d03b 0xb8000000 + 118843
    Thread 13:
    0 com.adobe.InDesign 0xb815aa83 spinlockwrapper + 89191
    1 com.adobe.InDesign 0xb8176f29 CallPPCFunctionAtAddressInt + 85989
    2 com.adobe.InDesign 0xb80c6c97 0xb8000000 + 814231
    3 com.adobe.InDesign 0xb80c01bb 0xb8000000 + 786875
    4 com.adobe.InDesign 0xb80dda6c 0xb8000000 + 907884
    5 com.adobe.InDesign 0xb814551b spinlockwrapper + 1791
    6 com.adobe.InDesign 0xb801d03b 0xb8000000 + 118843
    Thread 14:
    0 com.adobe.InDesign 0xb815ae05 spinlockwrapper + 90089
    1 com.adobe.InDesign 0xb816ae3b CallPPCFunctionAtAddressInt + 36599
    2 com.adobe.InDesign 0xb80c6c97 0xb8000000 + 814231
    3 com.adobe.InDesign 0xb80c01bb 0xb8000000 + 786875
    4 com.adobe.InDesign 0xb80dda6c 0xb8000000 + 907884
    5 com.adobe.InDesign 0xb8145da1 spinlockwrapper + 3973
    6 com.adobe.InDesign 0xb801d03b 0xb8000000 + 118843
    Thread 15:
    0 com.adobe.InDesign 0xb815aa83 spinlockwrapper + 89191
    1 com.adobe.InDesign 0xb8176f29 CallPPCFunctionAtAddressInt + 85989
    2 com.adobe.InDesign 0xb80c6c97 0xb8000000 + 814231
    3 com.adobe.InDesign 0xb80c01bb 0xb8000000 + 786875
    4 com.adobe.InDesign 0xb80dda6c 0xb8000000 + 907884
    5 com.adobe.InDesign 0xb814551b spinlockwrapper + 1791
    6 com.adobe.InDesign 0xb801d03b 0xb8000000 + 118843
    Thread 16:
    0 com.adobe.InDesign 0xb815aa83 spinlockwrapper + 89191
    1 com.adobe.InDesign 0xb8176f29 CallPPCFunctionAtAddressInt + 85989
    2 com.adobe.InDesign 0xb80c6c97 0xb8000000 + 814231
    3 com.adobe.InDesign 0xb80c01bb 0xb8000000 + 786875
    4 com.adobe.InDesign 0xb80dda6c 0xb8000000 + 907884
    5 com.adobe.InDesign 0xb814551b spinlockwrapper + 1791
    6 com.adobe.InDesign 0xb801d03b 0xb8000000 + 118843
    Thread 17:
    0 com.adobe.InDesign 0xb815aa83 spinlockwrapper + 89191
    1 com.adobe.InDesign 0xb8176f29 CallPPCFunctionAtAddressInt + 85989
    2 com.adobe.InDesign 0xb80c6c97 0xb8000000 + 814231
    3 com.adobe.InDesign 0xb80c01bb 0xb8000000 + 786875
    4 com.adobe.InDesign 0xb80dda6c 0xb8000000 + 907884
    5 com.adobe.InDesign 0xb814551b spinlockwrapper + 1791
    6 com.adobe.InDesign 0xb801d03b 0xb8000000 + 118843
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x000000c8 ebx: 0xb80c5e6c ecx: 0x00000000 edx: 0x00000002
    edi: 0x000000c8 esi: 0x804040a0 ebp: 0xb7fffa08 esp: 0xb7fff9d0
    ss: 0x0000001f efl: 0x00010202 eip: 0xb80c5e94 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x000000c8
    Binary Images:
    0x80000000 - 0x8006afe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x800c5000 - 0x80269feb libSystem.B.dylib ??? (???) <E58B649F-FFDC-AB09-2028-8B706BEF7C0F> /usr/lib/libSystem.B.dylib
    0x802e9000 - 0x802ecfe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0xb8000000 - 0xb81defff +com.adobe.InDesign 4.0.5.688 (4050) <3E4E06B8-E1FC-B232-1371-643DC0FBE8C9> /Applications/Adobe InDesign CS2/Adobe InDesign CS2.app/Contents/MacOS/Adobe InDesign CS2
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <E58B649F-FFDC-AB09-2028-8B706BEF7C0F> /usr/lib/libSystem.B.dylib
    Translated Code Information:
    Rosetta Version: 22.23
    Args: /Applications/Adobe InDesign CS2/Adobe InDesign CS2.app/Contents/MacOS/Adobe InDesign CS2 -psn0176171
    Exception: EXCBADACCESS (0x0001)
    Thread 0: (0xb0a7fd74, 0xb815aa83)
    0x961710b4: /usr/lib/libSystem.B.dylib : _dispatch_semaphore_waitslow + 248
    0x9616f3a8: /usr/lib/libSystem.B.dylib : _dispatch_workerthread + 116
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x961710cc ctr: 0x95fef6c0
    r00: 0xffffffda r01: 0xf08a0dc0 r02: 0x00000000 r03: 0x00002103
    r04: 0x00000040 r05: 0x3b9aad19 r06: 0x00000020 r07: 0x00000000
    r08: 0x3b9aad19 r09: 0x00000000 r10: 0x3b9aad19 r11: 0xa0b45670
    r12: 0x95fef6c0 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0xa0b4b6d0 r22: 0xa0b4b6c4 r23: 0xa0b4b6cc
    r24: 0x0000035e r25: 0xaee33c8e r26: 0xa0b4b35c r27: 0x00000040
    r28: 0x0000000f r29: 0x224d2d19 r30: 0xa0b4b6a4 r31: 0x96170fc4
    Thread 1: (0xb019ed74, 0xb815aa83)
    0x961710b4: /usr/lib/libSystem.B.dylib : _dispatch_semaphore_waitslow + 248
    0x9616f3a8: /usr/lib/libSystem.B.dylib : _dispatch_workerthread + 116
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x961710cc ctr: 0x95fef6c0
    r00: 0xffffffda r01: 0xf0182dc0 r02: 0x00000000 r03: 0x00002403
    r04: 0x00000040 r05: 0x3b9aaa7f r06: 0x00000020 r07: 0x00000000
    r08: 0x3b9aaa7f r09: 0x00000000 r10: 0x3b9aaa7f r11: 0xa0b45670
    r12: 0x95fef6c0 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0xa0b4b790 r22: 0xa0b4b784 r23: 0xa0b4b78c
    r24: 0x00000361 r25: 0x589c31d8 r26: 0xa0b4b4d0 r27: 0x00000040
    r28: 0x0000000f r29: 0x224d2a7f r30: 0xa0b4b764 r31: 0x96170fc4
    Thread 2: (0xb022084c, 0xb815ac0f)
    0x00000000: No symbol
    0x976f70c0: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : TS_exception_listenerthread + 128
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x95fefd84 ctr: 0x95fef650
    r00: 0xffffffe1 r01: 0xf0203df0 r02: 0xa0b52f30 r03: 0x03001000
    r04: 0x00000002 r05: 0x00000000 r06: 0x00000054 r07: 0x00003e0b
    r08: 0x00000000 r09: 0x00000000 r10: 0x03800000 r11: 0xa0b45180
    r12: 0x95fef650 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0x00000000 r22: 0x03001000 r23: 0x00000000
    r24: 0x00000054 r25: 0x00003e0b r26: 0x00000000 r27: 0x00000000
    r28: 0x00000002 r29: 0x00000002 r30: 0x00000000 r31: 0x976f7048
    Thread 3: (0xb08f9d74, 0xb815aa83)
    0x961710b4: /usr/lib/libSystem.B.dylib : _dispatch_semaphore_waitslow + 248
    0x9616f3a8: /usr/lib/libSystem.B.dylib : _dispatch_workerthread + 116
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x961710cc ctr: 0x95fef6c0
    r00: 0xffffffda r01: 0xf071ddc0 r02: 0x00000000 r03: 0x00002503
    r04: 0x00000040 r05: 0x3b9ab20e r06: 0x00000020 r07: 0x00000000
    r08: 0x3b9ab20e r09: 0x00000000 r10: 0x3b9ab20e r11: 0xa0b45670
    r12: 0x95fef6c0 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0xa0b4b7d0 r22: 0xa0b4b7c4 r23: 0xa0b4b7cc
    r24: 0x0000035b r25: 0x8d316d93 r26: 0xa0b4b54c r27: 0x00000040
    r28: 0x0000000f r29: 0x224d320e r30: 0xa0b4b7a4 r31: 0x96170fc4
    Thread 4: (0xb009ad38, 0xb815ae44)
    0x9616f588: /usr/lib/libSystem.B.dylib : _dispatch_mgrinvoke + 228
    0x9616f0c0: /usr/lib/libSystem.B.dylib : _dispatch_queueinvoke + 320
    0x9616f244: /usr/lib/libSystem.B.dylib : _dispatch_workerthread2 + 364
    0x9616f380: /usr/lib/libSystem.B.dylib : _dispatch_workerthread + 76
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x9616f550 ctr: 0x960332d4
    r00: 0x0000016b r01: 0xf0080bb0 r02: 0x00000003 r03: 0x00000004
    r04: 0x00000000 r05: 0x00000000 r06: 0xf0080d0c r07: 0x00000001
    r08: 0xf0080d28 r09: 0x00000000 r10: 0x00000003 r11: 0xa0b44524
    r12: 0x960332d4 r13: 0x10624dd3 r14: 0x961beb2c r15: 0xf0080c0c
    r16: 0xf0080c8c r17: 0xa0b5f4ac r18: 0xf0080d28 r19: 0xa0b594f8
    r20: 0xa0b5a4f8 r21: 0xf0080d0c r22: 0xa0b59478 r23: 0xa0b593f8
    r24: 0xa0b5f4ac r25: 0x00000000 r26: 0x00000000 r27: 0xa0b4b5c8
    r28: 0xa0b4b300 r29: 0xa0b4b5c8 r30: 0xf0080d28 r31: 0x9616f4ac
    Thread 5: (0xb011cd74, 0xb815aa83)
    0x961710b4: /usr/lib/libSystem.B.dylib : _dispatch_semaphore_waitslow + 248
    0x9616f3a8: /usr/lib/libSystem.B.dylib : _dispatch_workerthread + 116
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x961710cc ctr: 0x95fef6c0
    r00: 0xffffffda r01: 0xf0101dc0 r02: 0x00000000 r03: 0x00002403
    r04: 0x00000040 r05: 0x3b9aaf4f r06: 0x00000020 r07: 0x00000000
    r08: 0x3b9aaf4f r09: 0x00000000 r10: 0x3b9aaf4f r11: 0xa0b45670
    r12: 0x95fef6c0 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0xa0b4b790 r22: 0xa0b4b784 r23: 0xa0b4b78c
    r24: 0x0000035b r25: 0x3d4dfb37 r26: 0xa0b4b4d0 r27: 0x00000040
    r28: 0x0000000f r29: 0x224d2f4f r30: 0xa0b4b764 r31: 0x96170fc4
    Thread 6: (0xb03a684c, 0xb815ac0f)
    0x95d19480: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFRunLoopModeIsEmpty + 160
    0x95d1d98c: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFRunLoopRun + 1980
    0x95d1ea04: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFRunLoopRunSpecific + 656
    0x95d1ec64: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFRunLoopRun + 72
    0x96211ad8: /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv : TSystemNotificationTask::SystemNotificationTaskProc(void*) + 556
    0x976b7628: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x95fefd84 ctr: 0x95fef650
    r00: 0xffffffe1 r01: 0xf0386060 r02: 0xa0b073fc r03: 0xf038617c
    r04: 0x07000006 r05: 0x00000000 r06: 0x00000800 r07: 0x0000a503
    r08: 0x00000000 r09: 0x00000000 r10: 0x00000000 r11: 0xa0b45180
    r12: 0x95fef650 r13: 0x00000000 r14: 0x7fffffff r15: 0xffffffff
    r16: 0x00000351 r17: 0x123cb1e0 r18: 0xf038617c r19: 0xa0b4c698
    r20: 0x95dd0d60 r21: 0xa0b06a58 r22: 0xf038617c r23: 0x00000000
    r24: 0x00000800 r25: 0x0000a503 r26: 0x00000000 r27: 0x00000000
    r28: 0x07000006 r29: 0x07000006 r30: 0x0000a403 r31: 0x95d1d1d8
    Thread 7: (0xb051cd74, 0xb815aa83)
    0x961710b4: /usr/lib/libSystem.B.dylib : _dispatch_semaphore_waitslow + 248
    0x9616f3a8: /usr/lib/libSystem.B.dylib : _dispatch_workerthread + 116
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x961710cc ctr: 0x95fef6c0
    r00: 0xffffffda r01: 0xf0488dc0 r02: 0x00000000 r03: 0x00002103
    r04: 0x00000040 r05: 0x3b9aaee7 r06: 0x00000020 r07: 0x00000000
    r08: 0x3b9aaee7 r09: 0x00000000 r10: 0x3b9aaee7 r11: 0xa0b45670
    r12: 0x95fef6c0 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0xa0b4b6d0 r22: 0xa0b4b6c4 r23: 0xa0b4b6cc
    r24: 0x0000035e r25: 0xc1c149f5 r26: 0xa0b4b35c r27: 0x00000040
    r28: 0x0000000f r29: 0x224d2ee7 r30: 0xa0b4b6a4 r31: 0x96170fc4
    Thread 8: (0xb0773d74, 0xb815aa83)
    0x961710b4: /usr/lib/libSystem.B.dylib : _dispatch_semaphore_waitslow + 248
    0x9616f3a8: /usr/lib/libSystem.B.dylib : _dispatch_workerthread + 116
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x961710cc ctr: 0x95fef6c0
    r00: 0xffffffda r01: 0xf060bdc0 r02: 0x00000000 r03: 0x00002403
    r04: 0x00000040 r05: 0x3b9ab0cd r06: 0x00000020 r07: 0x00000000
    r08: 0x3b9ab0cd r09: 0x00000000 r10: 0x3b9ab0cd r11: 0xa0b45670
    r12: 0x95fef6c0 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0xa0b4b790 r22: 0xa0b4b784 r23: 0xa0b4b78c
    r24: 0x0000035b r25: 0x37770f32 r26: 0xa0b4b4d0 r27: 0x00000040
    r28: 0x0000000f r29: 0x224d30cd r30: 0xa0b4b764 r31: 0x96170fc4
    Thread 9: (0xb0324d78, 0xb815aa4c)
    0x9608c544: /usr/lib/libSystem.B.dylib : _pthread_condwait + 880
    0x20522448: ./TINthread.dylib : ThreadUtils::ConditionVariable::Wait(ThreadUtils::MutualExclusion&) + 24
    0x2051d708: ./TINthread.dylib : ThreadUtils::ThreadPool::Dispatcher() + 180
    0x2051d1a4: ./TINthread.dylib : ThreadUtils::ThreadPool::ThreadProc(void*) + 20
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x9608c59c ctr: 0x95fef6b0
    r00: 0xffffffdb r01: 0xf0305d30 r02: 0x00000001 r03: 0x00005f03
    r04: 0x00006003 r05: 0x00000028 r06: 0x00000030 r07: 0x00005e03
    r08: 0x00000000 r09: 0x00000001 r10: 0x00000eee r11: 0xa0b45674
    r12: 0x95fef6b0 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: 0xa0b4c6e4 r27: 0x00000000
    r28: 0x1eef10d0 r29: 0x00000000 r30: 0x1eef1130 r31: 0x9608c1e0
    Thread 10: (0xb0877bcc, 0xb815ae05)
    0x95d2a214: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFSocketManager + 856
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x95d2a2b8 ctr: 0x9605011c
    r00: 0x0000005d r01: 0xf0694a90 r02: 0xa0b09ec4 r03: 0x00000040
    r04: 0x1d809740 r05: 0x1d809730 r06: 0x00000000 r07: 0x00000000
    r08: 0x00000290 r09: 0xa0b08b88 r10: 0xa08617f8 r11: 0xa0af3444
    r12: 0x9605011c r13: 0xa0b08b88 r14: 0xa0b08b88 r15: 0x1d809730
    r16: 0x95dd1edc r17: 0xa0b09ec4 r18: 0x00000000 r19: 0x1d809740
    r20: 0xf068ce60 r21: 0x1d809560 r22: 0x1d809580 r23: 0xa0b071e8
    r24: 0x00000000 r25: 0x00000001 r26: 0x00000040 r27: 0x1d80b1e0
    r28: 0x00000000 r29: 0x1d699db0 r30: 0x00000000 r31: 0x95d29ec4
    Thread 11: (0xb02a2d74, 0xb815aa83)
    0x976b66dc: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/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
    0x976b7628: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _PrivateMPEntryPoint + 100
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x00000000 lr: 0x976b6720 ctr: 0x95fef6c0
    r00: 0xffffffda r01: 0xf0284d20 r02: 0x0162a3f0 r03: 0x00004903
    r04: 0x7fffffff r05: 0x00000000 r06: 0x00000000 r07: 0x00000000
    r08: 0x00000000 r09: 0x4d555458 r10: 0x9688399c r11: 0xa0b45670
    r12: 0x95fef6c0 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: 0x976b66c0
    Thread 12: Crashed (0xb7fff9d0, 0xb80c5e94)
    0x0145e9b4: No symbol
    0x01386fbc: No symbol
    0x013878c8: No symbol
    0x0138797c: No symbol
    0x013525ac: No symbol
    0x01352af0: No symbol
    0x013654ec: No symbol
    0x01365bc0: No symbol
    0x01365c4c: No symbol
    0x01355410: No symbol
    0x011191ac: No symbol
    0x01116204: No symbol
    0x23044cd4: ./EPS Page Item.framework/Versions/A/EPS Page Item : _GetPlugIn + 261076
    0x23007664: ./EPS Page Item.framework/Versions/A/EPS Page Item : _GetPlugIn + 9572
    0x23005560: ./EPS Page Item.framework/Versions/A/EPS Page Item : _GetPlugIn + 1120
    0x2c196ad4: No symbol
    0x2c195c9c: No symbol
    0x2c199b74: No symbol
    0x2c196ad4: No symbol
    0x2c195c9c: No symbol
    0x1e12485c: ./Layer.framework/Versions/A/Layer : dyldstub_bindinghelper + 17164
    0x1e1252f8: ./Layer.framework/Versions/A/Layer : dyldstub_bindinghelper + 19880
    0x182320ac: ./AppFramework.framework/Versions/A/AppFramework : _GetPlugIn + 87852
    0x18b064ec: ./Master Page.framework/Versions/A/Master Page : dyldstub_bindinghelper + 17932
    0x18b12290: ./Master Page.framework/Versions/A/Master Page : _GetPlugIn + 41664
    0x18b12b4c: ./Master Page.framework/Versions/A/Master Page : _GetPlugIn + 43900
    0x18232c10: ./AppFramework.framework/Versions/A/AppFramework : _GetPlugIn + 90768
    0x18232e6c: ./AppFramework.framework/Versions/A/AppFramework : _GetPlugIn + 91372
    0x1e1252b4: ./Layer.framework/Versions/A/Layer : dyldstub_bindinghelper + 19812
    0x23d01c34: ./Spread.framework/Versions/A/Spread : dyldstub_bindinghelper + 9764
    0x23d03574: ./Spread.framework/Versions/A/Spread : dyldstub_bindinghelper + 16228
    0x23d04290: ./Spread.framework/Versions/A/Spread : dyldstub_bindinghelper + 19584
    0x182320ac: ./AppFramework.framework/Versions/A/AppFramework : _GetPlugIn + 87852
    0x230ea9a4: ./PDF.framework/Versions/A/PDF : dyldstub_bindinghelper + 139924
    0x230e98c0: ./PDF.framework/Versions/A/PDF : dyldstub_bindinghelper + 135600
    0x230e859c: ./PDF.framework/Versions/A/PDF : dyldstub_bindinghelper + 130700
    0x230ebeb0: ./PDF.framework/Versions/A/PDF : dyldstub_bindinghelper + 145312
    0x2c040ff4: No symbol
    0x18bc1bdc: ./Utilities.framework/Versions/A/Utilities : dyldstub_bindinghelper + 5132
    0x18bc18ac: ./Utilities.framework/Versions/A/Utilities : dyldstub_bindinghelper + 4316
    0x18214e84: ./AppFramework.framework/Versions/A/AppFramework : dyldstub_bindinghelper + 82628
    0x18215378: ./AppFramework.framework/Versions/A/AppFramework : dyldstub_bindinghelper + 83896
    0x2c042a3c: No symbol
    0x23104090: ./PDF.framework/Versions/A/PDF : _GetPlugIn + 96224
    0x2c02a300: No symbol
    0x18b913f0: ./Import Export UI.framework/Versions/A/Import Export UI : _GetPlugIn + 17456
    0x18b91bd8: ./Import Export UI.framework/Versions/A/Import Export UI : _GetPlugIn + 19480
    0x26f86b70: ./PDF UI.framework/Versions/A/PDF UI : _GetPlugIn + 215024
    0x1ec55590: ./Generic Style Editor.framework/Versions/A/Generic Style Editor : _GetPlugIn + 27504
    0x2b0adfe8: No symbol
    0x1e20c0f0: ./Actions.framework/Versions/A/Actions : _GetPlugIn + 6176
    0x1e211d90: ./Actions.framework/Versions/A/Actions : _GetPlugIn + 29888
    0x182015e8: ./AppFramework.framework/Versions/A/AppFramework : dyldstub_bindinghelper + 2600
    0x1822051c: ./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: 0x20000000 lr: 0x0138490c ctr: 0x01363cc8
    r00: 0x01386fbc r01: 0xbfffa090 r02: 0x00000000 r03: 0x00000000
    r04: 0x256dd0fc r05: 0x00000000 r06: 0x00000001 r07: 0x0086967c
    r08: 0x00856c1c r09: 0x00000000 r10: 0x00000000 r11: 0x00000000
    r12: 0x01363cc8 r13: 0x25e29234 r14: 0x00000200 r15: 0x00020077
    r16: 0x00000000 r17: 0x22e8bf44 r18: 0x00000001 r19: 0x00055134
    r20: 0x230b4e40 r21: 0x0146787c r22: 0x0135299c r23: 0xbfffa670
    r24: 0x00000000 r25: 0x01386e44 r26: 0x256ef638 r27: 0x00000000
    r28: 0x00001f80 r29: 0x256dd084 r30: 0x00000012 r31: 0x00000001
    Thread 13: (0xb049ad74, 0xb815aa83)
    0x961710b4: /usr/lib/libSystem.B.dylib : _dispatch_semaphore_waitslow + 248
    0x9616f3a8: /usr/lib/libSystem.B.dylib : _dispatch_workerthread + 116
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x961710cc ctr: 0x95fef6c0
    r00: 0xffffffda r01: 0xf0407dc0 r02: 0x00000000 r03: 0x00002303
    r04: 0x00000040 r05: 0x3b9ab2b3 r06: 0x00000020 r07: 0x00000000
    r08: 0x3b9ab2b3 r09: 0x00000000 r10: 0x3b9ab2b3 r11: 0xa0b45670
    r12: 0x95fef6c0 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0xa0b4b750 r22: 0xa0b4b744 r23: 0xa0b4b74c
    r24: 0x0000035e r25: 0xaee4304f r26: 0xa0b4b454 r27: 0x00000040
    r28: 0x0000000f r29: 0x224d32b3 r30: 0xa0b4b724 r31: 0x96170fc4
    Thread 14: (0xb097bd74, 0xb815aa83)
    0x961710b4: /usr/lib/libSystem.B.dylib : _dispatch_semaphore_waitslow + 248
    0x9616f3a8: /usr/lib/libSystem.B.dylib : _dispatch_workerthread + 116
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x961710cc ctr: 0x95fef6c0
    r00: 0xffffffda r01: 0xf079edc0 r02: 0x00000000 r03: 0x00002503
    r04: 0x00000040 r05: 0x3b9ab122 r06: 0x00000020 r07: 0x00000000
    r08: 0x3b9ab122 r09: 0x00000000 r10: 0x3b9ab122 r11: 0xa0b45670
    r12: 0x95fef6c0 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0xa0b4b7d0 r22: 0xa0b4b7c4 r23: 0xa0b4b7cc
    r24: 0x0000035e r25: 0xad909188 r26: 0xa0b4b54c r27: 0x00000040
    r28: 0x0000000f r29: 0x224d3122 r30: 0xa0b4b7a4 r31: 0x96170fc4
    Thread 15: (0xb06f1d74, 0xb815aa83)
    0x961710b4: /usr/lib/libSystem.B.dylib : _dispatch_semaphore_waitslow + 248
    0x9616f3a8: /usr/lib/libSystem.B.dylib : _dispatch_workerthread + 116
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x961710cc ctr: 0x95fef6c0
    r00: 0xffffffda r01: 0xf058adc0 r02: 0x00000000 r03: 0x00002403
    r04: 0x00000040 r05: 0x3b9aaa34 r06: 0x00000020 r07: 0x00000000
    r08: 0x3b9aaa34 r09: 0x00000000 r10: 0x3b9aaa34 r11: 0xa0b45670
    r12: 0x95fef6c0 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0xa0b4b790 r22: 0xa0b4b784 r23: 0xa0b4b78c
    r24: 0x00000360 r25: 0xff3d2372 r26: 0xa0b4b4d0 r27: 0x00000040
    r28: 0x0000000f r29: 0x224d2a34 r30: 0xa0b4b764 r31: 0x96170fc4
    Thread 16: (0xb07f5d74, 0xb815aa83)
    0x961710b4: /usr/lib/libSystem.B.dylib : _dispatch_semaphore_waitslow + 248
    0x9616f3a8: /usr/lib/libSystem.B.dylib : _dispatch_workerthread + 116
    0x9608fda8: /usr/lib/libSystem.B.dylib : _pthreadbody + 40
    0x00000000: No symbol
    PPC Thread State
    srr0: 0x00000000 srr1: 0x00000000 vrsave: 0x00000000
    cr: 0xXXXXXXXX xer: 0x20000000 lr: 0x961710cc ctr: 0x95fef6c0
    r00: 0xffffffda r01: 0xf068cdc0 r02: 0x00000000 r03: 0x00002403
    r04: 0x00000040 r05: 0x3b9a1a86 r06: 0x00000020 r07: 0x00000000
    r08: 0x3b9a1a86 r09: 0x00000000 r10: 0x3b9a1a86 r11: 0xa0b45670
    r12: 0x95fef6c0 r13: 0x00000000 r14: 0x00000000 r15: 0x00000000
    r16: 0x00000000 r17: 0x00000000 r18: 0x00000000 r19: 0x00000000
    r20: 0x00000000 r21: 0xa0b4b790 r22: 0xa0b4b784 r23: 0xa0b4b78c
    r24: 0x0000035c r25: 0x6e250395 r26: 0xa0b4b4d0 r27: 0x00000040
    r28: 0x0000000f r29: 0x224c9a86 r30: 0xa0b4b764 r31: 0x96170fc4
    Model: MacBook4,1, BootROM MB41.00C1.B00, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.31f0
    Graphics: Intel GMA X3100, GMA X3100, Built-In, 144 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.91.19)
    Bluetooth: Version 2.2.1f7, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MHY2250BH, 232.89 GB
    Parallel ATA Device: HL-DT-ST DVDRW GSA-S10N
    USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0xfd100000
    USB Device: Apple Optical USB Mouse, 0x05ac (Apple Inc.), 0x0304, 0xfd130000
    USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0221, 0xfd120000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x022a, 0x5d200000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x5d100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x1a100000

  • How to convert InDesign CS2 files for editing in CS5 (win)

    We are a small publishing company with several top-selling language products. I need to revision a title which was published 10 years ago. The files are CS2 and I cannot open them in CS5. Seem Adobe doesn't offer any conversion utility. It seem I need to open them in CS3 then save and use CS4 to convert from CS3 to CS4, then I can use CS5. But I cannot find CS3 for sale anywhere. So I'm screwed. Please offer a file conversion service. It's just code! you can run the old versions on virtualized servers and charge $500 per file. I'll pay! I'm totally screwed. We have to recreate the entire book from scratch. I used to be an Adobe promoter, but now I'm a detractor. this is horrible.
    Does anyone have old versions around could be used to get this job done?
    Cheers!

    OK this is seriously messed up. I just spent the day installing trial versions of InDesign CS3 and CS4 (on a Windows Virtual PC running Windows XP) and converted my files from CS2 to CS3, then C3 to CS4. But when I try to open in CS5, they still crash InDesign CS5! Something is corrupt or incompatible with InDesign CS5 even though they opened in CS3 and CS4. wtf.
    Guess I'll just have to edit in CS4 and give up on bring these files any closer to the modern world? Any other ideas?
    crash on open
    2015-02-13_1940 - maxhodges's library
    Cheers!

  • 10.4.6 + InDesign CS2 =  Total Disaster.  PLEASE HELP.

    After installing 10.4.6 my Adobe InDesign CS2 no longer works. It crashes every time I start it up. I've repaired permissions, cleared caches and troubleshooted the system fonts folder. No luck. PLEASE HELP. I'm missing deadlines, losing money and sweating bullets.
    I can't believe Apple wouldn't test this update on all Adobe Design Apps and end up alienating their core audience. Shocking.
    Any advice or fix for this would be greatly appreciated. Thanks in advance.
    G5 Dual Core 2.3   Mac OS X (10.4.6)  

    The one thing you should have done was create a clone of your system hard drive on a firewire external disk, then you could have booted from that and kept working then returned to deal with the 10.4.6 problems later when deadlines aren't looming. Remember that for next time.
    There should be no problem running IDCS2 in 10.4.6, something else is wrong. Get Disk Warrior and run repairs.
    If necessary do an Archive and Install of Tiger, then a full update to 10.4.6 (Repairing Permissions before and after everything), then reinstall InDesign (test InDesign after the Archive and Install first, it might be fixed just from that). This is practically a sure thing so if deadlines are getting tight you might just want to go right for this instead of messing around with other fixes first.
    And whatever you do get an external firewire drive and SuperDuper! and make a clone of your drive so everything is backed up and you always have a fail-safe system to fall back on.

  • Using InDesign CS2 on OS 10.6

    We bought some new Macs running on OS 10.6. Unfortunately, our editorial system is still using InDesign CS2. And when we print, Indesign CS2 crashes. This has happened in all the Macs running on 10.6.
    Has anyone experienced this and solved it? We do have InDesign CS4 but it's a hassle opening the CS2 page just to print it.

    Has anyone experienced this and solved it? We do have InDesign CS4 but it's a hassle opening the CS2 page just to print it.
    If you're going to stick with an editorial platform that only runs well on PowerPC architecture with old versions of the OS, you are buying into the idea of keeping old hardware running until such time as you upgrade or abandon the editorial platform.There are ways to buy obsolete Mac hardware - I suggest you spend some time on lowendmac.com and start developing your old-hardware-maintenance plan.
    You might be able to find a better workaround (can you export PDFs and print those?) but no matter what you do, you will be duct-taping something together. Ever since 10.6 came out, we've been seeing these threads on a regular basis, and never once has anyone posted a fix that was not made out of duct tape.

Maybe you are looking for

  • How do you make use of the 2nd Ethernet port on the Mac Pro?

    My Mac Pro's ethernet port connects it to the local network and the internet. Under what circumstances would I make use of the 2nd port? Are there any settings I'd have to set up in system preferences to make sure one is used for some things while th

  • Help reg what formats to be used for my new 4tb mini stack to back up my macbook and 2 external hard disks

    Hey Guys, I need an advice from you experts regarding the different formats to be used to format my New 4 Tb ministack from OWC. I  have a  Mid 2010 Intel macbook pro with 500gb hard disk using Mountain lion and two external hard disk from Samsung an

  • Mysterious file found named iNode12369030

    It's almost 5GB in size; I haven't tried opening it yet, just in case.  It has no extension (i.e. mp3, mov).  It's located in it's own folder called lost+found and it appeared 3 days ago.  Would it be safe to delete it and if so should I do a secure

  • Refresh content list in Front Row?

    I'm using Front Row on a Mac Mini as a mediacenter for my LCD-TV. This Mac is only turned on as soon as I'm actually using it for listening to music, watching movies and video podcasts, etc.. When turned on it automatically starts Front Row and iTune

  • Adding Keywords?

    I apologize if this question has already been answered, but a fairly in-depth search of these forums resulted in nothing for me, so here goes: I would like to add categories (I think they're referred to as 'keywords' in soundtrack) for a library of s