Addon make SB1 2005A crashes when pass a quotation to an order document

Hi all,
Now i have a very strange problem, my addon runs well, but when i pass a quotation to an order document SB1 crash and create a dump file. I think this is related with the antivirus or something, but if we can´t change the antivirus because we have a contract?. Someone has this problem?
Thank you all again.
Regards.

Hi,
are you sure that the problem is done by antivirus? When you stop it and resident services of it as well, is the problem solved? I think that  this may be problem in addon and not AV.
Petr

Similar Messages

  • Indesign repeatedly crashes when I copy text from one InDesign document to another InDesign document

    Indesign CC repeatedly crashes when I copy text from one InDesign document to another InDesign document. Is it possible to solve this problem?

    Without system information and details like what text formatting, language settings, fonts used, paragraph styles even down to the spell check language nobody can even begin to guess.
    Mylenium

  • How do I get inDesign to quit crashing when I try to open a damaged document?

    Alright, I'm in a bit of a pinch and behind on deadline because of something completely random and out of the blue happening with inDesign. Here's what happened:
    I was working on a magazine layout and printed out a PDF draft. The draft looked normal. I saved, shut my computer, walked away, and came back 30 minutes later to find that 9 pages had gone almost completely blank - even the locked layers were gone. I checked the layers and they were still locked. I thought my content had gotten erased somehow. Then I looked again and saw an overseer text symbol in the middle of one of the spreads. I clicked it and was able to enlarge it somewhat. Doing this gave me the spinning color wheel of doom (I have a Mac running off of Maverick now), and every little zoom and mouse movement gave this result that lasted about 3 minutes at a time. I tried saving again (got the spinning color wheel of doom), then shut down inDesign, and tried again. Same thing happened, only this time I got an automatic recovery notice when it opened. Everything else looked normal. I noticed that the content that had been squished was actually also at a skewed angle as well, like it had been rotated at some strange 3D plane. The story board would also expand to 10 times the normal size every time I tried to move the skewed, overset content. I shut everything down again and restarted my computer. Only this time, whenever I tried to open the problematic document, it would give me the auto recovery request, then promptly crash when I clicked "Yes" for auto recover. I tried multiple times now to open the document, thinking maybe I could just wipe those pages and start over again, but it crashes every time.
    Nothing like this has ever happened to me before. I have no idea how this happened, and now it seems like I'm going to loose the entire document, about 40 hours of work. As far as I know, nobody else was near my computer in the 30 minutes it took me to shut it and open it back up again.
    Help!
    Can anybody shed some light onto this situation? Honestly, I'd be happy to just be able to open the document again so I can erase those problem pages and re-do them... I took screen shots of what inDesign was doing before it crashed:
    Here you can see that the "P" in the upper left is all twisted, the same way my content is:
    This is a zoomed-out image of how big the storyboard would become when I tried to tweak that overset text/ content...

    You can try opening the file "as a copy" from the open dialog. You can also try the blind export to .idml: Adobe Community: InDesign 6 is crashing when attempting to open a particular document. All others are opening OK.
    and there's a tool for Windows you can try, if you have access to a windows machine: INDDRecovery — a program for restoring corrupted InDesign documents
    After that, it's a question of how much money you want to throw at it. Markzware.com has a paid recovery service that will probably work.

  • Illustrator & Indesign CC (Windows) crashes when trying to open an new/existing document

    I installed Illusrator & Indesign CC when they were released as I had a pre-existing Adobe CC account which I had previously downloaded Photoshop and Indesign CS6 with. When I try to use Indesign & Illustrator CC they both crash when you go to open a new / existing document. I also downloaded Photoshop CC and this works fine. I have phoned Adobe 6 times to try to resolve the issue, each time I wait on hold for an hour and they get told they will call back within 2-5 hours but this never happens.
    Has anyone else had this issue since installing CC and found a way to resolve it? 

    Are Tahoma and Verdana fonts installed on your system?

  • Pages crashes when I try to start a new document.

    I can open saved documents.  I can edit documents. 
    When I try to start a NEW document the app crashes. 

    Hi beckynnate,
    First I would try under a test user to see if it's an App issue or a user (preferences) issue.
    Isolating an issue by using another user account
    http://support.apple.com/kb/TS4053
    That article has steps to try if it only happens with one account.  If it happens with both accounts, follow this article starting at "Remove receipts and reinstall iLife applications."  It talks about iLife, but iWork would be the same.
    iLife: Troubleshooting Basics
    http://support.apple.com/kb/ts3249
    Thank you for using Apple Support Communities.
    Nubz

  • KPIC makes programs running crash when libraries are recompiled

    Hi,
    I have a very simple library that wraps a Timer class and a test program linked to it.
    First of all, I compile the library and the main without the KPIC flag. Then, I execute the program and, while it's running, I add some dummy sentence to the library and recompile it. Nothing happens to the binary running. It keep unaware of changes in the library and keeps running.
    Now, I recompile everything with KPIC and try to make the same test. Just when the library has been recompiled, execution is broken by a core dump.
    You'd say that it has an easy solution: do not use the KPIC but I'm trying to develop my program in 64 bits and I'm forced - as far as I know - to compile using the KPIC flag.
    Any idea of how to make it work? I can't assume to stop all my programs after any change in the library.
    Thanks in advance
    Jorge Ortiz

    Let me clear up a few points and add to what amorrowcrcg has said.
    Whether you are building a 32-bit or 64-bit program is a separate concern from generating PIC (positiion-independent code). PIC means that the code contains no absolute addresses. All references are relative to the program counter or the starting address of a section, or to a table in a shared library.
    Code that goes into a shared library should be compiled as PIC. Otherwise, the library is cannot actually be shared; each process that links to it gets a separate copy.
    Since PIC is often a little larger and a little slower than ordinary code, there is no reason to generate PIC except for use in a shared library.
    You cannot overwrite a shared library while a process is using it. As previously explained, the file is truncated to zero size, then grows to its full size as data is copied into the file.
    In many cases, you can replace a shared library on the fly by first removing it, then copying a new version into the same location.
    % rm destdir/mylib.so
    % cp srcdir/mylib.so destdir
    When you remove the file, you really are just removing the entry in the directory that points to the file. The file itself is not removed until there are no more references to it. Any processes currently using the shared library still have access to it. When the last such process exits, the OS sees that the file has no more references, and removes the file.
    When you copy in a new version of the library, processes started after the copy is complete find the library via the directory entry, which now points to the new library version. If a process starts before the copying is complete, the process can fail when it finds an incomplete library. (The copying might be suspended while a new process starts.)
    A better technique is copy the file to a temp in the destination directory, then rename the temp:
    % cp srcdir/mylib.so destdir/mylib.so.tmp
    % rm destdir/mylib.so
    % mv destdir/mylib.so.tmp destdir/mylib.so
    You now have a time period where no library exists, but you don't have a time where only part of the library is available.

  • In Design Crashes when working in tables on a legacy document

    Hi
    I'm working on a legacy document created in CS5.5, the document contains tables which I need to update.
    When I attempt to change the stroke or fill, I manage to update 2 rows before the program freezes. The only recourse is to then close the file, at which point a box pops up saying Indesign has stopped working.
    When I re-open the file after re-starting InDesign the file has to be automatically recovered.
    I have just downloaded and installed the latest patches from the cloud desktop & have installed the font manager fix, this has not made any difference.
    So far I have spent 5 hours on a document that should have taken 45 minutes to update - who pays for my lost time? - I can't charge my customer!
    Please can someone find a solution, I have another 10 documents to update.
    Adobe in Design CC
    Windows 7 Pro X64

    Hi Bob / Peter
    Bob You are correct, there is a drop shadow on the table, removing this has enabled me to update the table, however the design of the document requires the drop shadow, or a complete redesign of all 10 documents in the series.
    Once the text was updated re-enabling the drop shadow caused In design to crash again.
    So any suggestions?
    At least part of the problem is resolved, I suppose I could create some shadows to place behind the table in illustrator?
    Peter - Hadn't tried the tagged text export, I will give this a try and let you know if it's successful - Can I export styles as well?

  • Reader 11.0.2 crashes when user rt-clicks in the .pdf document

    When user right-clicks inside a fillable .pdf (i.e. as if to rt-click/copy or rt-click/paste) she gets the error "Adobe Reader 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."  This occurs 100% of the time when right-clicking.  Unfortunately, Windows hasn't notified me of a solution yet...    
    Event Viewer info:
    Faulting application name: AcroRd32.exe, version: 11.0.2.0, time stamp: 0x511eacd6
    Faulting module name: AcroRd32.exe, version: 11.0.2.0, time stamp: 0x511eacd6
    Exception code: 0x40000015
    Fault offset: 0x000b7ea0
    Faulting process id: 0x15f4
    Faulting application start time: 0x01ce4d860e1f16e2
    Faulting application path: C:\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe
    Faulting module path: C:\Program Files (x86)\Adobe\Reader 11.0\Reader\AcroRd32.exe
    Report Id: 4dbe18ec-b979-11e2-87e7-b4b52f7b910a
    Per other forum posts, I have tried uninstalling/reinstalling reader and then running EULA.exe and I also disabled Protected Mode.  Problem persists.
    It should be noted that Reader also crashes at other (non-right click) times as well, but without knowing exactly when it occurs, I'm unable to isolate those specific reports from the 100's of other reader crash reports in event viewer.  I've asked the user to document the date/time that reader next suffers a (non rt-click) crash.

    This is not something I have seen before.  I see that you have already tried various solutions that may prevent crashes, without any result.
    The only advice that I have for now is not to right-click, but use standard keyboard shortcuts like Ctrl+C (copy) and Ctrl+V (paste).

  • CS4 crashes when you try to change layer order, is this install problem?

    I am trying to install my version of ps cs4 onto my new macbook pro. The install goes well and everything works, except when you click on the layers to change the order photoshop will force quit. Is this an install problem, or is there an upgrade that I missed that is making this happen.
    Thanks,
    Ben

    See if this helps:
    http://kb2.adobe.com/cps/914/cpsid_91469.html
    Also make sure photoshop is up to date (current version for cs4 is 11.02)

  • InDesign CS5.5 crashes when trying to open ANY CS5.5 document

    I am using InDesign CS5.5 and can't open any of my InDesign CS5.5 documents. The message "InDesign has stopped working" appears.
    Even when trying to create a new document, again the message "Adobe InDesign CS5.5 has stopped working" - close programme.
    InDesign was working perfectly on Friday. Saved and exported a file to pdf, all okay.
    Are you able to help.

    Hi Peter
    I uninstalled the whole CS5.5, downloaded and ran the cleaning thing, reinstalled the whole suite but it came up with the message that the install had errors … every other module worked except Indesign which still did the same thing .. it would open, but not an existing or new doc … below is the error log
    Did everything again.. same result
    did it again but this time also deleted every folder with reference to 5.5 and cleaned the registry  .. same result
    finally, I did it all again, but this time did NOT install Fireworks (because of the error log below), 32bit Photoshop, Flash or the Apple support thingy .. and it now works !!
    so it seems there is a problem with one or more of the above … was there an update around 24-26 May ??
    Interestingly there's no icon against the Indesign program menu listing (but it still works) but the icon is still shown against all the 'indd' files 
    We rang support about 4 hours ago, they couldn't help but were going to look into it and get back to us 'within the hour' … needless to say they didn’t .. hope this 'work around' goes onto the blog and helps others
    regards
    Bruce
    Exit Code: 6

  • CS6 | Adobe Acrobat Pro v10.1.4 | Crashes when running Recognize Text on large PDF document

    Dear Adobe Friends,
    I really need some help here. I am working on a project for graduate school and am having a big problem with Acrobat Pro X.
    I am running CS6 with Acrobat Pro X on my iMac (specs below). Ordinarily, I have no problems running Acrobat Pro X for refining PDFs and doing OCR. However, on larger documents (1000+ pages), the app just plain crashes after approximately 200 pages. I'm really in a bind here so I'm hoping someone can help me out.
    I've run Acrobat on PDFs between 600-800 pages without a problem but this is really perplexing, it doesn't give me any reason except that Acrobat has unexpectedly quit.
    iMac 2.66Ghz Core 2 Duo
    4GB RAM / 320GB HDD (150GB Free)
    Mountain Lion 10.8.2
    PS: I have included a copy of my crash log. There are several of them, this is one of the more recent ones.
    ____Crash Log Here_____
    Process:         AdobeAcrobat [27695]
    Path:            /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Identifier:      com.adobe.Acrobat.Pro
    Version:         10.1.4 (10.1.4)
    Code Type:       X86 (Native)
    Parent Process:  launchd [258]
    User ID:         503
    Date/Time:       2012-11-02 19:11:57.561 -0700
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          337900 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  7029 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      8429C03D-A823-F1EC-6DB3-C96F2003ABCD
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000028
    VM Regions Near 0x28:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
        __TEXT                 0000000000001000-0000000000002000 [    4K] r-x/rwx SM=COW  /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   AdobeAGM                                0x0239533b AGMTerminate + 2600856
    1   AdobeAGM                                0x020f66c9 AGMInitialize + 345079
    2   AdobeAGM                                0x020db2ea AGMInitialize + 233496
    3   com.adobe.Acrobat.framework             0x0018b4cb RunAcrobat + 1557286
    4   com.adobe.Acrobat.framework             0x0018b419 RunAcrobat + 1557108
    5   com.adobe.Acrobat.framework             0x010636e2 AcroSecurityBailOutImpl + 13087778
    6   com.adobe.Acrobat.framework             0x01064d8d AcroSecurityBailOutImpl + 13093581
    7   com.adobe.Acrobat.framework             0x01065ba3 AcroSecurityBailOutImpl + 13097187
    8   com.adobe.AcrobatPlugin.PaperCapture          0x0d4fba27 AcroPluginMain + 21337
    9   com.adobe.AcrobatPlugin.PaperCapture          0x0d4fc34e AcroPluginMain + 23680
    10  com.adobe.AcrobatPlugin.PaperCapture          0x0d51292a AcroPluginMain + 115292
    11  com.adobe.ocrlibrary                    0x0de122e7 0xde02000 + 66279
    12  com.adobe.ocrlibrary                    0x0de10d91 0xde02000 + 60817
    13  com.adobe.ocrlibrary                    0x0de4436d RecognizeFile + 76
    14  com.adobe.AcrobatPlugin.PaperCapture          0x0d50c864 AcroPluginMain + 90518
    15  com.adobe.AcrobatPlugin.PaperCapture          0x0d50f435 AcroPluginMain + 101735
    16  com.adobe.AcrobatPlugin.PaperCapture          0x0d510bf2 AcroPluginMain + 107812
    17  com.adobe.AcrobatPlugin.PaperCapture          0x0d511271 AcroPluginMain + 109475
    18  com.adobe.Acrobat.framework             0x009c1dc9 AcroSecurityBailOutImpl + 6134537
    19  com.adobe.Acrobat.framework             0x00911939 AcroSecurityBailOutImpl + 5412473
    20  com.adobe.Acrobat.framework             0x00654238 AcroSecurityBailOutImpl + 2539384
    21  com.adobe.Acrobat.framework             0x0065437e AcroSecurityBailOutImpl + 2539710
    22  com.adobe.Acrobat.framework             0x00ba06d6 AcroSecurityBailOutImpl + 8094742
    23  com.adobe.Acrobat.framework             0x00ba03fa AcroSecurityBailOutImpl + 8094010
    24  com.adobe.Acrobat.framework             0x00bb9b45 AcroSecurityBailOutImpl + 8198277
    25  com.adobe.Acrobat.framework             0x00bbc9d4 AcroSecurityBailOutImpl + 8210196
    26  com.adobe.Acrobat.framework             0x006705ea AcroSecurityBailOutImpl + 2655018
    27  com.adobe.Acrobat.framework             0x00670937 AcroSecurityBailOutImpl + 2655863
    28  com.adobe.Acrobat.framework             0x008120bb AcroSecurityBailOutImpl + 4365819
    29  com.adobe.Acrobat.framework             0x00810847 AcroSecurityBailOutImpl + 4359559
    30  com.apple.AppKit                        0x91d9da21 -[NSWindow sendEvent:] + 6968
    31  com.apple.AppKit                        0x91d98a0f -[NSApplication sendEvent:] + 4278
    32  com.apple.AppKit                        0x91cb272c -[NSApplication run] + 951
    33  com.adobe.Acrobat.framework             0x00010c87 RunAcrobat + 6882
    34  com.adobe.Acrobat.framework             0x0000f2e1 RunAcrobat + 316
    35  com.adobe.Acrobat.Pro                   0x00001e92 main + 94
    36  com.adobe.Acrobat.Pro                   0x00001e16 start + 54
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9873f9ae kevent + 10
    1   libdispatch.dylib                       0x982ccc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x982cc7a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9873e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95882220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x959080a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x99827492 TSWaitOnCondition + 128
    4   com.apple.CoreServices.CarbonCore          0x9982768e TSWaitOnConditionTimedRelative + 146
    5   com.apple.CoreServices.CarbonCore          0x99773b9b MPWaitOnQueue + 261
    6   AdobeACE                                0x01f5d737 ACEInitialize + 3741
    7   AdobeACE                                0x01f5d6ad ACEInitialize + 3603
    8   com.apple.CoreServices.CarbonCore          0x997faa7b PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    10  libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x9873e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95882220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x959080a1 pthread_cond_wait$UNIX2003 + 71
    3   AdobeAGM                                0x020aa6bc AGMInitialize + 33770
    4   AdobeAGM                                0x020aa5f6 AGMInitialize + 33572
    5   AdobeAGM                                0x020aa151 AGMInitialize + 32383
    6   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    7   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x9873e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95882289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x95882512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x998276ad TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore          0x99773b9b MPWaitOnQueue + 261
    5   com.adobe.Acrobat.framework             0x00069165 RunAcrobat + 368576
    6   com.adobe.Acrobat.framework             0x00068e77 RunAcrobat + 367826
    7   com.apple.CoreServices.CarbonCore          0x997faa7b PrivateMPEntryPoint + 68
    8   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    9   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x9873f9ae kevent + 10
    1   com.adobe.Acrobat.framework             0x01330b1a AcroSecurityBailOutImpl + 16025690
    2   com.adobe.Acrobat.framework             0x012857eb AcroSecurityBailOutImpl + 15324459
    3   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    4   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x9873e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95882289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x9590fafc pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x0cc26f2c C_AMTUISwitchSuppressUpdates + 16864
    4   com.adobe.amt.services                  0x0cc1fe78 C_EULA_SetState + 2166
    5   com.adobe.amt.services                  0x0cc26f92 C_AMTUISwitchSuppressUpdates + 16966
    6   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    7   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 7:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x9873ec72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x95907a61 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x9590792a usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x91ea1d4d -[NSUIHeartBeat _heartBeatThread:] + 879
    4   com.apple.Foundation                    0x92ea61d8 -[NSThread main] + 45
    5   com.apple.Foundation                    0x92ea615b __NSThread__main__ + 1396
    6   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    7   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x9873f0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9588004c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9587fe19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x95867cca start_wqthread + 30
    Thread 9:
    0   libsystem_kernel.dylib                  0x9873f0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9588004c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x9587fe19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x95867cca start_wqthread + 30
    Thread 10:
    Thread 11:
    0   libsystem_kernel.dylib                  0x9873c80e semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework             0x0045007c AcroSecurityBailOutImpl + 425404
    2   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    3   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x9873c80e semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework             0x0045007c AcroSecurityBailOutImpl + 425404
    2   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    3   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x9873c80e semaphore_wait_trap + 10
    1   com.adobe.Acrobat.framework             0x0045007c AcroSecurityBailOutImpl + 425404
    2   libsystem_c.dylib                       0x9587d557 _pthread_start + 344
    3   libsystem_c.dylib                       0x95867cee thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x02395332  ecx: 0x04e22ce8  edx: 0x00000000
      edi: 0x00000000  esi: 0x04e22cec  ebp: 0xbfffd928  esp: 0xbfffd8d0
       ss: 0x00000023  efl: 0x00010282  eip: 0x0239533b   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000028
    Logical CPU: 1
    Binary Images:
        0x1000 -     0x1fff +com.adobe.Acrobat.Pro (10.1.4 - 10.1.4) <5F536BF4-9871-0FF5-45E8-24D1686ABCEF> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/AdobeAcrobat
        0x6000 -  0x1cd0ff7 +com.adobe.Acrobat.framework (10.1.4 - 10.1.4) <D3555537-0E24-FED8-A37D-1954E50ACD0D> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/Acrobat.framework/Versions/A/Acrobat
    0x1f5b000 -  0x207cfff +AdobeACE (1) <B885D217-C2F6-8496-12D0-FCA0E620635B> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x209f000 -  0x2663ffb +AdobeAGM (1) <B09E932D-3C51-EFEF-A21C-C1747B36BDB5> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x2716000 -  0x2733ff7 +AdobeBIB (1) <7C894693-F5AC-A9BF-E72A-097BDF33C329> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x273a000 -  0x2a5dff3 +com.adobe.CoolType (AdobeCoolType 5.08.115.1 - 5.08.115.1) <DA458D39-A0A9-163E-F13E-BA9333B413DD> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x2aaf000 -  0x2bcdff3  com.apple.WebKit (8536 - 8536.26.14) <C98F734D-D579-3F89-9A58-9EE890B1748E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x2c7e000 -  0x390dff3  com.apple.WebCore (8536 - 8536.26.14) <82E97E6B-3F31-39A7-B41F-CD308E6EF238> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versi ons/A/WebCore
    0x4601000 -  0x460eff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x891b000 -  0x8b13ff7 +com.adobe.Acrobat.adm (10.1.4 - 10.1.4) <34359758-168B-1E60-A3E4-2E4745649195> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/SPPlugins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0xab24000 -  0xab4affb +AdobeBIBUtils (1) <B9888BEE-A939-50E3-1CD3-3313AC14A073> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0xbc7f000 -  0xbc87fff +com.adobe.asneu.framework (asneu version 1.7.0.1 - 1.7.0.1) <80195B5C-2C67-D841-232C-74FCAB79D304> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0xbd13000 -  0xbd72fe7 +AcroSQLite (1) <33E9D2E6-ACE5-0905-A40C-D1079751F9DF> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AcroSQLite.framework/Versions/A/AcroSQLite
    0xbd92000 -  0xbde8ffb +com.adobe.AcrobatPlugin.WebLink (10.1.4 - 10.1.4) <D2A319BC-6B9F-7490-3097-ACEB27D02F96> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/Weblink.acroplugin/Contents/MacOS/WebLink
    0xbf00000 -  0xc10afeb +com.adobe.AcrobatPlugin.EScript (10.1.4 - 10.1.4) <831F6996-BCA1-3C75-B643-0355401D3B4C> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/EScript.acroplugin/Contents/MacOS/EScript
    0xc458000 -  0xc516ff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xc65a000 -  0xc6cafeb +com.adobe.adobe_caps (adobe_caps 3.5.4.0 - 3.5.4.0) <36D53A2C-0DAB-34C6-48C7-49D2ECF52D0D> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0xca8f000 -  0xcafcffb +com.adobe.amtlib (amtlib 3.5.0.34 - 3.5.0.34) <8C1EBC9E-DDFF-660B-03FB-196CE8A4CED8> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/amtlib.framework/amtlib
    0xcb13000 -  0xcbbefff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0xcc02000 -  0xcc69fe7 +com.adobe.amt.services (AMTServices 3.5.0.34 [BuildVersion: 3.5; BuildDate: Tue Sep 14 2010 21:49:00] - 3.5.0.34) <F56D7855-B0F7-4E7E-1997-D4FC2F5ACB2D> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices
    0xd4b0000 -  0xd4e7fef +com.adobe.AcrobatPlugin.Updater (10.1.4 - 10.1.4) <1E8139A5-93D8-AF1E-07B4-06AB8970C796> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/Updater.acroplugin/Contents/MacOS/Updater
    0xd4f1000 -  0xd528ff7 +com.adobe.AcrobatPlugin.PaperCapture (10.1.4 - 10.1.4) <3040067C-A6B9-93A4-F13C-98B560EC7C17> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/PaperCapture.acroplugin/Contents/MacOS/PaperCapture
    0xd8f4000 -  0xd971ff7 +com.irislink.iDRS14_5 (14.5 - 14.5.4.1) <A30459C2-B559-CF82-60DC-19FE9758BECB> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/PaperCapture.acroplugin/Contents/Frameworks/OCRLibrary.framewor k/Versions/A/Frameworks/iDRS14_5.framework/Versions/A/iDRS14_5
    0xde02000 -  0xdf42fe3 +com.adobe.ocrlibrary (1.0 - 1.0) <09A69F4C-66CB-3A11-0C55-2043C45E9BC0> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/PaperCapture.acroplugin/Contents/Frameworks/OCRLibrary.framewor k/OCRLibrary
    0xdfb6000 -  0xe05eff3 +com.adobe.AcrobatPlugin.PDDom (10.1.4 - 10.1.4) <78A19A3C-8A42-2B3F-1190-570AC990B2C9> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/PDDom.acroplugin/Contents/MacOS/PDDom
    0xf108000 -  0xf165fff +AdobeXMP (0) <E3A59E8C-A514-8A4A-F965-E9C043C7AC96> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0xf5a1000 -  0xf8fcff7 +com.irislink.mac.DRS_iDRS (14.0 - 1127) <CE17CFCF-9CEF-3E67-D455-5F89B5F4BB47> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Built-in/PaperCapture.acroplugin/Contents/Frameworks/OCRLibrary.framewor k/Versions/A/Frameworks/iDRS14_5.framework/Resources/DRS_iDRS.framework/DRS_iDRS
    0x40000000 - 0x400c9fe7 +AdobeJP2K (0) <627B0577-73CB-FAD6-4728-DE97200D9099> /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fefb000 - 0x8ff2de57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x9000c000 - 0x90031ffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x90032000 - 0x90068ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9009a000 - 0x900b3fff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x900b4000 - 0x900bcfff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x900bd000 - 0x9010dff7  com.apple.CoreMediaIO (301.0 - 4147) <F13FA9D4-BD1D-3297-BDD5-5858B231D738> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9010e000 - 0x9010ffff  libdnsinfo.dylib (453.18) <41C7B8E2-2A81-31DE-BD8B-F0C29E169D4F> /usr/lib/system/libdnsinfo.dylib
    0x90110000 - 0x90114fff  com.apple.IOSurface (86.0.3 - 86.0.3) <E3A4DB0A-1C1A-31E3-A550-5C0E1C874509> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90126000 - 0x90175ff6  libTIFF.dylib (845) <989A2EB9-3A49-3157-8E9C-B16E6005BC64> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90176000 - 0x90195ff3  com.apple.Ubiquity (1.2 - 243.10) <D2C9F356-1681-31D2-B292-5227E2DDEB0B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x90196000 - 0x903adfff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x903ae000 - 0x90414fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <F8CF762B-B707-3021-958F-BB8D33DB3576> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x90526000 - 0x90538fff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x90539000 - 0x9053cffd  libCoreVMClient.dylib (24.4) <C54E8FD0-61EC-3DC8-8631-54288AC66AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x90e52000 - 0x90e77ff7  com.apple.CoreVideo (1.8 - 99.3) <5B872AC0-E82D-3475-A3F9-FD95F380560D> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90e78000 - 0x91060ff3  com.apple.CoreFoundation (6.8 - 744.12) <E939CEA0-493C-3233-9983-5070981BB350> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91061000 - 0x9147efff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x9147f000 - 0x91862ff3  com.apple.HIToolbox (2.0 - 625) <5A312E41-9940-363E-B891-90C4672E6850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x91863000 - 0x91878fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x91879000 - 0x91b1cffb  com.apple.CoreImage (8.2.2 - 1.0.1) <85BFFB09-D765-3F5F-AF65-FB136DDCAEF3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x91b1d000 - 0x91b41fff  libJPEG.dylib (845) <547FA9A5-0BBB-3E39-BACA-F3E2DAE57DB0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b44000 - 0x91b50ffa  com.apple.CrashReporterSupport (10.8.2 - 415) <BAE9900A-51E7-3AD4-A7FB-7E6CCFFB2F21> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x91b51000 - 0x91b58fff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x91b59000 - 0x92715ffb  com.apple.AppKit (6.8 - 1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92716000 - 0x9279bff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x9279c000 - 0x927a0ffc  libGIF.dylib (845) <714E9F0D-D7A3-3F58-B46E-FCBE0F144B23> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x927a1000 - 0x927fbfff  com.apple.Symbolication (1.3 - 93) <684ECF0D-D416-3DF8-8B5B-3902953853A8> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x927ff000 - 0x92874ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x92875000 - 0x928baff5  com.apple.opencl (2.1.20 - 2.1.20) <41C4AE6E-67B6-33E2-A9B6-BF6F01580B16> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x928bb000 - 0x92b7bfff  com.apple.security (7.0 - 55179.1) <CB470E48-621B-34D9-9E78-8B773358CB6B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92b7c000 - 0x92e07ff3  com.apple.RawCamera.bundle (4.00 - 658) <53F1DB23-B58B-3EAF-9D1E-95C34E669DDB> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x92e08000 - 0x93125ff3  com.apple.Foundation (6.8 - 945.11) <03B242AC-519C-3683-AA52-E73536B3D55F> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93126000 - 0x93174ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <7BA6C58B-0357-356F-BB69-17ACB5E35988> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x93175000 - 0x931d0fff  com.apple.htmlrendering (77 - 1.1.4) <5C0C669F-AE07-3983-B38F-EB829B5CE609> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x9329a000 - 0x934cafff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x934cb000 - 0x9350cff7  com.apple.framework.CoreWiFi (1.0 - 100.10) <944B3FAE-F901-3276-A676-9D52295DA817> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x9350d000 - 0x9350efff  libquarantine.dylib (52) <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x9350f000 - 0x93627ff7  com.apple.coreavchd (5.6.0 - 5600.4.16) <F024C78B-4FAA-38F1-A182-AD0A0A596CBE> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x93628000 - 0x936d7ff7  com.apple.CoreText (260.0 - 275.16) <873ADCD9-D361-3753-A220-CDD289196AD8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x93710000 - 0x93718fff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <25A7232F-9B6A-3746-A3A8-12479D086B1E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x93719000 - 0x9380affc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x93817000 - 0x9384aff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9384b000 - 0x93851fff  libGFXShared.dylib (8.6.1) <E32A7266-FCDD-352C-9C2A-8939265974AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x93892000 - 0x9389cfff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x9389d000 - 0x938cefff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x938cf000 - 0x938d3fff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x938d4000 - 0x93913ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x93914000 - 0x93917ff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x93918000 - 0x93921ff3  com.apple.DisplayServicesFW (2.6.1 - 353) <50D0BBF0-F911-380F-B470-E59B5E48E520> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x939da000 - 0x939edff9  com.apple.MultitouchSupport.framework (235.28 - 235.28) <5C8CFA21-D4FC-32E8-B199-0F7155E6ED9A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x939ee000 - 0x939f2fff  com.apple.CommonPanels (1.2.5 - 94) <6B3E7E53-7708-3DA2-8C50-59C2B4735DE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x939f3000 - 0x93a01ff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x93a02000 - 0x93a02fff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93a03000 - 0x93aa3ff7  com.apple.QD (3.42 - 285) <1B8307C6-AFA8-312E-BA5B-679070EF2CA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x93df7000 - 0x93df7fff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93df8000 - 0x93e08ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x93e3f000 - 0x93e47fff  com.apple.CommerceCore (1.0 - 26) <AF0D1990-8CBF-3AB4-99DF-8B7AE14FB0D5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x93e48000 - 0x93f06ff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x9401b000 - 0x943d3ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x943d4000 - 0x944dfff7  libJP2.dylib (845) <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x944e0000 - 0x94568fff  com.apple.PDFKit (2.7.2 - 2.7.2) <7AE7BAE9-4C21-3BFB-919E-5C6EEBBDFF75> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x94569000 - 0x945c4ff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <4BA2AAEA-4936-375C-B4D8-4BBE2EDC7FF5> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x953ed000 - 0x95403fff  com.apple.CFOpenDirectory (10.8 - 151.10) <56C3F276-BD1F-3031-8CF9-8F4F481A534E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x95404000 - 0x95406fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x95409000 - 0x95471fe7  libvDSP.dylib (380.6) <55780308-4DCA-3B10-9703-EAFC3E13A3FA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x95472000 - 0x954bbff7  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <ABA6A926-34C2-3C09-AD9F-A87A8A35536A> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x954bc000 - 0x95513ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x95517000 - 0x95518fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x95523000 - 0x95630ff3  com.apple.ImageIO.framework (3.2.0 - 845) <BF959BCB-C30A-3680-B7C2-91B327B2B63B> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x9563f000 - 0x956a7ff7  com.apple.framework.IOKit (2.0 - 755.18.10) <9A80E97E-544F-3A45-916D-6DB7ED217E33> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x956a8000 - 0x956c6ff3  com.apple.openscripting (1.3.6 - 148.2) <55738D66-CC15-3F43-9265-00C3322D39C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x956c7000 - 0x956d5ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x956d6000 - 0x956daff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x956db000 - 0x956e4ff9  com.apple.CommonAuth (3.0 - 2.0) <A1A6CC3D-AA88-3519-A305-9B5D76C5D63B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x956e5000 - 0x95701ff7  libPng.dylib (845) <14C43094-C670-3575-BF9B-3A967E05EAC0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95706000 - 0x9576afff  com.apple.datadetectorscore (4.0 - 269.1) <4D155F09-1A60-325A-BCAC-1B858C2C051B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x9576b000 - 0x95863ff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x95864000 - 0x95866ffb  libRadiance.dylib (845) <3F87840F-217D-3074-A29D-919BAAED2F4A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x95867000 - 0x95924feb  libsystem_c.dylib (825.25) <B1F6916A-F558-38B5-A18C-D9733625FDC9> /usr/lib/system/libsystem_c.dylib
    0x95925000 - 0x95932fff  libGL.dylib (8.6.1) <C7A3917A-C444-33CC-8599-BB9CD8C12BC4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9593a000 - 0x95951fff  com.apple.GenerationalStorage (1.1 - 132.2) <93694E0D-35D3-3633-976E-F354CBD92F54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x95952000 - 0x9597bff7  libRIP.A.dylib (324.6) <7976E6A2-A489-33F5-A727-7634DDE3B761> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x9597c000 - 0x95a7aff7  libFontParser.dylib (84.5) <B3006327-7B2D-3966-A56A-BD85F1D71641> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x95a7b000 - 0x95ab6fe7  libGLImage.dylib (8.6.1) <A3442557-18D5-332E-8859-423D5A20EBBE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x95ab7000 - 0x95af9ffb  com.apple.RemoteViewServices (2.0 - 80.5) <60E04F2F-AFD8-3B1F-BF07-8A3A7EABB8E9> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x95afa000 - 0x95afbfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x95afc000 - 0x95b48fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x95b49000 - 0x95b55ff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x95b56000 - 0x95b83ffb  com.apple.CoreServicesInternal (154.2 - 154.2) <DCCF604B-1DB8-3F09-8122-545E2E7F466D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x95bc7000 - 0x95f5affb  com.apple.MediaToolbox (1.0 - 926.62) <7290B07B-4D03-3B46-809C-64C8FB97B40C> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x95f5b000 - 0x961c8fff  com.apple.imageKit (2.2 - 667) <3F5F92DB-C0C0-3C5F-98C6-B84AB9E28B55> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x961c9000 - 0x961c9fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <4EC0548E-3A3F-310D-A366-47B51D5B6398> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x961ca000 - 0x96227fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <9549B81F-4425-34EE-802B-F462068DC0C5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96228000 - 0x96281fff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x962a8000 - 0x962abffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x962ac000 - 0x962b2fff  com.apple.print.framework.Print (8.0 - 258) <12AEAD24-6924-3923-9E4A-C5D21231E639> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x962b3000 - 0x962b3ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x962bc000 - 0x963a5ff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x963a6000 - 0x963aaffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x963ab000 - 0x963aeff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x964ac000 - 0x964cefff  libc++abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
    0x964cf000 - 0x965edff7  com.apple.MediaControlSender (1.4.5 - 145.3) <E0931EE7-4ACA-3538-9658-B9B2AC1E6A80> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSen der
    0x965ee000 - 0x965efffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x965f0000 - 0x96631ff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x96632000 - 0x966ccfff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x966d4000 - 0x966f4ffd  com.apple.ChunkingLibrary (2.0 - 133.2) <FE5F0F1E-B15D-3F76-8655-DC2FE19BF56E> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x966f5000 - 0x967a9fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x967aa000 - 0x967adff

    Using Acrobat Pro extract pages (each file no more than 500 pages).
    OCR each.
    Use Acrobat's 'Combine Files' feature to develop a single PDF containing all pages (and the OCR).
    Be well...

  • Word 2013 Crashes When Opening A Word 2007 Or Older Document

    I have this issue on every computer in our office. An outside source is sending in Word documents in docx format. Each time we try to open one of the files, Word with error out and close.
    My wifes company uses Office 2010 and she can open the documents without any errors. We use Office 365 Pro Plus 32-bit.
    Has anyone see this before.
    I have disabled all add-in on my machine and started Word in safe mode. All the same.
    I am able to open it in Protected Mode or in the option to Open and Repair.

    An outside source is sending in Word documents in docx format. Each time we try to open one of the files, Word with error out and close.
    What does the error say? Have you ever checked the event log? Anything useful there?
    (If you would like us to help analyze the logs, you can send the log file to this email account:
    [email protected] and inform us here. Please use the link of this thread as the subject.)
    As far as I know, when a file is opened in Protected View, all active file content, such as ActiveX controls, add-ins, database connections, hyperlinks, and Visual Basic for Applications (VBA) macros, is not enabled.
    Since you are able to launch these files in Protected Mode, probably some of the mentioned file content in these old version of files are causing the issue. You might want to troubleshoot on this aspect, check whether these files contain any of the mentioned
    content. Remove them, then try again, or have a check with a plain text document from the same source and see if issue persists.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • System Crashes when trying to print or save a document

    Since upgrading to OS10.6.5, our system crashes (usually the affected software becomes non-responsive, but sometimes the entire computer freezes) whenever trying to print, clicking on printers/faxes within the preferences panel, trying to save a "Pages" or "Word" document, and "Excel" doesn't work. I've run virus scans, but have not located any. Suggestions?

    There is a strong likelihood that your virus scanner software is causing you problems.
    There is no need for virus scanning software on a Mac.
    I suggest you uninstalling it using the uninstall procedure from the vendor who wrote and see if that helps clear up any of your problems.
    Allan

  • InDesign CS5.5 Crashes When I Add Pages at Beginning of Document. Is There a Fix?

    I am working on a long InDesign document using CS5.5 on a Mac. Every time I try to add pages at the beginning of the document, the document crashes and the program shuts down. This happens whether I add pages manually through the insert or add pages command or if I drag pages from another ID document.  Is there any fix to this?

    You can also try creating a new document - using the same page size, margins, master pages etc.
    Then use the Pages Panel and move the pages to the new document.
    You'll need both documents open.

  • Office Word 2008 crashes when trying to open a local stored document ONLY if network connection is down

    Sorry to bother you all but I have a situation I can't find a solution for:
    on a MBP 2009, running Mac OS X 10.6.8 and MS Office 2008 (up to date), if I open a local stored document AND the unit is connected to the network everything works fine.
    As soon as I switch off the network connection and I open a local stored document Word freezes and within "Force quit..." I can see that Word is no longer responding. A few minutes later OS X quits Word and that's it.
    I already checked Safe boot, removing the Microsoft plist's and reinstalling MS Office 2008 including all available updates but the situation is still the same.
    Any ideas?
    Thanks in advance
    Robert

    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account

Maybe you are looking for