Crash during spell check

I have CS3 and when I do a spell check of the entire document I get about half way and it crashes. I can spell check individual stories within the document, but not the entire document. Any ideas?

Presumably you've tried checking the story where it crashes?
You might want to try replacing your preferences. Also, is this problem related to a specific document, but not others (in which case it isn't prefs, and you should export the doc to .inx), or is it happening in all documents, old and new? What patch version of ID are you using? What version of Windows, how much RAM, etc.?
Peter

Similar Messages

  • During spell check (Pages), how to eliminate red underling?

    Hello:
    During spell check (Pages), how to eliminate red underling?
    This is a personal preference: I always spell check when finishing my work, don't want the visual distraction for the underlines.
    Thanks,
    Laurence Misterioso

    Laurence,
    Go to the Edit menu and enter the Spelling settings there. Deselect "Check spelling as you type".
    Jerry

  • Dreamweaver CS6 crashing on spell check of whole document, Windows 8.1

    After using Dreamweaver CS6 happily for quite a while, it is now crashing regularly when I try to spell check more than a very short section.
    I recently updated from Windows 8 to Windows 8.1 and was prompted to update Dreamweaver afterwards, which I did.
    The Windows log file shows that it is MSVCR100.dll that is the faulting module.
    <<begin event log quote>>
    Faulting application name: Dreamweaver.exe, version: 12.0.3.5861, time stamp: 0x50be54e4
    Faulting module name: MSVCR100.dll, version: 10.0.40219.325, time stamp: 0x4df2be1e
    Exception code: 0xc0000005
    Fault offset: 0x0000fea8
    Faulting process id: 0xbe0
    Faulting application start time: 0x01cf13aa16a93659
    Faulting application path: C:\Program Files (x86)\Adobe\Adobe Dreamweaver CS6\Dreamweaver.exe
    Faulting module path: C:\WINDOWS\SYSTEM32\MSVCR100.dll
    Report Id: cd5a227f-7f9d-11e3-beab-a41f72680171
    Faulting package full name:
    Faulting package-relative application ID:
    <<end log file quote>>
    I used the command prompt window to check for file validity, sfc /scannow but it did not find any problems at all.
    What can I do now??

    That seems to have worked. But I did not find files with the names you suggested.
    I did find an article while searching for DW Cache that gave paths for a lot of different versions of Windows and of Dreamweaver, http://www.dmxzone.com/go/16740/clearing-dreamweaver-s-cache/
    Using that I was able to select WinfileCache and delete it. On restarting Dreamweaver CS6, spell check seems to be working,
    Thanks so much for the suggestion.
    Now if I can just remember it the next time something messes up! :-)

  • Mail sends during spell check

    Hi
    Since upgrading to OSX my Mac Mail keeps sending whilst I check the text and spell check. For instantce if I decide to change a word I try to overwrite and it sends. same scenario if I add a full stop. Has anyone had this problem and is their a fix?
    Driving me mad to the point i am thinking of changing Mail app.
    Thanks!

    homenetwork wrote:
    Hi
    Since upgrading to OSX my Mac Mail keeps sending whilst I check the text and spell check. For instantce if I decide to change a word I try to overwrite and it sends. same scenario if I add a full stop. Has anyone had this problem and is their a fix?
    Driving me mad to the point i am thinking of changing Mail app.
    Thanks!
    What OSX did you update to? And what machine are you running it on?

  • IDCS6 (PC) stops working during spell check

    This is happening repeatedly. Our small office is using our own custom dictionary for spelling that I just recently created. Based on an article on another website IU have followed its suggestion for placing the dictionary on your server (rather than workstation C drive) so that all work stations can use and point to the same dictionary. Not only is the dictionary newly created (by exporting it from our old ID2 dictionary) but the entire IDCS6 installation is only a week old and is still being setup by me. Below arescreen shots that occur after using the spelling check for a minute or so. Any idea of what might be going on and how to fix it?

    Thx @ Peter
    "Do you still get crashing if you move the dictionary back to the user profile where ID is expecting to find it?"  I have not tried that and probably will do so. While it'd help diagnose whether problem is that Indd does NOT like having dictionary on server, I really don't want to take the time. Indd Help clearly states and recommends that custom dictionary be on server in these circumstances so that every work station is applying the same spelling and hyphenation rules.
    I appreciate your response and your unwillingness to bash Microsoft as I had, but my own experience is that Microsoft (and other large companies) often act in ways to promote their own solutions and products and intentionally or unintentionally make it more challenging for other software (or other products) to work with their operating system (or whatever it is that they sell).
    If it seems warranted, I will report back here if from more actual use and experience I have something of value to add. Again thanks ...

  • Spell check in oracle form

    spell check is done in oracle forms by clicking a button using client_ole.
    the code behind the button is
    DECLARE
    application CLIENT_OLE2.OBJ_TYPE;
    args CLIENT_OLE2.LIST_TYPE;
    docs CLIENT_OLE2.OBJ_TYPE;
    doc CLIENT_OLE2.OBJ_TYPE;
    selection CLIENT_OLE2.OBJ_TYPE;
    sel_text varchar2(2000);
    var_text varchar2(2000);
    start_pos number;
    PROCEDURE Close_Word IS
    BEGIN
    args := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG(args, 0);
    CLIENT_OLE2.INVOKE(doc, 'Close', args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    CLIENT_OLE2.RELEASE_OBJ(selection);
    CLIENT_OLE2.RELEASE_OBJ(doc);
    CLIENT_OLE2.RELEASE_OBJ(docs);
    synchronize;
    END Close_Word;
    BEGIN
    application:=CLIENT_OLE2.CREATE_OBJ('Word.Application');
    if :B_HSN_ITEM_PRODUCT_INFO.PRODUCT_INFO1 IS NOT NULL THEN
    CLIENT_OLE2.SET_PROPERTY(application,'Visible',0);
    docs := CLIENT_OLE2.GET_OBJ_PROPERTY(application, 'Documents');
    doc := CLIENT_OLE2.INVOKE_OBJ(docs, 'add');
    selection := CLIENT_OLE2.GET_OBJ_PROPERTY(application, 'Selection');
    -- Info 1
    CLIENT_OLE2.SET_PROPERTY(selection, 'Text',:b_hsn_item_product_info.product_info1||chr(10));
    CLIENT_OLE2.INVOKE(doc, 'CheckSpelling');
    BEGIN
    sel_text:=CLIENT_OLE2.GET_CHAR_PROPERTY(application, 'Selection');
    --upgrade added condition to see if sel_text is null or not
    if length(sel_text) > 1 then
    var_text :=SUBSTR(sel_text, 1, (NVL(LENGTH(sel_text), 0)) - 1 );
    var_text := replace(var_text,chr(146),chr(39));
    var_text := replace(var_text,chr(13),chr(10));
    :B_HSN_ITEM_PRODUCT_INFO.PRODUCT_INFO1 := var_text;
    end if;
    EXCEPTION
    WHEN VALUE_ERROR THEN
    Close_Word;
    emessage('Spell check error. Text length cannot exceed 2000 characters. Any changes made during spell check were not applied.');
    RAISE Form_Trigger_Failure;
    WHEN OTHERS then
    emessage(SQLERRM);
    raise;
    END;
    Close_Word;
    end if;
    ---info2
    if :B_HSN_ITEM_PRODUCT_INFO.PRODUCT_INFO2 IS NOT NULL THEN
    CLIENT_OLE2.SET_PROPERTY(application,'Visible',0);
    docs := CLIENT_OLE2.GET_OBJ_PROPERTY(application, 'Documents');
    doc := CLIENT_OLE2.INVOKE_OBJ(docs, 'add');
    selection := CLIENT_OLE2.GET_OBJ_PROPERTY(application, 'Selection');
    -- Info 1
    CLIENT_OLE2.SET_PROPERTY(selection, 'Text',:b_hsn_item_product_info.product_info2||chr(10));
    CLIENT_OLE2.INVOKE(doc, 'CheckSpelling');
    BEGIN
    sel_text:=CLIENT_OLE2.GET_CHAR_PROPERTY(application, 'Selection');
    --upgrade added condition to see if sel_text is null or not
    if length(sel_text) > 1 then
    var_text :=SUBSTR(sel_text, 1, (NVL(LENGTH(sel_text), 0)) - 1 );
    var_text := replace(var_text,chr(146),chr(39));
    var_text := replace(var_text,chr(13),chr(10));
    :B_HSN_ITEM_PRODUCT_INFO.PRODUCT_INFO2 := var_text;
    end if;
    EXCEPTION
    WHEN VALUE_ERROR THEN
    Close_Word;
    emessage('Spell check error. Text length cannot exceed 2000 characters. Any changes made during spell check were not applied.');
    RAISE Form_Trigger_Failure;
    WHEN OTHERS then
    emessage(SQLERRM);
    raise;
    END;
    Close_Word;
    end if;
    --info 3
    if :B_HSN_ITEM_PRODUCT_INFO.PRODUCT_INFO3 IS NOT NULL THEN
    CLIENT_OLE2.SET_PROPERTY(application,'Visible',0);
    docs := CLIENT_OLE2.GET_OBJ_PROPERTY(application, 'Documents');
    doc := CLIENT_OLE2.INVOKE_OBJ(docs, 'add');
    selection := CLIENT_OLE2.GET_OBJ_PROPERTY(application, 'Selection');
    -- Info 1
    CLIENT_OLE2.SET_PROPERTY(selection, 'Text',:b_hsn_item_product_info.product_info3||chr(10));
    CLIENT_OLE2.INVOKE(doc, 'CheckSpelling');
    BEGIN
    sel_text:=CLIENT_OLE2.GET_CHAR_PROPERTY(application, 'Selection');
    --upgrade added condition to see if sel_text is null or not
    if length(sel_text) > 1 then
    var_text :=SUBSTR(sel_text, 1, (NVL(LENGTH(sel_text), 0)) - 1 );
    var_text := replace(var_text,chr(146),chr(39));
    var_text := replace(var_text,chr(13),chr(10));
    :B_HSN_ITEM_PRODUCT_INFO.PRODUCT_INFO3 := var_text;
    end if;
    EXCEPTION
    WHEN VALUE_ERROR THEN
    Close_Word;
    emessage('Spell check error. Text length cannot exceed 2000 characters. Any changes made during spell check were not applied.');
    RAISE Form_Trigger_Failure;
    WHEN OTHERS then
    emessage(SQLERRM);
    raise;
    END;
    Close_Word;
    end if;
    -- Info 4
    IF :B_HSN_ITEM_PRODUCT_INFO.PRODUCT_INFO4 IS NOT NULL THEN
    CLIENT_OLE2.SET_PROPERTY(application,'Visible',0);
    docs := CLIENT_OLE2.GET_OBJ_PROPERTY(application, 'Documents');
    doc := CLIENT_OLE2.INVOKE_OBJ(docs, 'add');
    selection := CLIENT_OLE2.GET_OBJ_PROPERTY(application, 'Selection');
    CLIENT_OLE2.SET_PROPERTY(selection, 'Text',:b_hsn_item_product_info.product_info4||chr(10));
    CLIENT_OLE2.INVOKE(doc, 'CheckSpelling');
    BEGIN
         sel_text:=CLIENT_OLE2.GET_CHAR_PROPERTY(application, 'Selection');
    --upgrade added condition to see if sel_text is null or not
    if length(sel_text) > 1 then
    var_text :=SUBSTR(sel_text, 1, (NVL(LENGTH(sel_text), 0)) - 1 );
    var_text := replace(var_text,chr(146),chr(39));
    var_text := replace(var_text,chr(13),chr(10));
    :B_HSN_ITEM_PRODUCT_INFO.PRODUCT_INFO4 := var_text;
    end if;
    EXCEPTION
    WHEN VALUE_ERROR THEN
    Close_Word;
    eMessage('Spell check error. Text length cannot exceed 2000 characters. Any changes made during spell check were not applied.');
    RAISE Form_Trigger_Failure;
    END;
    Close_Word;
    END IF;
    -- exit MSWord
    CLIENT_OLE2.INVOKE(application,'Quit');
    CLIENT_OLE2.RELEASE_OBJ(application);
    EXCEPTION
         when OTHERS then
         emessage(SQLERRM);
         raise;
    END;
    but i am getting this error. can you please tell me whats the problem.
    Exception in thread "AWT-EventQueue-7" java.lang.NoClassDefFoundError
         at oracle.forms.webutil.ole.OleFunctions.create_obj(Unknown Source)
         at oracle.forms.webutil.ole.OleFunctions.getProperty(Unknown Source)
         at oracle.forms.handler.UICommon.onGet(Unknown Source)
         at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Edited by: user565034 on Jul 14, 2009 11:59 AM

    Your code works for me in Forms 10.1.2.3 and JRE Java Plug-in 1.5.0_15 with IE 7 ...
    I am also using jacob.jar 1.8 ....
    Why do not you try what I did ? Use the webutil demo form to test basic OLE functionality first ... then add your code to the Form ... that should test your webutil configuration ...
    http://www.oracle.com/technology/products/forms/htdocs/webutil/Webutil_demo.zip
    Let me know how that goes ...

  • How can I mark large sections of a topic to be skipped during RH spell check?

    I have a RoboHelp Webhelp project in which many of the topics have sample code and other entire lines of package, class, and other names that I want
    the spell checker to bypass.
    Unfortunately, there is no option to select the text and mark it to be ignored.
    When I run spell check, RH flags certain words or phrases and asks me how to handle them, one at a time.
    If I close the spell check dialog, RH bounces right back to the spot where I stopped it during a subsequent spell check.
    This is tedious and I end up with multiple <rhignored? = "text to be ignored".> in a single code sample, for example.
    Is there a better way to mark sections of text to be skipped?
    I see this as basic functionality, and maybe I am missing something I did not find on this forum or in the help files.
    Thanks so much!
    Cynthia
    I meant to add that I am using RoboHelp 9 on a PC running Vista.

    Sorry but there's no way I have seen. I state that quite categorically as what will hopefully happen is that someone will now respond they do know a way.
    I'm not sure I would agree what you want is basic functionality but I do understand your need for it.
    The more people who request a feature, the more likely it is to be actioned. Please follow this link.
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Spell Checker options crash apps

    Hey all, 
    Im seeking a little bit of help regarding this issue. The issue only started occuring since the 4.4 update.
    I personaly do not use Auto Correct options as i find them more anoying then helpfull. Instead ive always had Spell Checker turned on. As stated since updating to 4.4, if i missspell something and i get the spell checker red underline, when i tap on the word and the dropdown window pops up with suggestions and option of add to dictionary, if i select any of the recomended words 9/10 times i get a msg " Unfortunately, Messaging has stopped working". How ever this doesnt only occur with the native messaging app but rather any appl that prompts a key board. 
    I do not use 3rd party keyboard but have downloaded multiple to test - same issue occurs
    i have so far performed a clean install without restoring any backup data 2 times - issue persists
    i have ran the repair tool 2 times - issue persists
    After running the repair tool and erase and installs, i did not load any of my data prior to testing so was performed in a clean environment with no 3rd party apps potentially causing this to happen.
    As i mentioned previously, this happens 9/10 times and causes the complete app to close. I've been unable to find anything helpfull on forums as far and when speaking to sony tech support was advised that this is the first time the consultant has heard of this issue.
    So im jut wondering if any one here has come across this issue and knows anything that may help resolve it.
    Thank in advanced for any suggestions.
    Ivan T.

    I am also affected by the same bug.
    I have it in the Messaging app since the last update, three days ago.
    Xperia SP - Android 4.3 - Build 12.1.A.1.201 - Messaging version 12.1.A.0.12
    It can be easily reproduced:
    * start a new text message
    * use Google TTS to type a message
    * select one of the alternatives for a word (dropdown list obtained by clicking on a greyed word)
    Although non critical, this is a very annoying bug, as the draft of the message is lost upon crash.
    Please, Sony Android maintainers, correct the bug as quickly as possible!
    Thanks.

  • Spell Check Crashes Illustrator CC

    FYI - When spell check hits a word that is on a path, it crashes the program. Happening consistently for more.

    Hi Chunter,
    Are you using any 3rd party plug-ins or any special font plug-in in Illustrator ?
    Reason behind this is that, I have isolated the root cause and its the text object (attached in the snapshot). More over when I try to edit this text I get a warning dialog also.
    This crash is also in AI CS6 and AI CS5. To me it seems to be a corrupt type object which is causing the crash. Can you please try to create  a new similar type object artwork. And also the below listed text "AND SERVING AS AN EXAMPLE OF" should be present there otherwise the Check Spelling will do nothing.
    With Best Regards,
    Raghuveer
    Message was edited by: Raghuveer Singh Bhunwal

  • InDesign (CC 2014) crashing every time I try to run a spell check

    InDesign (CC 2014) crashing every time I try to run a spell check, I was wondering if anybody has had this before.  I'm am also experiencing a delayed response, specially when I try to type, I get the colour wheel for about 5 to 8 seconds every time I click on a text box. Any thoughts? Thanks!

    Where are you saving?
    What exactly is in the file?
    What exactly is in the pattern?
    Are you svng a library or an Illustrator file?

  • Mac Word Crashing when saving or spell check

    I just got my macbook in January. I have been having this problem since then.
    Occasionally when I press command+s or optioncommnandl while in Mac Word the program shuts down entirely.
    This happens EVERY time I do spell check while typing a document when the langauge has been changed to Spanish. This also occurs when the language is in English.
    Can anyone help me? It is so frustrating!
    Message was edited by: jgurl228

    i updated everything yesterday. i just got the error again when trying to spell check when the language was set to spanish. here's what the error message said:
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXCBADACCESS
    Date/Time: 2009-05-31 12:29:34 -0700
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 12.1.7.090302
    Crashed Module Name: libSystem.B.dylib
    Crashed Module Version: unknown
    Crashed Module Offset: 0x0000b4ee
    Blame Module Name: libSystem.B.dylib
    Blame Module Version: unknown
    Blame Module Offset: 0x0000b4ee
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Thread 0 crashed:
    # 1 0x969f34ee in _signgam + 0x9684C5CA (libSystem.B.dylib + 0x0000b4ee)
    # 2 0x969eff46 in _signgam + 0x96849022 (libSystem.B.dylib + 0x00007f46)
    # 3 0x969ef38d in _signgam + 0x96848469 (libSystem.B.dylib + 0x0000738d)
    # 4 0x1fa52f5c in cSFile::mClose() + 0x0000021A (SpanishSpeller + 0x00005f5c)
    # 5 0x1fa6a050 in TUserDictionary::mLoadDictionary() + 0x00000D6E (SpanishSpeller + 0x0001d050)
    # 6 0x1fa5e256 in SpellOpenDic + 0x0000041C (SpanishSpeller + 0x00011256)
    # 7 0x1fa54949 in _SpellerOpenLex + 0x00000059 (SpanishSpeller + 0x00007949)
    # 8 0x016cfdb8 in _ProofInit + 0x000001A2 (MicrosoftComponentPlugin + 0x00136db8)
    # 9 0x009ca4cd in _wdGetApplicationObject + 0x002952E3 (Microsoft Word + 0x009c94cd)
    # 10 0x009ca797 in _wdGetApplicationObject + 0x002955AD (Microsoft Word + 0x009c9797)
    # 11 0x009cab01 in _wdGetApplicationObject + 0x00295917 (Microsoft Word + 0x009c9b01)
    # 12 0x009da1c9 in _wdGetApplicationObject + 0x002A4FDF (Microsoft Word + 0x009d91c9)
    # 13 0x006201fc in _wdCommandDispatch + 0x003034A0 (Microsoft Word + 0x0061f1fc)
    # 14 0x00625078 in _wdCommandDispatch + 0x0030831C (Microsoft Word + 0x00624078)
    # 15 0x006265b6 in _wdCommandDispatch + 0x0030985A (Microsoft Word + 0x006255b6)
    # 16 0x008bb860 in _wdGetApplicationObject + 0x00186676 (Microsoft Word + 0x008ba860)
    # 17 0x008bd9e3 in _wdGetApplicationObject + 0x001887F9 (Microsoft Word + 0x008bc9e3)
    # 18 0x008bdc8d in _wdGetApplicationObject + 0x00188AA3 (Microsoft Word + 0x008bcc8d)
    # 19 0x0038c92e in _wdCommandDispatch + 0x0006FBD2 (Microsoft Word + 0x0038b92e)
    # 20 0x00813b3b in _wdGetApplicationObject + 0x000DE951 (Microsoft Word + 0x00812b3b)
    # 21 0x0081401f in _wdGetApplicationObject + 0x000DEE35 (Microsoft Word + 0x0081301f)
    # 22 0x0210b5ae in _MsoFCreateToolbarSet + 0x000011BE (MicrosoftOffice + 0x0033d5ae)
    # 23 0x015c51ef in _McpFCreateIMcpMRFssOffice10 + 0x00000D47 (MicrosoftComponentPlugin + 0x0002c1ef)
    # 24 0x015c532f in _McpFCreateIMcpMRFssOffice10 + 0x00000E87 (MicrosoftComponentPlugin + 0x0002c32f)
    # 25 0x016639d7 in _McpEndCustomizeToolbar + 0x000008B3 (MicrosoftComponentPlugin + 0x000ca9d7)
    # 26 0x016624a6 in _McpFGetMFODirt + 0x00004DEC (MicrosoftComponentPlugin + 0x000c94a6)
    # 27 0x96d5e11d in .objcclass_nameIPMDFontRange + 0x96A334DD (HIToolbox + 0x0000811d)
    # 28 0x96d5d55b in .objcclass_nameIPMDFontRange + 0x96A3291B (HIToolbox + 0x0000755b)
    # 29 0x96d79eac in .objcclass_nameIPMDFontRange + 0x96A4F26C (HIToolbox + 0x00023eac)
    # 30 0x96dae1c7 in .objcclass_nameIPMDFontRange + 0x96A83587 (HIToolbox + 0x000581c7)
    # 31 0x96dd4939 in .objcclass_nameIPMDFontRange + 0x96AA9CF9 (HIToolbox + 0x0007e939)
    # 32 0x96dd48f4 in .objcclass_nameIPMDFontRange + 0x96AA9CB4 (HIToolbox + 0x0007e8f4)
    # 33 0x96e58b23 in .objcclass_nameIPMDFontRange + 0x96B2DEE3 (HIToolbox + 0x00102b23)
    # 34 0x96d5e629 in .objcclass_nameIPMDFontRange + 0x96A339E9 (HIToolbox + 0x00008629)
    # 35 0x96d5e11d in .objcclass_nameIPMDFontRange + 0x96A334DD (HIToolbox + 0x0000811d)
    # 36 0x96d5d55b in .objcclass_nameIPMDFontRange + 0x96A3291B (HIToolbox + 0x0000755b)
    # 37 0x96d5d3c0 in .objcclass_nameIPMDFontRange + 0x96A32780 (HIToolbox + 0x000073c0)
    # 38 0x96d8c2e7 in .objcclass_nameIPMDFontRange + 0x96A616A7 (HIToolbox + 0x000362e7)
    # 39 0x96d5e4d6 in .objcclass_nameIPMDFontRange + 0x96A33896 (HIToolbox + 0x000084d6)
    # 40 0x96d5d55b in .objcclass_nameIPMDFontRange + 0x96A3291B (HIToolbox + 0x0000755b)
    # 41 0x96d79eac in .objcclass_nameIPMDFontRange + 0x96A4F26C (HIToolbox + 0x00023eac)
    # 42 0x01686a59 in _McpFDispatchEventRef + 0x00000073 (MicrosoftComponentPlugin + 0x000eda59)
    # 43 0x01686fe9 in _McpRunApplicationEventLoop + 0x0000051B (MicrosoftComponentPlugin + 0x000edfe9)
    # 44 0x00ae70fb in _wdGetApplicationObject + 0x003B1F11 (Microsoft Word + 0x00ae60fb)
    # 45 0x00af01af in _wdGetApplicationObject + 0x003BAFC5 (Microsoft Word + 0x00aef1af)
    # 46 0x0227145c in __WlmMain + 0x00000047 (MicrosoftOffice + 0x004a345c)
    # 47 0x00ad554c in _wdGetApplicationObject + 0x003A0362 (Microsoft Word + 0x00ad454c)
    # 48 0x00002d42 in _mh_executeheader + 0x00001D42 (Microsoft Word + 0x00001d42)
    # 49 0x00002c69 in _mh_executeheader + 0x00001C69 (Microsoft Word + 0x00001c69)
    X86 Thread State:
    eax: 0x000002c0 ebx: 0x969f3473 ecx: 0xc0000003 edx:0x00000000
    edi: 0x04b2ec00 esi: 0x000000b0 ebp: 0xbfffc888 esp:0xbfffc840
    ss: 0x0000001f eip: 0x969f34ee cs: 0x00000017 ds:0x0000001f
    es: 0x0000001f fs: 0x00000000 gs: 0x00000037 eflags:0x00010246
    Thread 1:
    # 1 0x969e93a6 in _signgam + 0x96842482 (libSystem.B.dylib + 0x000013a6)
    # 2 0x96a70eab in _signgam + 0x968C9F87 (libSystem.B.dylib + 0x00088eab)
    # 3 0x01addd7d in _MerpCreateSession + 0x00000B07 (merp + 0x00002d7d)
    # 4 0x01add3e5 in _MerpCreateSession + 0x0000016F (merp + 0x000023e5)
    # 5 0x01add46c in _MerpCreateSession + 0x000001F6 (merp + 0x0000246c)
    # 6 0x01addf25 in _MerpCreateSession + 0x00000CAF (merp + 0x00002f25)
    # 7 0x96a1a155 in _signgam + 0x96873231 (libSystem.B.dylib + 0x00032155)
    # 8 0x96a1a012 in _signgam + 0x968730EE (libSystem.B.dylib + 0x00032012)
    X86 Thread State:
    eax: 0xffffffa6 ebx: 0x96a60287 ecx: 0xb00a0a5c edx:0x969e93a6
    edi: 0x0000334c esi: 0x985a86c8 ebp: 0xb00a0ac8 esp:0xb00a0a5c
    ss: 0x0000001f eip: 0x969e93a6 cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000202
    Thread 2:
    # 1 0x969f046e in _signgam + 0x9684954A (libSystem.B.dylib + 0x0000846e)
    # 2 0x96a1adcd in _signgam + 0x96873EA9 (libSystem.B.dylib + 0x00032dcd)
    # 3 0x9294045c in __CMProfileID + 0x9286D338 (ColorSync + 0x0003345c)
    # 4 0x92952d8e in __CMProfileID + 0x9287FC6A (ColorSync + 0x00045d8e)
    # 5 0x96a1a155 in _signgam + 0x96873231 (libSystem.B.dylib + 0x00032155)
    # 6 0x96a1a012 in _signgam + 0x968730EE (libSystem.B.dylib + 0x00032012)
    X86 Thread State:
    eax: 0x0000014e ebx: 0x96a1aded ecx: 0xb0122e7c edx:0x969f046e
    edi: 0x04851da4 esi: 0xb0123000 ebp: 0xb0122ef8 esp:0xb0122e7c
    ss: 0x0000001f eip: 0x969f046e cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000246
    Thread 3:
    # 1 0x96a47cfe in _signgam + 0x968A0DDA (libSystem.B.dylib + 0x0005fcfe)
    # 2 0x0170ce8e in _FWaitForConnection + 0x0000002A (MicrosoftComponentPlugin + 0x00173e8e)
    # 3 0x0161992c in _McpFInitNetworkPIDChecking + 0x0000111C (MicrosoftComponentPlugin + 0x0008092c)
    # 4 0x96756057 in __gTECMasterGlobals + 0x96470817 (CarbonCore + 0x00049057)
    # 5 0x96a1a155 in _signgam + 0x96873231 (libSystem.B.dylib + 0x00032155)
    # 6 0x96a1a012 in _signgam + 0x968730EE (libSystem.B.dylib + 0x00032012)
    X86 Thread State:
    eax: 0x000c0194 ebx: 0x016198db ecx: 0xb01add3c edx:0x96a47cfe
    edi: 0x04000000 esi: 0xb01adf24 ebp: 0xb01add58 esp:0xb01add3c
    ss: 0x0000001f eip: 0x96a47cfe cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000282
    Thread 4:
    # 1 0x96a31b96 in _signgam + 0x9688AC72 (libSystem.B.dylib + 0x00049b96)
    # 2 0x0170cf19 in _FReceiveMessage + 0x00000077 (MicrosoftComponentPlugin + 0x00173f19)
    # 3 0x016195da in _McpFInitNetworkPIDChecking + 0x00000DCA (MicrosoftComponentPlugin + 0x000805da)
    # 4 0x96756057 in __gTECMasterGlobals + 0x96470817 (CarbonCore + 0x00049057)
    # 5 0x96a1a155 in _signgam + 0x96873231 (libSystem.B.dylib + 0x00032155)
    # 6 0x96a1a012 in _signgam + 0x968730EE (libSystem.B.dylib + 0x00032012)
    X86 Thread State:
    eax: 0x00000193 ebx: 0x0161954b ecx: 0xb022fcac edx:0x96a31b96
    edi: 0xb022fec4 esi: 0xb022ff34 ebp: 0xb022fcd8 esp:0xb022fcac
    ss: 0x0000001f eip: 0x96a31b96 cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000282
    Thread 5:
    # 1 0x969e92da in _signgam + 0x968423B6 (libSystem.B.dylib + 0x000012da)
    # 2 0x01619cef in _McpFInitNetworkPIDChecking + 0x000014DF (MicrosoftComponentPlugin + 0x00080cef)
    # 3 0x96756057 in __gTECMasterGlobals + 0x96470817 (CarbonCore + 0x00049057)
    # 4 0x96a1a155 in _signgam + 0x96873231 (libSystem.B.dylib + 0x00032155)
    # 5 0x96a1a012 in _signgam + 0x968730EE (libSystem.B.dylib + 0x00032012)
    X86 Thread State:
    eax: 0xffffffda ebx: 0x96769413 ecx: 0xb02b1e5c edx:0x969e92da
    edi: 0xb02b1f36 esi: 0x00000000 ebp: 0xb02b1e88 esp:0xb02b1e5c
    ss: 0x0000001f eip: 0x969e92da cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000246
    Thread 6:
    # 1 0x969e9286 in _signgam + 0x96842362 (libSystem.B.dylib + 0x00001286)
    # 2 0x92bfa04e in .objcclass_name__NSCFSet + 0x92AAF10E (CoreFoundation + 0x0007304e)
    # 3 0x92bfacd4 in .objcclass_name__NSCFSet + 0x92AAFD94 (CoreFoundation + 0x00073cd4)
    # 4 0x940ebe17 in _searchPaths.19040 + 0x9405DD9B (DesktopServicesPriv + 0x00001e17)
    # 5 0x96756057 in __gTECMasterGlobals + 0x96470817 (CarbonCore + 0x00049057)
    # 6 0x96a1a155 in _signgam + 0x96873231 (libSystem.B.dylib + 0x00032155)
    # 7 0x96a1a012 in _signgam + 0x968730EE (libSystem.B.dylib + 0x00032012)
    X86 Thread State:
    eax: 0xffffffe1 ebx: 0x92bf9967 ecx: 0xb034e8dc edx:0x969e9286
    edi: 0x00000000 esi: 0x00000000 ebp: 0xb034e918 esp:0xb034e8dc
    ss: 0x0000001f eip: 0x969e9286 cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000206
    Thread 7:
    # 1 0x969e9286 in _signgam + 0x96842362 (libSystem.B.dylib + 0x00001286)
    # 2 0x92bfa04e in .objcclass_name__NSCFSet + 0x92AAF10E (CoreFoundation + 0x0007304e)
    # 3 0x92bfacd4 in .objcclass_name__NSCFSet + 0x92AAFD94 (CoreFoundation + 0x00073cd4)
    # 4 0x940ebf90 in _searchPaths.19040 + 0x9405DF14 (DesktopServicesPriv + 0x00001f90)
    # 5 0x96756057 in __gTECMasterGlobals + 0x96470817 (CarbonCore + 0x00049057)
    # 6 0x96a1a155 in _signgam + 0x96873231 (libSystem.B.dylib + 0x00032155)
    # 7 0x96a1a012 in _signgam + 0x968730EE (libSystem.B.dylib + 0x00032012)
    X86 Thread State:
    eax: 0xffffffe1 ebx: 0x92bf9967 ecx: 0xb03d08ac edx:0x969e9286
    edi: 0x00000000 esi: 0x00000000 ebp: 0xb03d08e8 esp:0xb03d08ac
    ss: 0x0000001f eip: 0x969e9286 cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000206
    Thread 8:
    # 1 0x969f046e in _signgam + 0x9684954A (libSystem.B.dylib + 0x0000846e)
    # 2 0x96a1adcd in _signgam + 0x96873EA9 (libSystem.B.dylib + 0x00032dcd)
    # 3 0x96757e83 in __gTECMasterGlobals + 0x96472643 (CarbonCore + 0x0004ae83)
    # 4 0x96736d6a in __gTECMasterGlobals + 0x9645152A (CarbonCore + 0x00029d6a)
    # 5 0x96757b00 in __gTECMasterGlobals + 0x964722C0 (CarbonCore + 0x0004ab00)
    # 6 0x940f6f72 in _searchPaths.19040 + 0x94068EF6 (DesktopServicesPriv + 0x0000cf72)
    # 7 0x96756057 in __gTECMasterGlobals + 0x96470817 (CarbonCore + 0x00049057)
    # 8 0x96a1a155 in _signgam + 0x96873231 (libSystem.B.dylib + 0x00032155)
    # 9 0x96a1a012 in _signgam + 0x968730EE (libSystem.B.dylib + 0x00032012)
    X86 Thread State:
    eax: 0x0000014e ebx: 0x96a1aded ecx: 0xb0452d7c edx:0x969f046e
    edi: 0x272f4108 esi: 0xb0453000 ebp: 0xb0452df8 esp:0xb0452d7c
    ss: 0x0000001f eip: 0x969f046e cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000246
    Thread 9:
    # 1 0x96a199c6 in _signgam + 0x96872AA2 (libSystem.B.dylib + 0x000319c6)
    # 2 0x96a1a155 in _signgam + 0x96873231 (libSystem.B.dylib + 0x00032155)
    # 3 0x96a1a012 in _signgam + 0x968730EE (libSystem.B.dylib + 0x00032012)
    X86 Thread State:
    eax: 0x0000016b ebx: 0x96a1a028 ecx: 0xb04e5ecc edx:0x96a199c6
    edi: 0x04000000 esi: 0xb04e6000 ebp: 0xb04e5f78 esp:0xb04e5ecc
    ss: 0x0000001f eip: 0x96a199c6 cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000246
    Thread 10:
    # 1 0x96a386fa in _signgam + 0x968917D6 (libSystem.B.dylib + 0x000506fa)
    # 2 0x96a1a155 in _signgam + 0x96873231 (libSystem.B.dylib + 0x00032155)
    # 3 0x96a1a012 in _signgam + 0x968730EE (libSystem.B.dylib + 0x00032012)
    X86 Thread State:
    eax: 0x0014005d ebx: 0x92c0521b ecx: 0xb04f6d6c edx:0x96a386fa
    edi: 0x00000008 esi: 0x00000040 ebp: 0xb04f6f78 esp:0xb04f6d6c
    ss: 0x0000001f eip: 0x96a386fa cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000246
    Thread 11:
    # 1 0x969e92e6 in _signgam + 0x968423C2 (libSystem.B.dylib + 0x000012e6)
    # 2 0x96a1cb33 in _signgam + 0x96875C0F (libSystem.B.dylib + 0x00034b33)
    # 3 0x94832dcc in .objcclass_nameNSScriptSynonymDescription + 0x9459BBCC (Foundation + 0x00050dcc)
    # 4 0x94832be0 in .objcclass_nameNSScriptSynonymDescription + 0x9459B9E0 (Foundation + 0x00050be0)
    # 5 0x94832b45 in .objcclass_nameNSScriptSynonymDescription + 0x9459B945 (Foundation + 0x00050b45)
    # 6 0x92d71d20 in .objcclass_nameHICocoaWindowContentView + 0x9250D7C0 (AppKit + 0x000a6d20)
    # 7 0x947ece0d in .objcclass_nameNSScriptSynonymDescription + 0x94555C0D (Foundation + 0x0000ae0d)
    # 8 0x947ec9b4 in .objcclass_nameNSScriptSynonymDescription + 0x945557B4 (Foundation + 0x0000a9b4)
    # 9 0x96a1a155 in _signgam + 0x96873231 (libSystem.B.dylib + 0x00032155)
    # 10 0x96a1a012 in _signgam + 0x968730EE (libSystem.B.dylib + 0x00032012)
    X86 Thread State:
    eax: 0xffffffd9 ebx: 0x96a1aded ecx: 0xb05c2b0c edx:0x969e92e6
    edi: 0x1e0d3448 esi: 0x1e0d3418 ebp: 0xb05c2b88 esp:0xb05c2b0c
    ss: 0x0000001f eip: 0x969e92e6 cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000286
    Thread 12:
    # 1 0x969e92e6 in _signgam + 0x968423C2 (libSystem.B.dylib + 0x000012e6)
    # 2 0x96a1cb33 in _signgam + 0x96875C0F (libSystem.B.dylib + 0x00034b33)
    # 3 0x96736d96 in __gTECMasterGlobals + 0x96451556 (CarbonCore + 0x00029d96)
    # 4 0x96757b00 in __gTECMasterGlobals + 0x964722C0 (CarbonCore + 0x0004ab00)
    # 5 0x940f8ebc in _searchPaths.19040 + 0x9406AE40 (DesktopServicesPriv + 0x0000eebc)
    # 6 0x96756057 in __gTECMasterGlobals + 0x96470817 (CarbonCore + 0x00049057)
    # 7 0x96a1a155 in _signgam + 0x96873231 (libSystem.B.dylib + 0x00032155)
    # 8 0x96a1a012 in _signgam + 0x968730EE (libSystem.B.dylib + 0x00032012)
    X86 Thread State:
    eax: 0xffffffd9 ebx: 0x96a1aded ecx: 0xb04d4d9c edx:0x969e92e6
    edi: 0x202728c8 esi: 0xa0812a40 ebp: 0xb04d4e18 esp:0xb04d4d9c
    ss: 0x0000001f eip: 0x969e92e6 cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000282
    Loaded modules:
    0: Microsoft Word (12.1.7.090302 Reg=en Loc=0x0409): /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/Microsoft Word
    1: MicrosoftComponentPlugin: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/../Frameworks/MicrosoftComponentPlugin.framework/Versio ns/12/MicrosoftComponentPlugin
    2: Netlib: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/../Frameworks/Netlib.framework/Versions/12/Netlib
    3: StdUrlMoniker: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/../Frameworks/StdUrlMoniker.framework/Versions/12/StdUr lMoniker
    4: MicrosoftOLE: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/../Frameworks/MicrosoftOLE.framework/Versions/12/Micros oftOLE
    5: MicrosoftOLEAutomation: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/../Frameworks/MicrosoftOLEAutomation.framework/Versions /12/MicrosoftOLEAutomation
    6: MSLS3: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/../Frameworks/MSLS3.framework/Versions/12/MSLS3
    7: merp: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/../Frameworks/merp.framework/Versions/12/merp
    8: MSXML: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/../Frameworks/MSXML.framework/Versions/12/MSXML
    9: PowerPlantCore: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/../Frameworks/PowerPlantCore.framework/Versions/12/Powe rPlantCore
    10: MicrosoftOffice: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/../Frameworks/MicrosoftOffice.framework/Versions/12/Mic rosoftOffice
    11: PowerPlant: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/../Frameworks/PowerPlant.framework/Versions/12/PowerPla nt
    12: OfficeArt: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/../Frameworks/OfficeArt.framework/Versions/12/OfficeArt
    13: MicrosoftOleo: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/../Frameworks/MicrosoftOleo.framework/Versions/12/Micro softOleo
    14: SmartArt: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/../Frameworks/SmartArt.framework/Versions/12/SmartArt
    15: MicrosoftChartPlugin: /Applications/Microsoft Office 2008/Microsoft Word.app/Contents/MacOS/../Frameworks/MicrosoftChartPlugin.framework/Versions/1 2/MicrosoftChartPlugin
    16: OpenTransport: /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    17: RawCamera (436 Reg=English Loc=0x0000): /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    18: ATSHI.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    19: libTraditionalChineseConverter.dylib: /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    20: libSimplifiedChineseConverter.dylib: /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    21: EnglishSpeller (12.1.7.090302 Reg=English Loc=0x0000): /Applications/Microsoft Office 2008/Office/Shared Applications/Proofing Tools/EnglishSpeller.proofingtool/Contents/MacOS/EnglishSpeller
    22: URLMount: /System/Library/PrivateFrameworks/URLMount.framework/URLMount
    23: EnglishGrammar (12.1.7.090302 Reg=English Loc=0x0000): /Applications/Microsoft Office 2008/Office/Shared Applications/Proofing Tools/EnglishGrammar.proofingtool/Contents/MacOS/EnglishGrammar
    24: JapaneseProofing (12.1.7.090302 Reg= English Loc=0x0000): /Applications/Microsoft Office 2008/Office/Shared Applications/Proofing Tools/JapaneseProofing.proofingtool/Contents/MacOS/JapaneseProofing
    25: libCGXCoreImage.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    26: libPDFRIP.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    27: libFontStreams.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libFontStreams.A.dylib
    28: SpanishSpeller (12.0.0.5.061005 Reg=Spanish Loc=0x0000): /Applications/Microsoft Office 2008/Office/Shared Applications/Proofing Tools/SpanishSpeller.proofingtool/Contents/MacOS/SpanishSpeller
    29: EntourageCore: /Applications/Microsoft Office 2008/Office/EntourageCore.framework/EntourageCore
    30: EntourageLegacy: /Applications/Microsoft Office 2008/Office/EntourageLegacy.framework/EntourageLegacy
    31: Ink: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    32: libcrypto.0.9.7.dylib: /usr/lib/libcrypto.0.9.7.dylib
    33: IOKit: /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    34: libTIFF.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    35: libvMisc.dylib: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    36: CommonPanels: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    37: libobjc.A.dylib: /usr/lib/libobjc.A.dylib
    38: QuartzCore: /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    39: libPng.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    40: libGLProgrammability.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    41: SearchKit: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    42: OpenScripting: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    43: CoreGraphics: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    44: libauto.dylib: /usr/lib/libauto.dylib
    45: QuickTime: /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    46: libcups.2.dylib: /usr/lib/libcups.2.dylib
    47: SecurityHI: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    48: DictionaryServices: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    49: Help: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    50: CFNetwork: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    51: libBLAS.dylib: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    52: ImageCapture: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    53: LangAnalysis: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    54: libicucore.A.dylib: /usr/lib/libicucore.A.dylib
    55: HTMLRendering: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    56: PrintCore: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    57: OpenGL: /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    58: Cocoa: /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    59: Accelerate: /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    60: libGL.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    61: DiskArbitration: /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    62: Kerberos: /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    63: HIServices: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    64: ATS: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    65: Print: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    66: CoreText: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    67: SystemConfiguration: /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    68: libRadiance.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    69: AE: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    70: libxslt.1.dylib: /usr/lib/libxslt.1.dylib
    71: HelpData: /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    72: libCSync.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    73: libRIP.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    74: ColorSync: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    75: CoreServices: /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    76: NavigationServices: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    77: ImageIO: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    78: CoreFoundation: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    79: AppKit: /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    80: SpeechRecognition: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    81: CoreAudio: /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    82: libCGATS.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    83: CarbonSound: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    84: AudioUnit: /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    85: InstallServer: /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    86: libz.1.dylib: /usr/lib/libz.1.dylib
    87: SecurityInterface: /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    88: libgcc_s.1.dylib: /usr/lib/libgcc_s.1.dylib
    89: vecLib: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    90: Security: /System/Library/Frameworks/Security.framework/Versions/A/Security
    91: ApplicationServices: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    92: libsqlite3.0.dylib: /usr/lib/libsqlite3.0.dylib
    93: AudioToolbox: /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    94: libGLImage.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    95: libxml2.2.dylib: /usr/lib/libxml2.2.dylib
    96: DesktopServicesPriv: /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    97: libLAPACK.dylib: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    98: SecurityFoundation: /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    99: Foundation: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    100: libGIF.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    101: LaunchServices: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    102: libJPEG.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    103: vImage: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    104: libbsm.dylib: /usr/lib/libbsm.dylib
    105: libmathCommon.A.dylib: /usr/lib/system/libmathCommon.A.dylib
    106: libGLU.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    107: libffi.dylib: /usr/lib/libffi.dylib
    108: vecLib: /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    109: libresolv.9.dylib: /usr/lib/libresolv.9.dylib
    110: Carbon: /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    111: OSServices: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    112: Shortcut: /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    113: CoreVideo: /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    114: QD: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    115: CarbonCore: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    116: libSystem.B.dylib: /usr/lib/libSystem.B.dylib
    117: libvDSP.dylib: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    118: CoreUI: /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    119: HIToolbox: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    120: AGL: /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    121: libstdc++.6.dylib: /usr/lib/libstdc++.6.dylib
    122: CoreData: /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    123: Metadata: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    124: SpeechSynthesis: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    125: libJapaneseConverter.dylib: /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    126: libKoreanConverter.dylib: /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    127: libConverter.dylib: /System/Library/Printers/Libraries/libConverter.dylib
    Operating System Information
    Operating System: Mac OS X 10.5.7 (Build 9J61)
    CPU: Intel Core Duo, Number: 2, Speed: 2000 MHz
    gestaltPhysicalRAMSize err = 0, result = 2047 MB
    gestaltSystemVersion err = 0, result = 0x1057
    Screen: 1280 x 800, depth = 32, ltbr = 0, 0, 800, 1280
    Microsoft Application Information:
    Error Reporting UUID: 484C37AB-AC93-4934-9B12-F645A51AD0D3
    Time from launch: 4 hours, 9 minutes, 50 seconds
    Total errors on this client: 23

  • The new version of Pages in Mavericks crashes when I use spell checker.

    The new Pages in Mavericks crashes each time I use spell checker.  I have to Force Quit each time I use spell.  I've been using Pages for many years with no problems.  This is a first.  I don't know if it relates to Mail's spell checker problem I've also been having since upgrading to Mavericks.  In Mail, some words that I commonly misspell (like hte for the) are no longer corrected when I send mail.  Anyone else have this problem?  Any workarounds or clues as to how to fix the issue?

    Many features have been removed from Pages 5 see:
    iWorkTipsnTricks Forum
    Meanwhile it probably is best to continue using Pages '09 if that is possible and if you are unhappy with Pages 5 give it a review and rating in the App Store.
    Peter

  • Spell check crashes ID

    We create a monthly current events newsletter that contains many suggested urls for teachers to visit. The entire document is about 32 pages long.
    When I spell check the entire file (prior to sending it out) there is a mix of regular text and urls in the document and ID crashes after about 15 or 20 ‘checks’. Sometimes just ID crashes but often the entire computer freezes up and needs a restart. I am using the latest version of Mavericks.
    I have experienced this problem with CS 6, then with CC and now with CC 2014.
    I have tried turning off  ‘Dynamic spelling’, but this does not seem to help.
    Anyone have any ideas???
    Thank you.
    Eric W.

    Eric, Is this happening in all the documents or just one particular doc??
    If its one particular document then I would suggest that you try steps in : http://helpx.adobe.com/indesign/kb/troubleshoot-damaged-indesign-documents.html
    If its all the documents then delete the preferences, refer the document for locations : http://helpx.adobe.com/indesign/kb/indesign-preferences-support-file-locations.html
    Also It would be helpful if you let us know if the issue is with one particular language or all the languages ( If you have multiple language text )
    -Ankit Kanwara

  • Spell check crashing ID

    We create a monthly current events newsletter that contains many suggested urls for teachers to visit. The entire document is about 32 pages long.
    When I spell check the entire file (prior to sending it out) there is a mix of regular text and urls in the document and ID crashes after about 15 or 20 ‘checks’. Sometimes just ID crashes but often the entire computer freezes up and needs a restart. I am using the latest version of Mavericks.
    I have experienced this problem with CS 6, then with CC and now with CC 2014.
    I have tried turning off  ‘Dynamic spelling’, but this does not seem to help.
    Anyone have any ideas???
    Thank you.

    Eric, Is this happening in all the documents or just one particular doc??
    If its one particular document then I would suggest that you try steps in : http://helpx.adobe.com/indesign/kb/troubleshoot-damaged-indesign-documents.html
    If its all the documents then delete the preferences, refer the document for locations : http://helpx.adobe.com/indesign/kb/indesign-preferences-support-file-locations.html
    Also It would be helpful if you let us know if the issue is with one particular language or all the languages ( If you have multiple language text )
    -Ankit Kanwara

  • Using Spell Check makes Pages crash

    Since upgrading to Mavericks and the latest version of iPages, it crashes every time I try to use spell check. This is beyond frustrating. Has this happened to anyone else and do you know of any fixes?
    thanks!
    WG

    Others have reported the issue, but not everyone is getting it.
    Pages 5 has so many bugs and missing features you are better off just going back to any older version of Pages which should still be in your Applications/iWork folder.
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&mforum=iworktipsn trick
    Trash/Archive Pages 5 after exporting any Pages 5 files back to Pages '09 format.
    Then rate/review Pages 5 in the App Store.
    Peter

Maybe you are looking for

  • I can not activate my iPhone

    Hi everyone . I have an iPhone 4 which was purchased from US from At&T when i try to use it in Oman in the middle east , the network was locked So i contact At&T and i paid to unlocked it and it does unlocked Successfully. Then, i updated to 5.1.1 an

  • Are the answers/solutions given for a MacBook Air and Pro interchangeable?

    Notice that responders list MacBook Pro as the device they are using and expert in, I have a MacBook Air -- are the answers given for the Pro applicable to my MacBook Air (MacBook Air 13 inch (mid 2013) updated to Yosemite 10.10.2)? 

  • Using MDT boot image in SCCM 2012

    Hi, I want to import MDT boot image in SCCM 2012. Please let me know if this is possible. I have integrated all the driver in it and want to use from SCCM. Any suggestion on this? Regards, Shishir Kushawaha "If this thread answered your question, ple

  • Interface builder storyboard compile issue (upgraded to IOS 6)

    hi all, just upgrade to IOS 6, could not run my project with the following error: CompileStoryboard Storyboard.storyboard     cd /Users/chunsu/Desktop/project-y/WhackwhoNew     setenv IBSC_MINIMUM_COMPATIBILITY_VERSION 5.1     setenv PATH "/Applicati

  • Losing 3G connectivity after upgrading to IOS 8.0.2

    my iPad is now losing connectivity frequently after the upgrade and I get a "no service" and have to restart my ipad for the 3G to reconnect. I don't know how many times had to do this since the upgrade, it's really annoying as the restart takes a wh