Launch Microsoft word application inside AIR

Hi Guys,
I am stuck up somewhere not able to find the solution to my
prolbem.Let me explain the problem in detail.
I working on an Adobe AIR application and I need to launch
the microsoft word application to open a particular document which
a user can then modify.
This word document are some defined documents stored some
where in system. The user can then modify the document and can
store that locally in the database.My concern is to launch the
microsoft word document in my AIR application and then let user do
the changes to the document and then i will save the document in my
database as BLOB.
Is there any good way of doing this.I hope Adobe has taken
care of such scenarios and there must be some API's or component in
Flex builder 3 so that i can use that.
I am hoping with the finger crossed and waiting for a good
response from Flex people.
~ Hstrong

I am importing Word documents ( in xml format ) into an Air
application and storing them in a blob in SQLite. When a user
selects a document, I export it to a file and submit a URLRequest
to open it. It launches in IE initially (asking if you want to open
the document), but when IE sees the xml declares it a Word
document, IE opens Word.
To load the file to the database:
//set up and open the database
var sqlConnection:SQLConnection;
sqlConnection = new SQLConnection();
var dbFile:File =
File.applicationDirectory.resolvePath("cASM_db.db");
sqlConnection.open(dbFile);
//open the file, read, and close (note reading bytes with
readBytes)
var fileStream : FileStream = new FileStream();
fileStream.open(asmModel.newTemplate, FileMode.READ);
var myBlob:ByteArray = new ByteArray();
fileStream.readBytes(myBlob); //read the object
fileStream.close();
//insert the blob into the database (note use of QUOTE
function to format blob into hex)
myStmt.sqlConnection = sqlConnection;
myStmt.text = "Insert into doctype (" +
"docname_ch, document_bl) " +
"values (?, QUOTE(?))";
myStmt.parameters[0] = asmModel.newTemplate.name;
//docname_ch
myStmt.parameters[1] = myBlob; //template_bl
myStmt.execute();
To unload the file from the database and open:
//identify the file to be populated and delete if already
there (note use of File type and resolvePath function)
curFile = File.applicationStorageDirectory;
curFile = curFile.resolvePath("view/version_" +
asmModel.selectedDocument.VERSION_NU + "_" +
asmModel.selectedDocument.DOCNAME_CH);
//if it is there, delete it
if (curFile.exists)
curFile.deleteFile();
//open the database connection
var sqlConnection:SQLConnection;
sqlConnection = new SQLConnection();
var dbFile:File =
File.applicationDirectory.resolvePath("cASM_db.db");
sqlConnection.open(dbFile);
//get the document (now in hex string format)
myStmt.sqlConnection = sqlConnection;
myStmt.clearParameters();
myStmt.text = "Select docname_ch, document_bl " +
"from doctype " +
"where docname_ch = ?";
myStmt.parameters[1] = asmModel.selectedDocument.DOCNAME_CH;
myStmt.execute();
myResult = myStmt.getResult();
//now convert the hex string back to a byteArray (note the
use of a custom toArray function)
var myBlob:ByteArray = new ByteArray();
myBlob = toArray(myResult.data[0].DOCUMENT_BL);
//now write the document to the file
var fileStream:FileStream = new FileStream();
fileStream.open(curFile, FileMode.WRITE);
fileStream.writeBytes(myBlob);
fileStream.close();
//now set up the URLRequest
var request:URLRequest = new
URLRequest("app-storage:/view/version_" +
asmModel.selectedDocument.VERSION_NU + "_" +
asmModel.selectedDocument.DOCNAME_CH);
var docType:String = request.url.substr(request.url.length -
4, 3);
if ((docType != "pdf") ||
(HTMLLoader.pdfCapability == HTMLPDFCapability.STATUS_OK))
navigateToURL(request);
else
Alert.show ("You need to upgrade Adobe Reader.", "Error");
trace("PDF cannot be displayed. Error code:",
HTMLLoader.pdfCapability);
Here's the custom function toArray:
public static function toArray(hex:String):ByteArray {
hex = hex.substring(hex.search("3C3F786D6C"),hex.length - 3);
var a:ByteArray = new ByteArray;
//make sure the string has an even number of characters
if (hex.length&1==1) hex="0"+hex;
//change each hex pair to a single int (ascii char code)
// and place the int in the byte array
for (var i:uint=0;i<hex.length;i+=2) {
a[i/2] = parseInt(hex.substr(i,2),16);
//return the byte array
return a;
Hope this helps!
Steve

Similar Messages

  • Adding Company Knowledge with OpsMgr 2012 Console - "Failed to launch Microsoft Word"

    Hi everyone!
    I'm trying to add company knowledge using the OpsMgr 2012 console (32-bit) on Windows 7 Ultimate (32-bit) using the guidelines provided at the following link...
    http://technet.microsoft.com/en-us/library/hh212900.aspx
    I'm using Office 2010 Pro Plus SP1 (32-bit) with the .NET Programmability feature and the Microsoft Visual Studio 2005 Tools for Office Second Edition Runtime installed, but I get the dreaded "failed to launch Microsoft Word" error...
    ...any help or guidance would be greatly apprecaited!
    Regards,
    JJ

    Thanks Andres!
    I have confirmed that the following instructions does allow you to use Word 2010 32-bit running on Windows 7 64-bit or Windows Server 2008 R2 to edit company
    knowledge...
    1. Go to the directory where the OpsMgr console is installed (example: C:\Program Files\System Center\Operations Manager 2012\Console )
    2. Make a copy of Microsoft.EnterpriseManagement.Monitoring.Console.exe.config
    3. Edit Microsoft.EnterpriseManagement.Monitoring.Console.exe.config using Administrator rights
    4. Search for “</dependentAssembly>” and remove the “<publisherPolicy apply="no" />” line immediately following the “</dependentAssembly>” line
    Hope this helps!
    Regards,
    JJ
    Well, firstly I have to agree with other people's comments along the lines of "It shouldn't be this hard!", but I can happily say that the solution above (by IM5FOOTNOTHIN)
    worked for me...once I noticed this crucial footnote: "Do this for
    ALL instances of the
    <publisherPolicy apply="no" /> line that immediately follow the </dependentAssembly> line"

  • Cannot open Microsoft Office Mac 2011 after migrating to new computer. OS 10.9.1: Microsoft Error Reporting log version: 2.0  Error Signature: Exception: EXC_CRASH (SIGTRAP) Date/Time: 2014-01-19 23:31:24  0000 Application Name: Microsoft Word Application

    Got a new MacBook Pro and migrated my settings and applications from old computer. Reinstalled Microsooft Office from a disk, after I opened a document and it said I was missing some software components. Now when I open any office application, I get:
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_CRASH (SIGTRAP)
    Date/Time: 2014-01-19 23:31:24 +0000
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 14.3.9.131030
    Crashed Module Name: merp
    Crashed Module Version: 2.2.4.131030
    Crashed Module Offset: 0x00004422
    Blame Module Name: MicrosoftSetupUI
    Blame Module Version: 14.3.9.131030
    Blame Module Offset: 0x0000e516
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0

    Hi,
    Do you get the error message like "Office <Update version number> can't be installed on this disk. A version of the software required to install this update was not found on this volume. To learn how to fix it this issue, see "I can't install Office
    for Mac updates" at http://www.microsoft.com/mac/help.mspx."
    If it was, please follow the kb to fix the issue:
    http://support.microsoft.com/kb/969065/en-us
    Then, here is a forum for Office based on the Windows operation system, we are lack of the source about the Office for mac, you'd better post your question to Answers forum:
    http://answers.microsoft.com/en-us/mac/forum/macoffice2008?tab=Threads
    Regards,
    George Zhao
    TechNet Community Support

  • My Microsoft Office won't work! Here is the error report. Microsoft Error Reporting log version: 2.0  Error Signature: Exception: EXC_BAD_ACCESS Date/Time: 2015-03-04 12:04:03  0000 Application Name: Microsoft Word Application Bundle ID: com.microsoft

    My Microsoft Office won't work after upgrading to the newest OS from Apple! HELP!!!!!!
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2015-03-04 12:04:03 +0000
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 14.4.8.150116
    Crashed Module Name: unknown
    Crashed Module Version: unknown
    Crashed Module Offset: unknown
    Blame Module Name: MSXML
    Blame Module Version: 14.4.8.150116
    Blame Module Offset: 0x00003125
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0

    If your startup disk says it is full, you need to remove some of your stuff.
    Either move some documents/movies/pictures to an external drive (if you want to keep them), or delete them from your startup drive. Then, empty the Trash.
    If you move them to an external, you will still have to delete them from the internal drive.
    That won't fix Office (I don't think), but it will make everything run better. You need a minimum of 10GB free (more would be better).
    You might need to reinstall Office. It should work without problem (well, at least as little problem as Office can muster).

  • How to launch MS Word application using java

    HI:
    I'm developing a project using java, but we need to launch Microsoft Word into java based GUI(like Jpanel, or Frame, things like that), could anyone be so kind that give some hints on how to do it?
    thanks!

    I would be pleasantly shocked to find out this is possible. Well, let me retract that. You might, just very, very maybe, be able to use a combination of Windows API and Word's API (either DDE or OLE or ActiveX) to interact with Word. This will involve using a lot of native methods, javah and pre-compiled DLL's written in C or C++.
    But I think you will be completely stuck trying to get the UI to switch to a JPanel. Microsoft would have to have a version of Word independent of the UI (in effect, have designed Word to have a pluggable user interface). They may have done this, but I have never heard of a project where someone successfully swapped out Word's user interface with a custom Swing one.
    - Saish
    "My karma ran over your dogma." - Anon

  • Microsoft Word on Macbook Air

    I have a new Macbook Air and Microsoft Word spell check and autocorrect keep using British spellings for words even though I am American.  For example "Favorite" is spelled "Favourite" and "Color" is spelled "Colour".  Can anyone advise me on how to change the default?  My Mac shows an American flag on the top of the page next to the battery icon so it's not that . . . .
    Thanks for any help!

    Thank you so much for your amazingly fast response. It worked and I really appreciate it.  I hope that if you ever have a questions someone else with the knowledge helps you out as quickly as you helped me!

  • How do I use the Microsoft word application on iPad

    I have recently bought Microsoft office 2010 on the application store and I  can not figure how to use it for documents,please help

    There is no Microsoft Word for the iPad. You can use 3rd party suites (I use Documents to Go, other popular ones are QuickOffice and Office squared) or the Apple WP app (Pages has an iOS version).

  • What is the best site to get microsoft word for macbook air?

    new macbook owner I bought the pages app but I still need my microsoft word ?? I saw a few places to download but they did not mention what is compatible with the macbook.

    Cheap, but with some risk: Ebay
    Inexpensive, no risk: Staples, Best Buy, Office Depot or Office Max. (one of them seems to always be running a sale on Office for Mac Home and Student for $99.00.
    You can always try Amazon, too.
    Remember: Even if you buy the DVD at a store, you can still download afterwards from Microsoft, and then just use the Key that comes with the box purchase of Office you bought. That way, you don't have to worry about finding a means of using that DVD with yoru MBA.

  • Adding Microsoft Word to Macbook Air

    Hi,
    I have the microsoft office cd but with no cd drive, i cant add it to my air.
    I know there has to be a way to do this.
    Help, plz

    Both excellent options - there's also a guy in this community whose name I don't remember (forehead slap) but I followed his advice for downloading to my Air and it took like 2 mins. If you have the DVD already open it on another computer and drag the install to a thumb drive. Bung your thumb drive in your Air, drag it to desktop and install. Worked perfectly

  • Launch Microsoft Word macro with an applet

    Hi,
    I've got the following problem :
    First, I'd like to generate a .txt file (from an applet) on the client PC with informations (name, address...)
    Second, I'd like to lauch word macro from the applet and to merge informations from the .txt file with the .doc.
    Is it possible to do that ?
    Is it the best solution ? (the goal of the application is to generate letter to send to client)
    Thank You
    Sophie

    You can do it via Applet Servlet Communication.

  • I don't want Microsoft Word to automatically launch when I restart/reboot

    Hi All,
    Microsoft Word application automatically launches when I restart/reboot the iMac. How can I fix this?
    Smells like a virus...

    Hi ctconnor;
    Since there are no virus for OS X, I seriously doubt that is what is causing your problem here.
    My suggestion open System Preferences then Accounts followed by Login Items. Once there deselect Microsnot Word.
    Allan

  • Microsoft Word for Mac is suddenly not launching

    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2012-09-06 11:10:39 -0700
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 12.1.0.080409
    Crashed Module Name: unknown
    Crashed Module Version: unknown
    Crashed Module Offset: unknown
    Blame Module Name: unknown
    Blame Module Version: unknown
    Blame Module Offset: unknown
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Thread 0 crashed:
    #  1  0x7ffbf7f7 in  ( + 0x00000000)
    #  2  0x020db866 in _MsoGetValidTBPos + 0x00000562 (MicrosoftOffice + 0x00338866)
    #  3  0x0080d2ea in _wdGetApplicationObject + 0x000D9880 (Microsoft Word + 0x0080c2ea)
    #  4  0x00356348 in _wdCommandDispatch + 0x0003A458 (Microsoft Word + 0x00355348)
    #  5  0x00677d21 in _wdCommandDispatch + 0x0035BE31 (Microsoft Word + 0x00676d21)
    #  6  0x00ae5a3e in _wdGetApplicationObject + 0x003B1FD4 (Microsoft Word + 0x00ae4a3e)
    #  7  0x00aee39f in _wdGetApplicationObject + 0x003BA935 (Microsoft Word + 0x00aed39f)
    #  8  0x022469f8 in __WlmMain + 0x00000047 (MicrosoftOffice + 0x004a39f8)
    #  9  0x00ad3a64 in _wdGetApplicationObject + 0x0039FFFA (Microsoft Word + 0x00ad2a64)
    # 10  0x00002282 in __mh_execute_header + 0x00001282 (Microsoft Word + 0x00001282)
    # 11  0x000021a9 in __mh_execute_header + 0x000011A9 (Microsoft Word + 0x000011a9)
    X86 Thread State:
    eax: 0x004f0020  ebx: 0x053352e8  ecx: 0x00000002  edx:0x0996b8e8
    edi: 0x05335714  esi: 0x05335708  ebp: 0xbffff0d8  esp:0xbffff09c
      ss: 0x0000001f  eip: 0x7ffbf7f7   cs: 0x00000017   ds:0x0000001f
      es: 0x0000001f   fs: 0x00000000   gs: 0x00000037  eflags:0x00010202
    Thread 1:
    #  1  0x9aa57382 in __dispatch_hw_config + 0x9A89735A (libSystem.B.dylib + 0x00027382)
    #  2  0x9aa56f59 in __dispatch_hw_config + 0x9A896F31 (libSystem.B.dylib + 0x00026f59)
    #  3  0x9aa56cfe in __dispatch_hw_config + 0x9A896CD6 (libSystem.B.dylib + 0x00026cfe)
    #  4  0x9aa56781 in __dispatch_hw_config + 0x9A896759 (libSystem.B.dylib + 0x00026781)
    #  5  0x9aa565c6 in __dispatch_hw_config + 0x9A89659E (libSystem.B.dylib + 0x000265c6)
    X86 Thread State:
    eax: 0x0000016b  ebx: 0x9aa579d6  ecx: 0xb0080d5c  edx:0x9aa57382
    edi: 0xa0ccf1ec  esi: 0xb0080ed8  ebp: 0xb0080ef8  esp:0xb0080d5c
      ss: 0x0000001f  eip: 0x9aa57382   cs: 0x00000007   ds:0x0000001f
      es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037  eflags:0x00000246
    Thread 2:
    #  1  0x9aa56412 in __dispatch_hw_config + 0x9A8963EA (libSystem.B.dylib + 0x00026412)
    #  2  0x9aa565c6 in __dispatch_hw_config + 0x9A89659E (libSystem.B.dylib + 0x000265c6)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x9aa56609  ecx: 0xb0102f6c  edx:0x9aa56412
    edi: 0x04813814  esi: 0xb0103000  ebp: 0xb0102fc8  esp:0xb0102f6c
      ss: 0x0000001f  eip: 0x9aa56412   cs: 0x00000007   ds:0x0000001f
      es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037  eflags:0x00000286
    Thread 3:
    #  1  0x9aa30c0e in __dispatch_hw_config + 0x9A870BE6 (libSystem.B.dylib + 0x00000c0e)
    #  2  0x9aad0b50 in __dispatch_hw_config + 0x9A910B28 (libSystem.B.dylib + 0x000a0b50)
    #  3  0x01ab1d7d in _MerpCreateSession + 0x00000B07 (merp + 0x00002d7d)
    #  4  0x01ab13e5 in _MerpCreateSession + 0x0000016F (merp + 0x000023e5)
    #  5  0x01ab146c in _MerpCreateSession + 0x000001F6 (merp + 0x0000246c)
    #  6  0x01ab1f25 in _MerpCreateSession + 0x00000CAF (merp + 0x00002f25)
    #  7  0x9aa5e259 in __dispatch_hw_config + 0x9A89E231 (libSystem.B.dylib + 0x0002e259)
    #  8  0x9aa5e0de in __dispatch_hw_config + 0x9A89E0B6 (libSystem.B.dylib + 0x0002e0de)
    X86 Thread State:
    eax: 0xffffffa6  ebx: 0x9aab82e4  ecx: 0xb0184a6c  edx:0x9aa30c0e
    edi: 0x0000094b  esi: 0x955971f0  ebp: 0xb0184ad8  esp:0xb0184a6c
      ss: 0x0000001f  eip: 0x9aa30c0e   cs: 0x00000007   ds:0x0000001f
      es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037  eflags:0x00000206
    Thread 4:
    #  1  0x9aa56412 in __dispatch_hw_config + 0x9A8963EA (libSystem.B.dylib + 0x00026412)
    #  2  0x9aa565c6 in __dispatch_hw_config + 0x9A89659E (libSystem.B.dylib + 0x000265c6)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x9aa56609  ecx: 0xb020ff6c  edx:0x9aa56412
    edi: 0x048137f8  esi: 0xb0210000  ebp: 0xb020ffc8  esp:0xb020ff6c
      ss: 0x0000001f  eip: 0x9aa56412   cs: 0x00000007   ds:0x0000001f
      es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037  eflags:0x00000286

    You are more likely to get a good answer in Microsoft's forums.
    Best of luck.

  • Microsoft Word 2011 Freezes ALL OF THE TIME on Snow Leperd 10.6.5 Help!!

    I installed Microsoft Office on a brand new MacBook Air and am having constant freezes (MS Word not responding/beach ball not going away) of MS Word when working on documents. This usually happens when I switch between 2 documents or at least have two documents open. I unfortunately did not save the error notes when this happened and I had to force quit but managed to replicate MS Word crashing (as opposed to freezing) by opening several files at once. Here are the error details not sure this is my original problem but likely there is something very wrong with the way word is responding and it is creating **** for me since I need to work on it quite a lot and the only thing in my mind now his when I last hit save or will the whether the retrieved version (in case it is) has autosaved my changes.
    Would more than appreciate any advice.
    Here is the error I got when MS Word crashed (several times) when trying to open documents:
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXCBADACCESS
    Date/Time: 2011-01-01 22:31:16 +0200
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 14.0.2.101115
    Crashed Module Name: MicrosoftOffice
    Crashed Module Version: 14.0.2.101115
    Crashed Module Offset: 0x0010a5b9
    Blame Module Name: MicrosoftOffice
    Blame Module Version: 14.0.2.101115
    Blame Module Offset: 0x0010a5b9
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0
    Thread 0 crashed:
    # 1 0x652145b9 in _MsoInitDgvsi + 0x0000113D (MicrosoftOffice + 0x0010a5b9)
    # 2 0x6378e387 in _wdGetApplicationObject + 0x00624F67 (Microsoft Word + 0x00f8b387)
    # 3 0x629d4dc1 in _mh_executeheader + 0x001D1DC1 (Microsoft Word + 0x001d1dc1)
    # 4 0x6298dcab in _mh_executeheader + 0x0018ACAB (Microsoft Word + 0x0018acab)
    # 5 0x6298d829 in _mh_executeheader + 0x0018A829 (Microsoft Word + 0x0018a829)
    # 6 0x6298753f in _mh_executeheader + 0x0018453F (Microsoft Word + 0x0018453f)
    # 7 0x6298567e in _mh_executeheader + 0x0018267E (Microsoft Word + 0x0018267e)
    # 8 0x629423d6 in _mh_executeheader + 0x0013F3D6 (Microsoft Word + 0x0013f3d6)
    # 9 0x639633ce in _wdGetApplicationObject + 0x007F9FAE (Microsoft Word + 0x011603ce)
    # 10 0x62f059ec in _wdCommandDispatch + 0x001A234C (Microsoft Word + 0x007029ec)
    # 11 0x63087a4e in _wdCommandDispatch + 0x003243AE (Microsoft Word + 0x00884a4e)
    # 12 0x649ce234 in _CEAEInstallAppleEventHandler + 0x0000093C (MicrosoftComponentPlugin + 0x00027234)
    # 13 0x90881f0f in DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 0x0000061F (HIToolbox + 0x00007f0f)
    # 14 0x908811d6 in SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 0x0000019B (HIToolbox + 0x000071d6)
    # 15 0x908a399b in _SendEventToEventTarget + 0x00000034 (HIToolbox + 0x0002999b)
    # 16 0x649cdccd in _CEAEInstallAppleEventHandler + 0x000003D5 (MicrosoftComponentPlugin + 0x00026ccd)
    # 17 0x97016f58 in aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 0x000000A6 (AE + 0x00003f58)
    # 18 0x9701a4b8 in _AESendMessage + 0x000003C4 (AE + 0x000074b8)
    # 19 0x9701d90a in _aeSend + 0x000000EE (AE + 0x0000a90a)
    # 20 0x909170e9 in _AESend + 0x00000055 (HIToolbox + 0x0009d0e9)
    # 21 0x653cee1b in _MsoFNavLoadOpenAsStz + 0x000003D1 (MicrosoftOffice + 0x002c4e1b)
    # 22 0x653d1f05 in _MsoFMultiFileOpen + 0x0000111B (MicrosoftOffice + 0x002c7f05)
    # 23 0x62f03995 in _wdCommandDispatch + 0x001A02F5 (Microsoft Word + 0x00700995)
    # 24 0x62f0a842 in _wdCommandDispatch + 0x001A71A2 (Microsoft Word + 0x00707842)
    # 25 0x62f0ac21 in _wdCommandDispatch + 0x001A7581 (Microsoft Word + 0x00707c21)
    # 26 0x62a82f8d in _mh_executeheader + 0x0027FF8D (Microsoft Word + 0x0027ff8d)
    # 27 0x62ae4421 in _mh_executeheader + 0x002E1421 (Microsoft Word + 0x002e1421)
    # 28 0x62ae40fa in _mh_executeheader + 0x002E10FA (Microsoft Word + 0x002e10fa)
    # 29 0x65170961 in _MsoOSTypeDefaultMailClient + 0x00000086 (MicrosoftOffice + 0x00066961)
    # 30 0x64a088ba in _McpFClassicApp + 0x000001CA (MicrosoftComponentPlugin + 0x000618ba)
    # 31 0x64a08849 in _McpFClassicApp + 0x00000159 (MicrosoftComponentPlugin + 0x00061849)
    # 32 0x64a08813 in _McpFClassicApp + 0x00000123 (MicrosoftComponentPlugin + 0x00061813)
    # 33 0x6874db07 in MenuLib::TMenuItem::CallSelectionProcs(unsigned long) + 0x00000401 (MicrosoftMenuLibrary + 0x0000fb07)
    # 34 0x6874d791 in MenuLib::TMenuItem::CallSelectionProcs(unsigned long) + 0x0000008B (MicrosoftMenuLibrary + 0x0000f791)
    # 35 0x6874cc02 in MenuLib::TMenu::CallOpeningProcs() + 0x00000570 (MicrosoftMenuLibrary + 0x0000ec02)
    # 36 0x68746bff in MenuLib::CurrentMenuBarCreateIfNecessary(MenuLib::MMLMenuType) + 0x00000E31 (MicrosoftMenuLibrary + 0x00008bff)
    # 37 0x90881f0f in DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 0x0000061F (HIToolbox + 0x00007f0f)
    # 38 0x908811d6 in SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 0x0000019B (HIToolbox + 0x000071d6)
    # 39 0x908a399b in _SendEventToEventTarget + 0x00000034 (HIToolbox + 0x0002999b)
    # 40 0x908cff87 in SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 0x000001C0 (HIToolbox + 0x00055f87)
    # 41 0x908f4cfc in _SendMenuCommandWithContextAndModifiers + 0x00000042 (HIToolbox + 0x0007acfc)
    # 42 0x908f4cb1 in _SendMenuItemSelectedEvent + 0x00000079 (HIToolbox + 0x0007acb1)
    # 43 0x908f4bba in FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 0x00000098 (HIToolbox + 0x0007abba)
    # 44 0x908c42c4 in MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 0x000001C6 (HIToolbox + 0x0004a2c4)
    # 45 0x90a76931 in _MenuSelect + 0x000000BE (HIToolbox + 0x001fc931)
    # 46 0x64aad9ef in _McpDispatchPendingEvents + 0x0000012E (MicrosoftComponentPlugin + 0x001069ef)
    # 47 0x90881f0f in DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 0x0000061F (HIToolbox + 0x00007f0f)
    # 48 0x908811d6 in SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 0x0000019B (HIToolbox + 0x000071d6)
    # 49 0x908a399b in _SendEventToEventTarget + 0x00000034 (HIToolbox + 0x0002999b)
    # 50 0x908b5557 in ToolboxEventDispatcherHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 0x00000589 (HIToolbox + 0x0003b557)
    # 51 0x90882360 in DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 0x00000A70 (HIToolbox + 0x00008360)
    # 52 0x908811d6 in SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 0x0000019B (HIToolbox + 0x000071d6)
    # 53 0x908a399b in _SendEventToEventTarget + 0x00000034 (HIToolbox + 0x0002999b)
    # 54 0x649ed255 in McpAutoreleasePool::McpAutoreleasePool() + 0x00002977 (MicrosoftComponentPlugin + 0x00046255)
    # 55 0x649ea8a4 in _McpRunApplicationEventLoop + 0x00000494 (MicrosoftComponentPlugin + 0x000438a4)
    # 56 0x6280648a in _mh_executeheader + 0x0000348A (Microsoft Word + 0x0000348a)
    # 57 0x673c00db in __WlmMain + 0x00000061 (WLMKernel + 0x000090db)
    # 58 0x62805845 in _mh_executeheader + 0x00002845 (Microsoft Word + 0x00002845)
    # 59 0x628057f6 in _mh_executeheader + 0x000027F6 (Microsoft Word + 0x000027f6)
    X86 Thread State:
    eax: 0x2107b0b8 ebx: 0x6378da27 ecx: 0x00000000 edx:0xffffff34
    edi: 0xbffedc58 esi: 0xbffed768 ebp: 0xbffed6d8 esp:0xbffed6d4
    ss: 0x0000001f eip: 0x652145b9 cs: 0x00000017 ds:0x0000001f
    es: 0x0000001f fs: 0x00000000 gs: 0x00000037 eflags:0x00010202
    Thread 1:
    # 1 0x94591982 in _kevent + 0x0000000A (libSystem.B.dylib + 0x00027982)
    # 2 0x94591559 in _dispatch_queueinvoke + 0x000000A3 (libSystem.B.dylib + 0x00027559)
    # 3 0x945912fe in _dispatch_workerthread2 + 0x000000F0 (libSystem.B.dylib + 0x000272fe)
    # 4 0x94590d81 in _pthreadwqthread + 0x00000186 (libSystem.B.dylib + 0x00026d81)
    # 5 0x94590bc6 in startwqthread + 0x0000001E (libSystem.B.dylib + 0x00026bc6)
    X86 Thread State:
    eax: 0x0000016b ebx: 0x94591fd6 ecx: 0xb0080d5c edx:0x94591982
    edi: 0xa04fc1ec esi: 0xb0080ed8 ebp: 0xb0080ef8 esp:0xb0080d5c
    ss: 0x0000001f eip: 0x94591982 cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000246
    Thread 2:
    # 1 0x9456b20e in mach_waituntil + 0x0000000A (libSystem.B.dylib + 0x0000120e)
    # 2 0x9460af78 in _sleep + 0x0000003F (libSystem.B.dylib + 0x000a0f78)
    # 3 0x64e96252 in _MerpCreateSession + 0x00000B53 (merp + 0x00003252)
    # 4 0x64e95920 in _MerpCreateSession + 0x00000221 (merp + 0x00002920)
    # 5 0x64e958ab in _MerpCreateSession + 0x000001AC (merp + 0x000028ab)
    # 6 0x64e96e46 in _MerpCreateSession + 0x00001747 (merp + 0x00003e46)
    # 7 0x9459885d in _pthreadstart + 0x00000159 (libSystem.B.dylib + 0x0002e85d)
    # 8 0x945986e2 in threadstart + 0x00000022 (libSystem.B.dylib + 0x0002e6e2)
    X86 Thread State:
    eax: 0xffffffa6 ebx: 0x945f26d4 ecx: 0xb0184a4c edx:0x9456b20e
    edi: 0x0000c04e esi: 0x755a235e ebp: 0xb0184ab8 esp:0xb0184a4c
    ss: 0x0000001f eip: 0x9456b20e cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000206
    Thread 3:
    # 1 0x9458a0c6 in _select + 0x0000000A (libSystem.B.dylib + 0x000200c6)
    # 2 0x9459885d in _pthreadstart + 0x00000159 (libSystem.B.dylib + 0x0002e85d)
    # 3 0x945986e2 in threadstart + 0x00000022 (libSystem.B.dylib + 0x0002e6e2)
    X86 Thread State:
    eax: 0x0014005d ebx: 0x99153851 ecx: 0xb0420aec edx:0x9458a0c6
    edi: 0x21039960 esi: 0x0000000c ebp: 0xb0428f88 esp:0xb0420aec
    ss: 0x0000001f eip: 0x9458a0c6 cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000246
    Thread 4:
    # 1 0x94590a12 in __workqkernreturn + 0x0000000A (libSystem.B.dylib + 0x00026a12)
    # 2 0x94590bc6 in startwqthread + 0x0000001E (libSystem.B.dylib + 0x00026bc6)
    X86 Thread State:
    eax: 0x00100170 ebx: 0x94590c09 ecx: 0xb0206f6c edx:0x94590a12
    edi: 0x01004130 esi: 0xb0207000 ebp: 0xb0206fc8 esp:0xb0206f6c
    ss: 0x0000001f eip: 0x94590a12 cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000286
    Thread 5:
    # 1 0x94590a12 in __workqkernreturn + 0x0000000A (libSystem.B.dylib + 0x00026a12)
    # 2 0x94590bc6 in startwqthread + 0x0000001E (libSystem.B.dylib + 0x00026bc6)
    X86 Thread State:
    eax: 0x00100170 ebx: 0x94590c09 ecx: 0xb0395f6c edx:0x94590a12
    edi: 0x0100414c esi: 0xb0396000 ebp: 0xb0395fc8 esp:0xb0395f6c
    ss: 0x0000001f eip: 0x94590a12 cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000286
    Thread 6:
    # 1 0x9456b0fa in mach_msgtrap + 0x0000000A (libSystem.B.dylib + 0x000010fa)
    # 2 0x9911437f in _CFRunLoopRun + 0x0000081F (CoreFoundation + 0x0003d37f)
    # 3 0x99113464 in _CFRunLoopRunSpecific + 0x000001C4 (CoreFoundation + 0x0003c464)
    # 4 0x991193a4 in _CFRunLoopRun + 0x00000054 (CoreFoundation + 0x000423a4)
    # 5 0x901c9e51 in TSystemNotificationTask::SystemNotificationTaskProc(void*) + 0x00000283 (DesktopServicesPriv + 0x00001e51)
    # 6 0x961f585a in _PrivateMPEntryPoint + 0x00000044 (CarbonCore + 0x0002685a)
    # 7 0x9459885d in _pthreadstart + 0x00000159 (libSystem.B.dylib + 0x0002e85d)
    # 8 0x945986e2 in threadstart + 0x00000022 (libSystem.B.dylib + 0x0002e6e2)
    X86 Thread State:
    eax: 0xffffffe1 ebx: 0x07000006 ecx: 0xb010245c edx:0x9456b0fa
    edi: 0x00000000 esi: 0x00000000 ebp: 0xb0102498 esp:0xb010245c
    ss: 0x0000001f eip: 0x9456b0fa cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000206
    Thread 7:
    # 1 0x945990a6 in __semwaitsignal + 0x0000000A (libSystem.B.dylib + 0x0002f0a6)
    # 2 0x945c4e23 in _usleep$UNIX2003 + 0x0000003D (libSystem.B.dylib + 0x0005ae23)
    # 3 0x91e0cfe1 in -[NSUIHeartBeat _heartBeatThread:] + 0x000007F7 (AppKit + 0x001b1fe1)
    # 4 0x983f2bf0 in -[NSThread main] + 0x0000002D (Foundation + 0x00016bf0)
    # 5 0x983f2ba0 in __NSThread__main_ + 0x000005DB (Foundation + 0x00016ba0)
    # 6 0x9459885d in _pthreadstart + 0x00000159 (libSystem.B.dylib + 0x0002e85d)
    # 7 0x945986e2 in threadstart + 0x00000022 (libSystem.B.dylib + 0x0002e6e2)
    X86 Thread State:
    eax: 0x0000014e ebx: 0x945c4e36 ecx: 0xb0291c2c edx:0x945990a6
    edi: 0xa026c0d8 esi: 0xb0291c88 ebp: 0xb0291c68 esp:0xb0291c2c
    ss: 0x0000001f eip: 0x945990a6 cs: 0x00000007 ds:0x0000001f
    es: 0x0000001f fs: 0x0000001f gs: 0x00000037 eflags:0x00000246
    Loaded modules:
    0: Safari AdBlock Loader (0.4.0 RC3 Reg=English Loc=0x0000): /Library/InputManagers/Safari AdBlock/Safari AdBlock Loader.bundle/Contents/MacOS/Safari AdBlock Loader
    1: ATSHI.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    2: GLRendererFloat (1.6.11 Reg=English Loc=0x0000): /System/Library/Frameworks/OpenGL.framework/Resources//GLRendererFloat.bundle/G LRendererFloat
    3: Web (327.6 Reg=English Loc=0x0000): /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/Resources/DisplayBundles/Web.qldisplay/Contents/MacOS/Web
    4: Generic (327.6 Reg=English Loc=0x0000): /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/Resources/DisplayBundles/Generic.qldisplay/Contents/MacOS/Ge neric
    5: GenericThesaurus (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Office/Shared Applications/Proofing Tools/English Thesaurus.proofingtool/Contents/MacOS/GenericThesaurus
    6: libTraditionalChineseConverter.dylib: /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    7: libSimplifiedChineseConverter.dylib: /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    8: libPDFRIP.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    9: Speller (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Office/Shared Applications/Proofing Tools/Dutch Speller.proofingtool/Contents/MacOS/Speller
    10: Speller (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Office/Shared Applications/Proofing Tools/English Speller.proofingtool/Contents/MacOS/Speller
    11: MicrosoftProofing (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftProofing.framework/Versions/14 /MicrosoftProofing
    12: Speller (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Office/Shared Applications/Proofing Tools/French Speller.proofingtool/Contents/MacOS/Speller
    13: FrenchGrammar (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/Shared Applications/Proofing Tools/FrenchGrammar.proofingtool/Contents/MacOS/FrenchGrammar
    14: GLEngine (1.6.11 Reg=English Loc=0x0000): /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    15: libclh.dylib (6.2.4 Reg=English Loc=0x0000): /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    16: EnglishGrammar (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/Shared Applications/Proofing Tools/EnglishGrammar.proofingtool/Contents/MacOS/EnglishGrammar
    17: Microsoft Word (14.0.2.101115 Reg=en Loc=0x0409): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/Microsoft Word
    18: mbukernel (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/mbukernel.framework/Versions/14/mbukern el
    19: MicrosoftSetupUI (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftSetupUI.framework/Versions/14/ MicrosoftSetupUI
    20: MicrosoftComponentPlugin (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftComponentPlugin.framework/Vers ions/14/MicrosoftComponentPlugin
    21: Netlib (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/Netlib.framework/Versions/14/Netlib
    22: MicrosoftOLE (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftOLE.framework/Versions/14/Micr osoftOLE
    23: MicrosoftOLEAutomation (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftOLEAutomation.framework/Versio ns/14/MicrosoftOLEAutomation
    24: merp (2.2.4.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/merp.framework/Versions/14/merp
    25: MSXML (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MSXML.framework/Versions/14/MSXML
    26: MicrosoftOffice (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftOffice.framework/Versions/14/M icrosoftOffice
    27: OfficeArt (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/OfficeArt.framework/Versions/14/OfficeA rt
    28: MicrosoftOleo (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftOleo.framework/Versions/14/Mic rosoftOleo
    29: MicrosoftMathFont (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftMathFont.framework/Versions/14 /MicrosoftMathFont
    30: MicrosoftChartPlugin (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftChartPlugin.framework/Versions /14/MicrosoftChartPlugin
    31: MicrosoftPTLS (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftPTLS.framework/Versions/14/Mic rosoftPTLS
    32: MsgrLibClient (8.0.0.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MsgrLibClient.framework/Versions/14/Msg rLibClient
    33: MBURibbon (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MBURibbon.framework/Versions/14/MBURibb on
    34: MViewLib (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MViewLib.framework/Versions/14/MViewLib
    35: WLMUser (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/WLMUser.framework/Versions/14/WLMUser
    36: WLMGraphicsDevice (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/WLMGraphicsDevice.framework/Versions/14 /WLMGraphicsDevice
    37: WLMKernel (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/WLMKernel.framework/Versions/14/WLMKern el
    38: Gfx (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/Gfx.framework/Versions/14/Gfx
    39: SmartArt (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/SmartArt.framework/Versions/14/SmartArt
    40: MicrosoftCloudServices (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftCloudServices.framework/Versio ns/14/MicrosoftCloudServices
    41: mbustrings (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/mbustrings.framework/Versions/14/mbustr ings
    42: mbulocale (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/mbulocale.framework/Versions/14/mbuloca le
    43: wlmstrings (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/wlmstrings.framework/Versions/14/wlmstr ings
    44: CocoaUI (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/CocoaUI.framework/Versions/14/CocoaUI
    45: MicrosoftOfficeDRM (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftOfficeDRM.framework/Versions/1 4/MicrosoftOfficeDRM
    46: ThreadPool (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/ThreadPool.framework/Versions/14/Thread Pool
    47: MicrosoftMenuLibrary (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftMenuLibrary.framework/Versions /14/MicrosoftMenuLibrary
    48: StdUrlMoniker (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/StdUrlMoniker.framework/Versions/14/Std UrlMoniker
    49: Uniscribe (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/Uniscribe.framework/Versions/14/Uniscri be
    50: mbuinstrument (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/mbuinstrument.framework/Versions/14/mbu instrument
    51: WinCrypto (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Versions/14/../../../WinCrypto.framework /Versions/14/WinCrypto
    52: mbupgx.dylib: /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Versions/14/../../Libraries/mbupgx.dylib
    53: libcrypto.0.9.7.dylib: /usr/lib/libcrypto.0.9.7.dylib
    54: mbunamedstrings (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/CocoaUI.framework/Versions/14/../../../mbunamedstrings.framework/Ve rsions/14/mbunamedstrings
    55: CocoaTooltipParser (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/CocoaUI.framework/Versions/14/../../../CocoaTooltipParser.framework /Versions/14/CocoaTooltipParser
    56: DocEx (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../DocEx.framework/Vers ions/14/DocEx
    57: WinHttp (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../WinHttp.framework/Ve rsions/14/WinHttp
    58: MicrosoftCredui (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../MicrosoftCredui.fram ework/Versions/14/MicrosoftCredui
    59: MicrosoftDDCS (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../MicrosoftDDCS.framew ork/Versions/14/MicrosoftDDCS
    60: WinAPIUI (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../WinAPIUI.framework/V ersions/14/WinAPIUI
    61: MicrosoftCSI (14.0.2.101115 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../MicrosoftCSI.framewo rk/Versions/14/MicrosoftCSI
    62: MetEx (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../MetEx.framework/Vers ions/14/MetEx
    63: MicrosoftFBA (14.0.2.101115 Reg=(null) Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../MicrosoftFBA.framewo rk/Versions/14/MicrosoftFBA
    64: XPG (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/DocEx.framework/Versions/14/../../../XPG.framework/Versions/14/XPG
    65: MicrosoftFS (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftCloudServices.framework/Versions/14/../../../MicrosoftFS.f ramework/Versions/14/MicrosoftFS
    66: MicrosoftWlmFile (14.0.2.101115 Reg=en-US Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftCSI.framework/Versions/14/../../../MicrosoftWlmFile.framew ork/Versions/14/MicrosoftWlmFile
    67: MicrosoftWebServices (14.0.2.101115 Reg=en-US Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftCSI.framework/Versions/14/../../../MicrosoftWebServices.fr amework/Versions/14/MicrosoftWebServices
    68: Oimg (14.0.2.101115 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/OfficeArt.framework/Versions/14/../../../Oimg.framework/Versions/14 /Oimg
    69: GeForceGLDriver (6.2.4 Reg=English Loc=0x0000): /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    70: libtidy.A.dylib: /usr/lib/libtidy.A.dylib
    71: libGLProgrammability.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    72: AGL (AGL-3.0.12 Reg=English Loc=0x0000): /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    73: DesktopServicesPriv (1.5.9 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    74: QuickLookUI (327.6 Reg=English Loc=0x0000): /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    75: DirectoryService (621.9 Reg=English Loc=0x0000): /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    76: HTMLRendering (1.1.4 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    77: LangAnalysis (1.6.6 Reg=English Loc=0x0000): /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    78: CorePDF (1.3 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    79: HIToolbox: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    80: libGLU.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    81: OpenDirectory (10.6 Reg=English Loc=0x0000): /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    82: libTrueTypeScaler.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    83: AddressBook (875 Reg=English Loc=0x0000): /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    84: libkxld.dylib: /usr/lib/system/libkxld.dylib
    85: MeshKit (49.2 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    86: WebCore (6533.19.4 Reg=English Loc=0x0000): /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    87: libCoreVMClient.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    88: ImageCapture (6.0.1 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    89: Shortcut (1.1 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    90: ImageKit (1.0 Reg=English Loc=0x0000): /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    91: Kerberos (6.5.10 Reg=English Loc=0x0000): /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    92: AppKit (1038.35 Reg=English Loc=0x0000): /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    93: QD: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    94: CrashReporterSupport (252 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    95: libCGXType.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    96: VideoToolbox (484.20 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    97: CFOpenDirectory (10.6 Reg=English Loc=0x0000): /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    98: ImageCaptureCore (1.0.3 Reg=English Loc=0x0000): /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    99: libGLImage.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    100: Cocoa: /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    101: CoreVideo (45.6 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    102: libBLAS.dylib (vecLib 3.6 Reg=English Loc=0x0000): /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    103: DiskArbitration (2.3.1 Reg=English Loc=0x0000): /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    104: libFontParser.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    105: Print (237.1 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    106: libstdc++.6.dylib: /usr/lib/libstdc++.6.dylib
    107: iLifeMediaBrowser (468 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    108: CoreGraphics: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    109: CommonPanels (91 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    110: CoreData (251 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    111: ApplicationServices (38 Reg=English Loc=0x0000): /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    112: libCGXCoreImage.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    113: libxslt.1.dylib: /usr/lib/libxslt.1.dylib
    114: libresolv.9.dylib: /usr/lib/libresolv.9.dylib
    115: Backup (1.2.2 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    116: CoreUI (114 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    117: QuartzFilters (1.6.0 Reg=English Loc=0x0000): /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    118: libssl.0.9.8.dylib: /usr/lib/libssl.0.9.8.dylib
    119: DSObjCWrappers (134 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    120: FamilyControls (2010 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    121: TrustEvaluationAgent (1 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    122: vecLib (vecLib 3.6 Reg=English Loc=0x0000): /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    123: IOSurface (74.1 Reg=English Loc=0x0000): /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    124: PDFKit (2.5.1 Reg=English Loc=0x0000): /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    125: HelpData (34 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    126: CoreMedia (484.20 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    127: libCSync.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    128: Security (37594 Reg=English Loc=0x0000): /System/Library/Frameworks/Security.framework/Versions/A/Security
    129: libbsm.0.dylib: /usr/lib/libbsm.0.dylib
    130: libxml2.2.dylib: /usr/lib/libxml2.2.dylib
    131: libSystem.B.dylib: /usr/lib/libSystem.B.dylib
    132: SpeechSynthesis (3.10.35 Reg=English Loc=0x0000): /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    133: Ink (107 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    134: libvMisc.dylib (vecLib 3.6 Reg=English Loc=0x0000): /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    135: QTKit (1756 Reg=English Loc=0x0000): /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    136: SpeechRecognition (3.11.1 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    137: CoreAudio (3.2.6 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    138: QuartzCore (227.34 Reg=English Loc=0x0000): /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    139: libvDSP.dylib (vecLib 3.6 Reg=English Loc=0x0000): /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    140: CoreMediaIOServices (1158 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    141: AppleVA (4.10.12 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    142: SearchKit (1.3.0 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    143: CarbonCore (861.23 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    144: libPng.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    145: libTIFF.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    146: Metadata (507.12 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    147: MeshKitRuntime (49.2 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    148: libGL.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    149: MultitouchSupport (207.10 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    150: libcups.2.dylib: /usr/lib/libcups.2.dylib
    151: LaunchServices (362.1 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    152: OpenCL (12.3 Reg=English Loc=0x0000): /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    153: ATS: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    154: PrintCore (312.7 Reg=English Loc=0x0000): /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    155: AudioToolbox (1.6.5 Reg=English Loc=0x0000): /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    156: liblangid.dylib: /usr/lib/liblangid.dylib
    157: CFNetwork (454.11.5 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    158: HIServices: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    159: OSServices (357 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    160: libJPEG.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    161: libRadiance.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    162: OpenScripting: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    163: libFontRegistry.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    164: libsqlite3.dylib: /usr/lib/libsqlite3.dylib
    165: ImageIO (3.0.4 Reg=English Loc=0x0000): /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    166: ColorSync (4.6.3 Reg=English Loc=0x0000): /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    167: AE (496.4 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    168: libcrypto.0.9.8.dylib: /usr/lib/libcrypto.0.9.8.dylib
    169: MediaToolbox (484.20 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    170: JavaScriptCore (6533.19.1 Reg=English Loc=0x0000): /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    171: NavigationServices (182 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    172: RawCamera (551 Reg=English Loc=0x0000): /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    173: QuartzComposer ({156.28} Reg=English Loc=0x0000): /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    174: PasswordServer (6.0 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    175: ColorSyncDeprecated.dylib: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    176: AudioUnit (1.6.5 Reg=English Loc=0x0000): /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    177: DictionaryServices (1.1.2 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    178: CarbonSound (3.9.3 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    179: Help (41 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    180: Accelerate (Accelerate 1.6 Reg=English Loc=0x0000): /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    181: LDAP (120.1 Reg=English Loc=0x0000): /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    182: QuickTime (1756 Reg=English Loc=0x0000): /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    183: vecLib (vecLib 3.6 Reg=English Loc=0x0000): /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    184: libauto.dylib: /usr/lib/libauto.dylib
    185: Foundation (751.42 Reg=en_US Loc=0x0000): /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    186: SecurityFoundation: /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    187: CoreText: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    188: libGIF.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    189: QuickLook (327.6 Reg=English Loc=0x0000): /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    190: DataDetectorsCore (80.7 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    191: SystemConfiguration (1.10.2 Reg=English Loc=0x0000): /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    192: libz.1.dylib: /usr/lib/libz.1.dylib
    193: CoreServices (44 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    194: DisplayServices (283 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    195: libType1Scaler.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    196: MonitorPanel (1.3.0 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    197: MeshKitIO (49.2 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    198: vImage (4.0 Reg=English Loc=0x0000): /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    199: Quartz (1.5 Reg=English Loc=0x0000): /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    200: IOKit: /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    201: libobjc.A.dylib: /usr/lib/libobjc.A.dylib
    202: libsasl2.2.dylib: /usr/lib/libsasl2.2.dylib
    203: libGFXShared.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    204: libRIP.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    205: WebKit (6533.19.4 Reg=English Loc=0x0000): /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    206: SecurityHI (36638 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    207: libicucore.A.dylib: /usr/lib/libicucore.A.dylib
    208: CoreFoundation (550.42 Reg=en_US Loc=0x0000): /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    209: OpenGL (1.6.11 Reg=English Loc=0x0000): /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    210: libmathCommon.A.dylib: /usr/lib/system/libmathCommon.A.dylib
    211: Carbon (152 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    212: SecurityInterface (37214 Reg=English Loc=0x0000): /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    213: libLAPACK.dylib (vecLib 3.6 Reg=English Loc=0x0000): /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    214: NetFS (3.2.1 Reg=English Loc=0x0000): /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    215: libCyrillicConverter.dylib: /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    216: libJapaneseConverter.dylib: /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    217: libKoreanConverter.dylib: /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    218: libLatin2Converter.dylib: /System/Library/CoreServices/Encodings/libLatin2Converter.dylib
    Operating System Information
    Operating System: Mac OS X 10.6.5 (Build 10H574)
    CPU: Intel Core Duo, Number: 2, Speed: 2130 MHz
    gestaltPhysicalRAMSizeInMegabytes err = 0, result = 4096 MB
    gestaltSystemVersion err = 0, result = 0x1065
    Screen: 1440 x 900, depth = 32, ltbr = 0, 0, 900, 1440
    Microsoft Application Information:
    Error Reporting UUID: ACDF693A-BB26-4CE3-B37E-FF9607054072
    Time from launch: 1 hours, 29 minutes, 58 seconds
    Total errors on this client: 5

    Reinstalling the Office fonts doesn't work. Reinstalling the entire Office package doesn't work either. My IT guy was no help but I think I made some progress.
    It is font related. What did work was disabling all fonts and then systematically enabling them to avoid a conflict. First, disable all of the fonts in your font manager and then launch an office program. Your office app will be asking you to 'Allow' specific font use. For every font it requested, I used font book to enable it. If it does indeed work then we now know it is some type of font corruption or conflict. Now you have to find the offending font(s).
    Once that is done you should have a working albeit limited system. If you have hundreds of fonts you should systematically turn them on in blocks. I plan to enable blocks alphabetically and launch Office apps to test your progress. Once it freezes again you will have found the offending fonts. Keep narrowing it down and you'll find it.
    I haven't completed this as I am just happy to be limping along for the moment. Good luck.
    - L

  • Microsoft Word and Xcel crashing on Yosemite!

    Running MS Office 2011 for MAC - I upgraded to Yosemite soon after it's release and had problems with word and xcel both crashing.  Researched the problem and found duplicate font files were suspect so I cleaned that up and things seemed to be working fine.  Then out of the blue, both word and xcel are crashing again but now they crash without launching through a doc or spreadsheet.  First few lines of the error report below.  Any help would be greatly appreciated!!
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2015-01-02 23:25:16 +0000
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 14.1.4.111121
    Crashed Module Name: unknown
    Crashed Module Version: unknown
    Crashed Module Offset: unknown
    Blame Module Name: unknown
    Blame Module Version: unknown
    Blame Module Offset: unknown
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0
    What the BLEEP is Beta testing for?
    Thanks APPLE for thinking of all of us out here that rely on this crap to run our businesses!!!

    Hello all,
    I recently downloaded a printer driver for an HP LaserJet Printer. Subsequent to downloading the driver, whenever I would like to print in Microsoft Word 2011, and go to the tab File > Print, Microsoft Word immediately crashes. It is notable that when I print by clicking the printer icon on the toolbar, I am able to print just fine with no crashes. This is certainly somehow connected to the downloading of the driver. I've attempt to solve this problem by repairing permissions in disk utility, to no avail. Please Help! Thanks!

  • Microsoft Word 2008 keeps crashing with Mountain Lion 10.8.3.

    I've had this problem off and on, and judging from the forums, it seems to be common. Following advise on one discussion forum and a visit to the genius bar, I tried deleting the .plist files in the preferences folder for Word (following advice found here: http://support.microsoft.com/kb/948489). This worked for a bit, but now the problem is back. I can't type two words before Word crashes. Does anyone have a solution? 
    The following error message appears after the crash:
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2013-04-02 00:45:55 +0000
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 12.0.0.071130
    Crashed Module Name: unknown
    Crashed Module Version: unknown
    Crashed Module Offset: unknown
    Blame Module Name: unknown
    Blame Module Version: unknown
    Blame Module Offset: unknown
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Thread 0 crashed:
    #  1  0x9a492843 in  ( + 0x00000000)
    #  2  0x9a494dbc in  ( + 0x00000000)
    #  3  0x18739607 in  ( + 0x00000000)
    #  4  0x1873968d in  ( + 0x00000000)
    #  5  0x18757bbe in  ( + 0x00000000)
    #  6  0x187b134d in  ( + 0x00000000)
    #  7  0x187b7d82 in  ( + 0x00000000)
    #  8  0x015dae76 in  ( + 0x00000000)
    #  9  0x015daee0 in  ( + 0x00000000)
    # 10  0x015dbc2d in  ( + 0x00000000)
    # 11  0x00617d3a in  ( + 0x00000000)
    # 12  0x0061cb21 in  ( + 0x00000000)
    # 13  0x0061ceaf in  ( + 0x00000000)
    # 14  0x008b5410 in  ( + 0x00000000)
    # 15  0x00623565 in  ( + 0x00000000)
    # 16  0x006264a1 in  ( + 0x00000000)
    # 17  0x008b7dc4 in  ( + 0x00000000)
    # 18  0x008b7e94 in  ( + 0x00000000)
    # 19  0x000038fc in  ( + 0x00000000)
    # 20  0x000039fd in  ( + 0x00000000)
    # 21  0x00c57163 in  ( + 0x00000000)
    # 22  0x01621afe in  ( + 0x00000000)
    # 23  0x9a052c81 in  ( + 0x00000000)
    # 24  0x936f7416 in  ( + 0x00000000)
    # 25  0x936f6db5 in  ( + 0x00000000)
    # 26  0x936dbbc2 in  ( + 0x00000000)
    # 27  0x936db02a in  ( + 0x00000000)
    # 28  0x936dae9b in  + 0x0000E7F0 ( + 0x00000000)
    # 29  0x9a03cf5a in  ( + 0x00000000)
    # 30  0x9a03ccc9 in  ( + 0x00000000)
    # 31  0x9a1a215c in  ( + 0x00000000)
    # 32  0x01661ce4 in  ( + 0x00000000)
    # 33  0x00ae3e6b in  ( + 0x00000000)
    # 34  0x00aecd18 in  ( + 0x00000000)
    # 35  0x02236080 in  ( + 0x00000000)
    # 36  0x00ad2438 in  ( + 0x00000000)
    # 37  0x000028e2 in  ( + 0x00000000)
    # 38  0x00002809 in  ( + 0x00000000)
    X86 Thread State:
    eax: 0xacd99a28  ebx: 0xffffffff  ecx: 0x9a457947  edx:0xffffffff
    edi: 0xffffffff  esi: 0xacd99a28  ebp: 0xbfffda28  esp:0xbfffda10
      ss: 0x00000023  eip: 0x9a492843   cs: 0x0000001b   ds:0x00000023
      es: 0x00000023   fs: 0x00000000   gs: 0x0000000f  eflags:0x00010282
    Thread 1:
    #  1  0x928b69ae in  ( + 0x00000000)
    #  2  0x9354b7a9 in  ( + 0x00000000)
    X86 Thread State:
    eax: 0x0000016b  ebx: 0xb0102700  ecx: 0xb01025ac  edx:0x928b69ae
    edi: 0x00000000  esi: 0x9354b8a1  ebp: 0xb0102718  esp:0xb01025ac
      ss: 0x00000023  eip: 0x928b69ae   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000246
    Thread 2:
    #  1  0x928b60ee in  ( + 0x00000000)
    #  2  0x9a431e79 in  ( + 0x00000000)
    #  3  0x9a419d2a in  ( + 0x00000000)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x9a431cc7  ecx: 0xb0184f6c  edx:0x928b60ee
    edi: 0xb0185000  esi: 0xb0185000  ebp: 0xb0184f88  esp:0xb0184f6c
      ss: 0x00000023  eip: 0x928b60ee   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000282
    Thread 3:
    #  1  0x928b38e6 in  ( + 0x00000000)
    #  2  0x9a4c06b6 in  ( + 0x00000000)
    #  3  0x01aa4265 in  ( + 0x00000000)
    #  4  0x01aa38cd in  ( + 0x00000000)
    #  5  0x01aa3954 in  ( + 0x00000000)
    #  6  0x01aa440d in  ( + 0x00000000)
    #  7  0x9a42f5b7 in  ( + 0x00000000)
    #  8  0x9a419d4e in  ( + 0x00000000)
    X86 Thread State:
    eax: 0xffffffa6  ebx: 0x00000000  ecx: 0xb0206a9c  edx:0x928b38e6
    edi: 0x00005ce0  esi: 0xc811fc9c  ebp: 0xb0206ae8  esp:0xb0206a9c
      ss: 0x00000023  eip: 0x928b38e6   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000246
    Thread 4:
    #  1  0x928b60ee in  ( + 0x00000000)
    #  2  0x9a431e79 in  ( + 0x00000000)
    #  3  0x9a419d2a in  ( + 0x00000000)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x9a431cc7  ecx: 0xb0288f6c  edx:0x928b60ee
    edi: 0xb0289000  esi: 0xb0289000  ebp: 0xb0288f88  esp:0xb0288f6c
      ss: 0x00000023  eip: 0x928b60ee   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000282
    Thread 5:
    #  1  0x928b4eb6 in  ( + 0x00000000)
    #  2  0x016e7552 in  ( + 0x00000000)
    #  3  0x015f58b8 in  ( + 0x00000000)
    #  4  0x9665ea7b in  ( + 0x00000000)
    #  5  0x9a42f5b7 in  ( + 0x00000000)
    #  6  0x9a419d4e in  ( + 0x00000000)
    X86 Thread State:
    eax: 0x000c0194  ebx: 0x015f5867  ecx: 0xb030ad5c  edx:0x928b4eb6
    edi: 0x928b3e77  esi: 0xb030af44  ebp: 0xb030ad78  esp:0xb030ad5c
      ss: 0x00000023  eip: 0x928b4eb6   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000286
    Thread 6:
    #  1  0x928b3826 in  ( + 0x00000000)
    #  2  0x015f5c7b in  ( + 0x00000000)
    #  3  0x9665ea7b in  ( + 0x00000000)
    #  4  0x9a42f5b7 in  ( + 0x00000000)
    #  5  0x9a419d4e in  ( + 0x00000000)
    X86 Thread State:
    eax: 0xffffffda  ebx: 0x015f5a95  ecx: 0xb040ee7c  edx:0x928b3826
    edi: 0xb040ef56  esi: 0xb040eed4  ebp: 0xb040eea8  esp:0xb040ee7c
      ss: 0x00000023  eip: 0x928b3826   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000206
    Thread 7:
    #  1  0x928b60ee in  ( + 0x00000000)
    #  2  0x9a431e79 in  ( + 0x00000000)
    #  3  0x9a419d2a in  ( + 0x00000000)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x9a431cc7  ecx: 0xb038cf6c  edx:0x928b60ee
    edi: 0xb038d000  esi: 0xb038d000  ebp: 0xb038cf88  esp:0xb038cf6c
      ss: 0x00000023  eip: 0x928b60ee   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000282
    Loaded modules:
    Operating System Information
    Operating System: Mac OS X 10.8.3 (Build 12D78)
    CPU: Intel Core Duo, Number: 4, Speed: 2147 MHz
    gestaltPhysicalRAMSize err = 0, result = 2047 MB
    gestaltSystemVersion err = 0, result = 0x1083
    Screen: 1280 x 800, depth = 32, ltbr = 0, 0, 800, 1280
    Microsoft Application Information:
    Error Reporting UUID: 9D8D8CC4-51B1-4B80-A492-9A39F90897AA
    Time from launch: 0 hours, 0 minutes, 38 seconds
    Total errors on this client: 87

    Post your question on Microsoft's Mac forums since it's their software you're having issues with:  http://answers.microsoft.com/en-us/mac

Maybe you are looking for

  • How do I move iTunes from a dead computer?

    My iTunes currently resides on a dead computer (hard drive failure). How do I move iTunes to my laptop PC (Vista) without losing all of my music/videos (on iPod) or apps (iPhone)?

  • I try to send a message to my friends and then it crashes

    By mistake i deleted ichat, i installed it again from my install disk and after that im having the problem that i cant send any messages to my friends and it also crashes.Heres the error: Process: iChat [678] Path: /Applications/iChat.app/Contents/Ma

  • I can no longer connect with others using FaceTime after the mandatory update

    I updated my iPad software and now when I try to connect with someone using FaceTime I can never fully connect. Can anyone help me or seen this issue?

  • How to provide Message per row in MQ connection

    Hi, I have created a MQ connection with which i am able to send messages as Flat File as target. but i have one query on how to set the Rows per message option when we parameterize the MQ connection name. As the Rows per message option can be only se

  • Date & Time Issue

    I live in Egypt, I have this issue with my iphone4 recently, whenever i use the [Set Automatically] option for the Date and Time it Not the ring time, meaning for example now it's 6.20am, and the phone says it's 3.20pm, even when i turn it off and se