Mac Word Styles - Cancel a style update?

I used to have two font colors (One for Class Notes; One for Book Notes) in a document in Word 2008; now it updated to one color from styles...Is there a way to cancel the update to Styles and go back to the two original font colors??

Unfortunately, all of the text was under "No Spacing," so when it changed the font color, it changed it for all text. Basically, I just changed the color on the fly by clicking the font color button. So, I'm thinking that once it updated to match a color style, I'm out of luck and the document doesn't remember what characters were blue and which were black.

Similar Messages

  • Create Bookmarks from Word Styles on Mac

    With the noticeable absence of PDFMaker for word on the mac creating bookmarked pdfs from word styles seems to be either impossible or less than straightforward on the Mac platform. Does have a solution for how to do this?

    It amazes me that the product is sold for Mac but has reduced functionality. The price is the same as for PC and the customer is not informed about this reduced functionality.  This is concerning from a business integrity point of view.  Had I known about this reduced functionality, I would not have purchased the software. This does not provide me with any more functionality that the Send to PDF function that comes with Microsoft automatically.
    I recommend that Adobe  a) Inform purchasers of the product for MAC of this decreased functionality in the process of purchasing, like a warning that the customer must acknowledge and b) reduce the price of the product for MAC as a result of the decreased functionality and c) initiate engineering to correct the problem immediately.  Mac's are not going away, they are increasing in popularity, and as such, the software must adapt.  Alternatively Adobe should refund the cost of the software.
    Concerned customer,
    PMcG

  • Is there a way of using a mail merge function while on the iphone or ipad, i wish to email a "Word style, ot TXT" document to 250 of my contacts

    Is there a way of using a mail merge function while on the iphone or ipad, i wish to email a "Word style, ot TXT" document to 250 of my contacts, I have tried downloading my contacts to my PC's outlook but only 1 contact comes across at a time despite the fact that Icloud says downloading namedperson + 249 other contacts to a CSV file

    Hi everyone!
    Looking also for an app that allows me to merge email and send them out to each recipient individually. Apparently that's not possible yet. Here's what the guys at RedbitsApps told me about Group Email capabilities: 
    "The current version of the app relies on the device operating system to send the emails. For this reason, sending individual email instead of a single email to multiple recipients is not possible. Apple doesn't allow apps to send single emails to many recipients easily. We may use a custom sending software in a future version."
    Let's keep looking guys... 

  • Is there a 'macro' to convert a Word style to CSS tag?

    The text in my source (Word) has a named character style applied to selected words/phrases throughout the text.  I want to detect that specific character-style spec. in the source (pasted from Word into a DW target page) and have a way to translate what was a Word style-spec. into a specific CSS style for that same piece of text in the HTML. 
    For example, say the Word style is a character style named "boldBlue" (which, when applied to the text, makes it appear in ... bold and blue).  In CSS, I have a style named "BB" -- I want the HTML to have the same text tagged correctly using the CSS spec. for "bold blue" (BB), without needing to assign that CSS tag over and over and over to each case.
    Is there some 'macro' (or 'batch') way to accomplish this in CS6?

    Honestly, the best thing you can do is strip out all Word generated code. Word is a horribly writer of html and css and will increase the headache factor of your project by an order of magnitude. DW has a feature built into it specifically to strip out all Word generated gibberish simply because it is so terrible...
    Commands > Clean Up Word HTML
    To change code from something like class="BoldBlue" to class="BB", you can open the page in source view and use the Find & Replace feature to replace all instances of BoldBlue with BB.
    Ctrl + F or Edit > Find and Replace
    When the dialogue window pops up, choose Current Document and Source Code from the drop downs. Put the exact text, spaces and all into the Find field and the new info in the Replace, then click Replace All.

  • JS CS3 script form word styles to indesign styles

    I have search over the forums and can find a script the can change WORD styles (with a diskette sign) to Indesign paragraph styles (without the sign). Can any one help me on this?
    Thanks.

    Here I translated the script from Russian into English for you. BTW, it is based on a script written by Dave Saunders (thanks Dave for it) — I totally reworked it to my needs. You should replace paragraph style names, font names, find-search strings, etc. with your own stuff.
    Kasyan
    // Description: Script for InDesign CS3
    // Version 4
    // Removes local formatting of the text after importing it from Word transforming it into characters styles
    // Removes non CMYK colors
    // Removes imported styles
    // Adds non-breaking space before some abbreviations in text. For example: В, У, гг., млрд.
    // Removes superfluous. Finds-replaces some sequences of characters:  For example:"--" to "—"
    // Removes hyperlinks
    // Copyright © 2008 Kasyan Servetsky
    #target indesign
    if (app.documents.length == 0) {
         alert("Open a document and try again.", "Error", true);
    else {
         app.activate();
         var myDoc = app.activeDocument;
         if (myDoc.selection.length == 1) {
              if (myDoc.selection[0].constructor.name ==  "TextFrame") {
              var myTextFrame = myDoc.selection[0];
              else {
                   alert("Select a TEXT BOX.", "Error", true);
                   exit();
         else {
              alert("Select a single text block.", "Error", true);
              exit();
         if (!myDoc.saved) {
              alert("This document has never been saved. Save it and try again.", "Error", true);
              exit();
    //--------------------------------- Progressbar ---------------------------------
         var stop = 11;
         var w = new Window ( 'window', 'Preparing the file', undefined, {closeButton:false, maximizeButton:false, minimizeButton:false} );
         var pb = w.add ('progressbar', [0, 0, 350, 20], 0, stop);
         var txt = w.add('statictext', undefined, 'Starting the process');
         txt.alignment = "fill";
         w.show();
         pb.value = 1;
         var myTxtReplace;
         var myGrpReplace;
         myReplaceStuff();
         txt.text = "Finding-replacing text";
         myProblems = 0;
         myReplaceNonCMYK();
         pb.value = 2;
         txt.text = "Removing non CMYK colors";
         if (app.activeDocument.paragraphStyles.item("Body Text") == null) {
              pb.value = 3;
              txt.text = "Creating paragraph style \"Body Text\"";
              var paraStyle = myDoc.paragraphStyles.add( {     basedOn:"[No Paragraph Style]",
                                                                                                        name:"Body Text",
                                                                                                        alignToBaseline:true,
                                                                                                        firstLineIndent:2,
                                                                                                        leftIndent:0,
                                                                                                        rightIndent:0,
                                                                                                        spaceBefore:0,
                                                                                                        spaceAfter:0,
                                                                                                        justification:Justification.LEFT_JUSTIFIED,
                                                                                                        appliedFont:"TimesPalKasN\tRegular",
                                                                                                        pointSize:8.5,
                                                                                                        leading:10.6,
                                                                                                        kerningMethod:"Metrics",
                                                                                                        tracking:0,
                                                                                                        hyphenateCapitalizedWords:true,
                                                                                                        hyphenation:true,
                                                                                                        hyphenateBeforeLast:2,
                                                                                                        hyphenateAfterFirst:2,
                                                                                                        hyphenateWordsLongerThan:5,
                                                                                                        hyphenateLadderLimit:3,
                                                                                                        hyphenationZone:12.7,
                                                                                                        hyphenWeight:5,
                                                                                                        appliedLanguage:"Russian",
                                                                                                        fillColor:"Black"} );
         else {
              var paraStyle = myDoc.paragraphStyles.item("Body Text");
              pb.value = 3;
         removeImportedStyles();
         pb.value = 4;
         txt.text = "Removing imported styles";
         protectLocalStyling();
         pb.value = 5;
         txt.text = "Saving local formatting";
         myTextFrame.parentStory.texts.everyItem().paragraphs.everyItem().applyParagraphStyle(paraStyle, true);
         pb.value = 6;
         txt.text = "Applying paragraph style \"Body Text\"";
         removeInTables();
         pb.value = 7;
         txt.text = "Processing tables";
         myTextFrame.parentStory.texts.everyItem().paragraphs.everyItem().clearOverrides(OverrideType.all); // ***
         pb.value = 8;
         txt.text = "Removing local formatting";
         replaceTxt();
         pb.value = 9;
         txt.text = "Replacing text";
         replaceGrep();
         pb.value = 10;
         myRemoveHyperLinks();
         pb.value = 11;
         txt.text = "Removing hyperlinks";
         w.hide();
         if (myProblems == 0) {
              alert ("No problems were found.", "All done");
         else {
              alert ("Problems were found and corrected.", "All done");
    //************************************** Functions *******************************************************
    function protectLocalStyling() {
        var myStyles = ["Italic","Bold", "Bold Italic"];
        var myPosns = ["superscript","subscript"];
        var myPosnEnums = [Position.superscript, Position.subscript];
         var noCharStyle = myDoc.characterStyles[0];
        for (var j = myStyles.length - 1; j >= 0; j--) {
          var myCharStyle = myDoc.characterStyles.item(myStyles[j]);
          if (myCharStyle == null) {
            var myCharStyle = myDoc.characterStyles.add({name:myStyles[j], fontStyle:myStyles[j]});
              app.findTextPreferences = app.changeTextPreferences = NothingEnum.nothing;
              app.findTextPreferences.appliedCharacterStyle = noCharStyle;
              app.findTextPreferences.fontStyle = myStyles[j];
              app.changeTextPreferences.appliedCharacterStyle = myStyles[j];
              myTextFrame.parentStory.changeText();
        for (var j = myPosns.length - 1; j >= 0; j--) {
          var myPosCharStyle = myDoc.characterStyles.item(myPosns[j]);
          if (myPosCharStyle == null) {
            var myPosCharStyle = myDoc.characterStyles.add({name:myPosns[j], position:myPosnEnums[j]});
              app.findTextPreferences = app.changeTextPreferences = NothingEnum.nothing;
              app.findTextPreferences.appliedCharacterStyle = noCharStyle;
              app.findTextPreferences.position = Position[myPosns[j]];
              app.changeTextPreferences.appliedCharacterStyle = myPosns[j];
              myTextFrame.parentStory.changeText();
         app.findTextPreferences = app.changeTextPreferences = NothingEnum.nothing;
    //  Removing non CMYK colors
    function myReplaceNonCMYK(){
         for(var myCounter = myDoc.colors.length; myCounter > 0; myCounter--){
              if (myDoc.colors[myCounter-1].name != "Registration" && myDoc.colors[myCounter-1].name != "Paper" && myDoc.colors[myCounter-1].name != "Cyan" && myDoc.colors[myCounter-1].name != "Magenta" && myDoc.colors[myCounter-1].name != "Yellow" && myDoc.colors[myCounter-1].name != "Black") {
                   if ((myDoc.colors[myCounter-1].space != ColorSpace.cmyk)  || (myDoc.colors[myCounter-1].model != ColorModel.process)){
                        myProblems = myProblems + 1;
                        myDoc.colors[myCounter-1].remove ("Black")
    // Removing imported styles
    function removeImportedStyles(){
         var paraStyle = myDoc.paragraphStyles.item("Body Text");
         var noneCharaStyle = myDoc.characterStyles.item("[None]");
         for(var myCounter = myDoc.paragraphStyles.length-1; myCounter >= 2; myCounter--){
              if (myDoc.paragraphStyles[myCounter].imported == true ) {
                   myDoc.paragraphStyles[myCounter].remove(paraStyle);
         for(var myCounter = myDoc.characterStyles.length-1; myCounter >= 2; myCounter--){
              if (myDoc.characterStyles[myCounter].imported == true) {
                   myDoc.characterStyles[myCounter].remove(noneCharaStyle);
    // Processing tables
    function removeInTables(){
         if (myTextFrame.parentStory.texts.everyItem().tables.length > 0) {
              if (myDoc.paragraphStyles.item("05. TABL_BODY") == null) {
                   myTableStyle = myDoc.paragraphStyles.add({name:"05. TABL_BODY", appliedFont:"HeliosKas\tCondensed Regular", pointSize:8, leading:8});
              else {myTableStyle = myDoc.paragraphStyles.item("05. TABL_BODY")}
         myTextFrame.parentStory.texts.everyItem().tables.everyItem().cells.everyItem().paragraphs.everyItem().applyParagraphStyle(myTableStyle, true);
         myTextFrame.parentStory.texts.everyItem().tables.everyItem().cells.everyItem().paragraphs.everyItem().clearOverrides(OverrideType.all);
    // Find-replace pairs
    function myReplaceStuff() {
         myTxtReplace =     [ // TEXT
                                            [" А ", " А^S"],
                                            [" В ", " В^S"],
                                            [" С ", " С^S"],
                                            [" К ", " К^S"],
                                            [" О ", " О^S"],
                                            [" У ", " У^S"],
                                            [" На ", " На^S"],
                                            [" По ", " По^S"],
                                            [" Из ", " Из^S"],
                                            ["г-н ", "г-н^S"],
                                            ["г-на ", "г-на^S"],
                                            ["г-ну ", "г-ну^S"],
                                            [" т", " ^Sт"],
                                            [" г.", " ^Sг."],
                                            [" гг.", " ^Sгг."],
                                            [" грн.", " ^Sгрн."],
                                            [" коп.", " ^Sкоп."],
                                            [" тыс", " ^Sтыс"],
                                            [" млн", " ^Sмлн"],
                                            [" млрд", " ^Sмлрд"],
                                            [" т.п.", " ^Sт.п."],
                                            [" т.д.", " ^Sт.д."],
                                            [" др.", " ^Sдр."],
                                            [" км", " ^Sкм"],
                                            ["см. стр.", "см.^Sстр."],
                                            [" ^p", "^p"],
                                            [" —", "^S—"],
                                            [" —", "^S—"],
                                            ["№ ", "№"],
                                            ["$ ", "$"],
                                            ["EUR ", "EUR"],
         myGrpReplace =     [ // GREP
                                            ["[~m~>~f~|~S~s~<~/~.~3~4~% ]{2,}", " "], // Multiple Space to Single Space
                                            ["--", "~_"] // Dash Dash to Em-dash
                                            // ["~b~b+", "\\r"], Multiple Return to Single Return
    function replaceTxt() {
         app.findTextPreferences = NothingEnum.nothing;
         app.changeTextPreferences = NothingEnum.nothing;
         app.findChangeTextOptions.wholeWord = false;
         app.findChangeTextOptions.caseSensitive = true;
         app.findChangeTextOptions.includeMasterPages = false;
         for (i = 0; i <  myTxtReplace.length; i++) {
              var myCurArray = myTxtReplace[i];
              app.findTextPreferences.findWhat = myCurArray[0];
              app.changeTextPreferences.changeTo = myCurArray[1];
              myTextFrame.parentStory.changeText();
         app.findTextPreferences = NothingEnum.nothing;
         app.changeTextPreferences = NothingEnum.nothing;
    function replaceGrep() {
         app.findGrepPreferences = NothingEnum.nothing;
         app.changeGrepPreferences = NothingEnum.nothing;
         for (i = 0; i <  myGrpReplace.length; i++) {
              var myCurArray = myGrpReplace[i];
              app.findGrepPreferences.findWhat = myCurArray[0];
              app.changeGrepPreferences.changeTo = myCurArray[1];
              myTextFrame.parentStory.changeGrep();
         app.findGrepPreferences = NothingEnum.nothing;
         app.changeGrepPreferences = NothingEnum.nothing;
    function myRemoveHyperLinks(){
         if (myDoc.hyperlinks.length > 0){
              for(var myCounter = myDoc.hyperlinks.length; myCounter > 0 ; myCounter--){
                   myProblems++;
                   myDoc.hyperlinks[myCounter - 1].remove();

  • Word styles not appearing in Print Document Appearance dialog

    My custom list styles in Style Mapping.dot are not appearing in the Print Document Appearance dialog when I try to map CSS styles to Word styles.
    The styles do appear in the template when I open it in Word. They appear in the styles task pane whether I select "In current document" or "In use" in the Style Pane Options dialog in Word. The styles have the same name (such as "Bullet" or "Number") in Word as the CSS styles in RoboHelp.
    I tried saving Style Mapping.dot as .dotx, thinking that RoboHelp 8 might work better with the current template type, but no help. I tried adding the template to the same folder as the Normal.dotm template is in and opening it there. No improvement.
    Oddly, the built-in Word styles List, List 2, & etc and List Continue and its series appear in the Robo dialog, but the styles List Bullet and others in that series do not appear.
    I suppose I could modify the list styles that do appear in Robo and map them to my CSS list styles, but that feels a bit like a desperate kluge.
    Does anyone know what might be wrong, either with my Word template or with Robo, that might be causing what seem to be perfectly good Word styles to not present themselves for mapping?
    Thanks again,
    John

    Peter,
    I think your discussion of this problem could explain the situation and propose a workaround more simply than it does.
    Based on your article, I assumed that Robo displays only the built in Word list styles such as List and List Continue (since those were the only styles showing up in the style mapping dialog and since your example shows matching a Robo style named List Mapping to a Word built in style named List). I assumed I would have to match my Bullet style to a style named List in Word, and match the indented bullet style to List 2, and so on. The actual situation is that Robo, for some godforsaken reason that only idiots would understand, will not show a Word style if any numbering (bullets or numbers) is applied to it. That is, one does not have to avoid a class of styles called “List styles”, one only has to avoid applying numbering to the styles until later.
    Thus the workaround is to create the word styles (with names that match the Robo styles!) that contain every attribute you need EXCEPT the numbering. That is, I can link Bullet to Bullet and Number to Number and Indented Number to Indented Number, and so on and on, as long as I have all the Word styles in the template with their numbering set to None.
    Then after I generate the document, I can modify the styles to add the appropriate numbering, and voila!
    Currently scrolling the doc & modifying styles. Might be a glimpse of daylight.
    John
    From: Peter Grainge [email protected]
    Sent: Thursday, October 13, 2011 8:47 AM
    To: John Dawson
    Subject: Word styles not appearing in Print Document Appearance dialog
    Re: Word styles not appearing in Print Document Appearance dialog
    created by Peter Grainge<http://forums.adobe.com/people/Peter+Grainge> in RoboHelp - View the full discussion<http://forums.adobe.com/message/3969382#3969382

  • Convert to PDF - Word Styles - Hidden Text

    I have a Word 2003 document with a table of contents (TOC) which is the user guide for my software application.  Using Acrobat Pro 8 I would like to create a PDF which has bookmarks at the same pages as the TOC entries.  The only appropriate choice for the conversion is to use Word styles, as there aren't any headings or bookmarks in the Word document.  I do not need any additional text in the document, so my intent was to attach styles to the TC fields in the Word document.  It appears that the converter only sees styles attached to standard, visible text in the document.  Attaching styles to the TC fields, hidden text, or the the header text for a section yields noPDF bookmarks.  Letting Acrobat look for the TOC styles points all of the bookmarks to the TOC where a user would have to click again to go to the content.
    Any suggestions would be appreciated.

    Thanks for your reply.
    I have been through the conversion settings and created some test documents that were much smaller than my user guide.
    What I have found is that if I assign a style to this: Starting the program¶
    It will get picked up as a bookmark, unless the text is formatted as hidden.
    If I assign a style to this: {·TC·"Starting the program"·}¶
    It will not get picked up as a bookmark.
    It doesn't work if I duplicate the text and they are part of the same paragraph with the style is applied to the text outside of the field braces:
    {·TC·"Starting the program"·}Starting the program¶
    The example above will work if the entire paragraph is formatted with the style.
    It would seem that the best solution would be for the converter to recognize the TC fields and their level switches as bookmark sources.

  • Staroffice 8 update 6 - unable to open files witten using Mac-Word

    Hi,
    after installing the product update 6 any attempt to open a file written using Mac-Word in so-writer fails. Is my installation wrong? Or is it a new bug in SO 8? And: Is there a workaround?
    Trying to open the same files in Openoffice 2.2 works fine.
    Thanks,
    Reiner

    Monday 30 April 2007
    From your description, the only thing I can think of is that SO8 comes with Mastersoft filters for MacWord up to version 5.1. It may be possible that SO8-PP6 is reading something in the file header and trying to open the file using the Mastersoft filter. OOo does not have the filters.
    To test I would try to open the file making sure to select the filter to be used, rather than using auto open.
    Phil

  • Adobe Caslon Pro generates enormous PDF files on Mac Word, displays incorrectly on Word for Windows

    Had a terrible experience trying to typeset my first document with Adobe Caslon Pro in Word. In Word Mac, 27 page all text document rendered to 70 MB PDF with Opentype features enabled, well under a megabyte with Opentype features disabled in compatibility settings for the same font. Opening same document in Word for Windows (both 2010 and 2013) displayed with incorrect (increased) line spacing and Opentype features (e.g. ligatures) disabled even though they were enabled in compatibility setting (they showed up when I opened the same document in Mac).

    Something definitely doesn't sound right here.
    We are not aware of any problems using Adobe Caslon Pro with Microsoft Word 2011 on the Macintosh.
    Attached is a sample Word document that I created using Word 2011 (with all latest updates from Microsoft), four styles of Adobe Caslon Pro with all OpenType features enabled.
    I created a PDF file using “save as PDF” from Word's own “save” dialog, also attached.
    I also created a PDF file from the “print” dialog using the “save as Adobe PDF” function (lower left corner of the dialog box), also attached.
    In terms of functionality, I don't see the problems you are experiencing. The only difference between the generic PDF and the Adobe PDF appear to be optimization of the fonts embedded in the PDF files.
    In terms of cross-platform compatibility, with Microsoft Word, Excel, and Powerpoint, forget about it. Font handling is problematic when you go beyond simple typography and fonts that have only four faces - regular, italic, bold, and bold italic. The cross-platform compatibility problems really have nothing to do with Adobe fonts themselves.
              - Dov

  • Mac:word 04/08 random removal of spaces

    short: mac:word removes spaces from documents randomly.
    long: At first I thought it might be an issue with windows:word 2007 users and mac:word 04/08 users working on the same documents; however, I have had several instances were a mac:word 04/08 document that is created, edited, saved and re-opened on OSX (Leopard 10.5.2) without interaction with Windows; has spaces throughout randomly removed.
    This is most annoying. I have found it hard to find other users experiencing this. Googling for the issue or searching in various forums just presents complaints and whines about interoperability with Leopard spaces. This is a much bigger and more frustrating issue, trust me!
    Versions:
    OSX Leopard 10.5.2
    mac:word 2008 v12.0.1 (08305)
    mac:word 2004

    I have created two documents, one standard no modified styles and one with modified styles. Filled teh documents with the text:
    The cow jumps over the moon.
    Passing both documents backwards and forwards to OSX and Windows, opening, editing and closing and I can't re-create the issue in either document.
    I followed the instructions at http://word.mvps.org/Mac/damagedPrefs.html for recreating the preferences and repeated the above steps, still can't re-create the issue.
    Now oddly enough, the words do NOT appear as misspelt (i.e no red squiggly line) in Windows or OSX. If you manually preform a spell check they are picked up.
    This can happen if I author a document, save it and re-open locally, so I did manage to rule Windows out of the equation.
    If a document is opened on Windows and the spaces have been removed, opening it again on the mac, results in seeing that in fact the spaces have been removed.

  • 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

  • I have Photoshop Elements 10 on a Mac. Adobe offered me an update to version 13. I opted to say yes. And all the options you offered for download were Windows. Worthless. And the ability to contact Adobe help seems really tedious and my next step will sim

    I have Photoshop Elements 10 on a Mac. Adobe offered me an update to version 13. So I ordered. And every download option is Windows which is worthless to me. So unless i get a quick solution to convert to a Mac upgrade, i will cancel the purchase via credit card.

    http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements

  • HT201380 keep having scrolling problems with Maverick on both iMac and Mac Pro despite downloading mail software update

    Have scrolling problems with Maverick despite downloading mail update on both IMAC and Mac Pro
    Have to reboot and it helps for awhile then stalls again

    The Mac OS X 10.4.7 Update introduced connection issues as a result of (according to the documentation) "Mail now supports connecting to mail servers through a SOCKS proxy". This probably has nothing to do with your problem, but it'd be worth going to System Preferences > Network and making sure the SOCKS Proxy is not enabled in the network configuration used to connect to the Internet.
    Also, it looks like the crashes you're talking about are actually freezes, i.e. Mail becomes unresponsive rather than quitting unexpectedly. In Mail, open Window > Activity Viewer, and see whether Mail displays there what it's doing when it freezes. Actually, you may be able to avoid having to force quit Mail by canceling whatever it's doing (by clicking on the red stop icon of the activity).
    Reinstalling Mail will probably accomplish nothing, but it might be worth reinstalling the Combo Update for the type of machine and the version of Mac OS X you're using (which you would have to do anyway if you wanted to reinstall Mail):
    Mac OS X 10.4.7 Combo Update for Intel
    Take a look at the following articles for guidelines on how to properly install system updates:
    Troubleshooting installation and software updates
    Installing software updates
    Basically, you should verify/repair the startup disk before installing the update, and no applications should be running while installing it.

  • I downloaded Yosemite and now I cannot print on Mac Word, Excel, and Power Point

    Please help.
    I download Yosemite a few weeks ago and now I cannot print documents on Mac Word, Excel, and Power Point. I attempted to reinstall the software and it still doesn't allow me to print documents. Below you will see the error messages I get when I try to print. Does anyone know how to fix this?

    Update MS Office suite to be the most up-to-date version and also run Software Update to see if there are updated printer drivers for your printer.
    Going forward please post Office for Mac questions in the correct forum, this is an iMac forum. There is an Office for Mac forum hosted by Microsoft, the link is Office for Mac Product Forums

  • There is a problem on my mac mini. I install windows7 in my mac then i cancelled the installation did not finish..after that i saw the black screen on my monitor..

    There is a problem on my mac mini. I install windows7 in my mac then i cancelled the installation did not finish..after that i saw the black screen on my monitor untill now the monitor is black..

    It maybe trying to boot from the incomplete install.
    Try starting your Mac while holding down the Option key, it should then list all the available boot drives including the Mac OS X one. Boot from the Mac one and then you can wipe the damaged PC one or set the Mac to stay booting in to OS X.

Maybe you are looking for

  • I ahve two phones on one apple ID, how can i track them both using find my friend?

    I have an iphone 5 (work phone) and a 4 (home cell) both using the same iCloud and apple log-in. Only my iphone 5 shows up on find my freinds app and when i try to invite the "4" i get an error that you cannot invite yourself (it previously showed up

  • Is it possible to install kde 4.8b1 from binary?

    I've been on a mac for ages and have really grown out of love with it.  The KDE 4.9b1 announcement got me moist and thinking again about moving all my computers to linux. I was wondering what the easiest way to install KDE 4.9b1 would be?  I'm not a

  • Fire wire ports?

    I have an external drive conected to my powerbook G4 via firewire 400 but need to conect a deck also to capture video. problem is i only have 1 firewire 400 port, is htere a way of conecting the 2 divices together( without using the firewire 800) ?

  • Payment Document Number

    Hi everybody. I am fairly new to Oracle Financial. My user is currently creating multiple document names (e.g. Check, Check-1, Check-2, etc.) in Payment Documents for the different physical check books that they receive from the bank. My user was ask

  • TS4088 i m in kuwait when i went for local distributor here they want charge me around 800 dollar what shal i do

    my mac pro mid of 2010 restarts autumaticaly and i see through discustion that mac repair this problem for free when i went for local apple kuwait they want to charge me 800 us dollars what shall i do?