Movies not opening when I throw to my tv

I've recently got my new z1 and I'm really impressed, but I'm having problems getting movies to play on my tv when I use the throw function.
They are downloaded onto an sd card from movies app. I can play them on the phone, but when trying to throw them it says unsupported file.
Any ideas?
Thanks in advance
Dan

It doesn't matter. I tried to Throw music from Walkman app, photos from Album app and home videos from Movies app. Z1 does not see my Sony devices as valid renderers. When I checked both my Bravia TV and Blu Ray player, I can see the Mac address of my Z1 in the Allow list of devices. So obviously the devices had some communications if the Mac address of the Z1 is identified.
Both my Sony TV and Blu Ray are 2012 models so I'll be shocked if these are no longer supported. Sony needs a better guide on how to use Throw and how to troubleshoot.

Similar Messages

  • Finder does not open when a file passes over (mac os X 10.8.3)

    Just installed mac os 10.8.3 mountain lion. As such, it seems with this OS X version the "finder" does not open when a file passes over (in order to move it from desktop).
    The screen dims a little and nothing else happens.
    How can I recover the "finder" functionality that apparently doesn not exist anymore?
    Is it something wrong that I am doing?
    Regards
    José

    Back up all data. Don't continue unless you're sure you can restore from a backup, even if you're unable to log in.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
    Enter the following command in the Terminal window in the same way as before (triple-click, copy, and paste):
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR.. ; sudo chown -R $UID:staff ~ $_ ; sudo chmod -R u+rwX ~ $_ ; chmod -R -N ~ $_ ; } 2> /dev/null
    This time you'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command will take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1 or if it doesn't solve the problem.
    Boot into Recovery. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not  going to reset a password.
    Select your boot volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

  • Book icon not opening when clicked

    I have an odd problem here.
    In my Contents tab on the left side, I have eight Book icons
    that, when clicked, open to reveal the Help topics inside them-
    just like any normal RoboHelp project would work. However, the very
    last Book icon in the list does not open when clicked. I checked
    the original file and all of the help topics are under the Book
    like they should be. When I compile the file and do a View Primary
    Layout, this last Book icon opens correctly. The problem only
    occurs once the project is built into the software I'm doing the
    Help for. When I move the Book icon up in the list (so it's not the
    last one anymore) it works correctly. But then the Book icon that
    becomes the last icon doesn't open when clicked. So whichever Book
    icon is last in the list doesn't open when clicked. Anyone have any
    clue what would cause this? Thanks alot.

    Hi Scott45 and welcome to the RH community.
    Have you tried deleting the book and adding it again? Also
    you can open the project's .HHC file in Notepad (or something
    similar) and check that the relevant TOC entry is displayed
    correctly there.

  • JFileChooser not opening when we applied custom Look and Feel & Theme

    Dear All,
    JFileChooser not opening when we applied custom Look and Feel & Theme.
    The following is the source code
    import java.awt.Color;
    import javax.swing.*;
    import javax.swing.plaf.ColorUIResource;
    import javax.swing.plaf.metal.MetalLookAndFeel;
    import com.jgoodies.looks.plastic.*;
    public class CustomTheme {
    public static void main(String[] args)throws UnsupportedLookAndFeelException{
    UIManager.setLookAndFeel(new MyLookAndFeel());
    MyLookAndFeel.setCurrentTheme(new CustomLaF());
    JFrame frame = new JFrame("Metal Theme");
    JFileChooser jf = new JFileChooser();
    System.out.println("UI - > "+jf.getUI());
    //jf.updateUI();
    frame.getContentPane().add(jf);
    frame.pack();
    frame.setVisible(true);
    static class CustomLaF extends PlasticTheme {
    protected ColorUIResource getPrimary1() {
    return new ColorUIResource(232,132,11);
    public ColorUIResource getPrimary2() {
              return (new ColorUIResource(Color.white));
         public ColorUIResource getPrimary3() {
              return (new ColorUIResource(232,132,11));
    public ColorUIResource getPrimaryControl() {
    return new ColorUIResource(Color.GREEN);
    protected ColorUIResource getSecondary1() {
    return new ColorUIResource(Color.CYAN);
    protected ColorUIResource getSecondary2() {
              return (new ColorUIResource(Color.gray));
         protected ColorUIResource getSecondary3() {
              return (new ColorUIResource(235,235,235));
         protected ColorUIResource getBlack() {
              return BLACK;
         protected ColorUIResource getWhite() {
              return WHITE;
    static class MyLookAndFeel extends Plastic3DLookAndFeel {
              protected void initClassDefaults(UIDefaults table) {
                   super.initClassDefaults(table);
              protected void initComponentDefaults(UIDefaults table) {
                   super.initComponentDefaults(table);
                   Object[] defaults = {
                             "MenuItem.foreground",new ColorUIResource(Color.white),
                             "MenuItem.background",new ColorUIResource(Color.gray),
                             "MenuItem.selectionForeground",new ColorUIResource(Color.gray),
                             "MenuItem.selectionBackground",new ColorUIResource(Color.white),
                             "Menu.selectionForeground", new ColorUIResource(Color.white),
                             "Menu.selectionBackground", new ColorUIResource(Color.gray),
                             "MenuBar.background", new ColorUIResource(235,235,235),
                             "Menu.background", new ColorUIResource(235,235,235),
                             "Desktop.background",new ColorUIResource(235,235,235),
                             "Button.select",new ColorUIResource(232,132,11),
                             "Button.focus",new ColorUIResource(232,132,11),
                             "TableHeader.background", new ColorUIResource(232,132,11),
                             "TableHeader.foreground", new ColorUIResource(Color.white),
                             "ScrollBar.background", new ColorUIResource(235,235,235),
                             "ToolTip.foreground", new ColorUIResource(232,132,11),
                             "ToolTip.background", new ColorUIResource(Color.white),
                             "OptionPane.questionDialog.border.background", new ColorUIResource(Color.gray),
                             "OptionPane.errorDialog.titlePane.foreground", new ColorUIResource(Color.white),
                             "OptionPane.questionDialog.titlePane.background", new ColorUIResource(232,132,11),
                             "Table.selectionBackground", new ColorUIResource(232,132,11)
                   table.putDefaults(defaults);
    When i run this program the following error is coming:
    Exception in thread "main" java.lang.NullPointerException
    at javax.swing.plaf.metal.MetalFileChooserUI$IndentIcon.getIconWidth(Unknown Source)
    at javax.swing.SwingUtilities.layoutCompoundLabelImpl(Unknown Source)
    at javax.swing.SwingUtilities.layoutCompoundLabel(Unknown Source)
    at javax.swing.plaf.basic.BasicLabelUI.layoutCL(Unknown Source)
    at javax.swing.plaf.basic.BasicLabelUI.getPreferredSize(Unknown Source)
    at javax.swing.JComponent.getPreferredSize(Unknown Source)
    at javax.swing.plaf.basic.BasicListUI.updateLayoutState(Unknown Source)
    at javax.swing.plaf.basic.BasicListUI.maybeUpdateLayoutState(Unknown Source)
    at javax.swing.plaf.basic.BasicListUI$ListSelectionHandler.valueChanged(Unknown Source)
    at javax.swing.DefaultListSelectionModel.fireValueChanged(Unknown Source)
    at javax.swing.DefaultListSelectionModel.fireValueChanged(Unknown Source)
    at javax.swing.DefaultListSelectionModel.fireValueChanged(Unknown Source)
    at javax.swing.DefaultListSelectionModel.changeSelection(Unknown Source)
    at javax.swing.DefaultListSelectionModel.changeSelection(Unknown Source)
    at javax.swing.DefaultListSelectionModel.setSelectionInterval(Unknown Source)
    at javax.swing.JList.setSelectedIndex(Unknown Source)
    at javax.swing.plaf.basic.BasicComboPopup.setListSelection(Unknown Source)
    at javax.swing.plaf.basic.BasicComboPopup.access$000(Unknown Source)
    at javax.swing.plaf.basic.BasicComboPopup$ItemHandler.itemStateChanged(Unknown Source)
    at javax.swing.JComboBox.fireItemStateChanged(Unknown Source)
    at javax.swing.JComboBox.selectedItemChanged(Unknown Source)
    at javax.swing.JComboBox.contentsChanged(Unknown Source)
    at javax.swing.AbstractListModel.fireContentsChanged(Unknown Source)
    at javax.swing.plaf.metal.MetalFileChooserUI$DirectoryComboBoxModel.setSelectedItem(Unknow
    at javax.swing.plaf.metal.MetalFileChooserUI$DirectoryComboBoxModel.addItem(Unknown Source
    at javax.swing.plaf.metal.MetalFileChooserUI$DirectoryComboBoxModel.access$2300(Unknown So
    at javax.swing.plaf.metal.MetalFileChooserUI.doDirectoryChanged(Unknown Source)
    at javax.swing.plaf.metal.MetalFileChooserUI.access$2600(Unknown Source)
    at javax.swing.plaf.metal.MetalFileChooserUI$12.propertyChange(Unknown Source)
    at javax.swing.event.SwingPropertyChangeSupport.firePropertyChange(Unknown Source)
    at javax.swing.event.SwingPropertyChangeSupport.firePropertyChange(Unknown Source)
    at javax.swing.JComponent.firePropertyChange(Unknown Source)
    at javax.swing.JFileChooser.setCurrentDirectory(Unknown Source)
    at javax.swing.JFileChooser.<init>(Unknown Source)
    at javax.swing.JFileChooser.<init>(Unknown Source)
    at CustomTheme.main(CustomTheme.java:20)
    I am extending the JGoodies Look And Feel & Theme.
    Thanks in advance
    Krishna Mohan.

    Dear cupofjoe,
    Thank you for your response.
    I am using the Latest JGoodies Look & Feel which is downloaded from http://www.jgoodies.com.
    i am writing our own custom Look & Feel By Overridding Jgoodies Look & Feel.
    In that case i am getting that error.
    The following is the source code:
    import java.awt.Color;
    import javax.swing.*;
    import javax.swing.plaf.ColorUIResource;
    import javax.swing.plaf.metal.MetalLookAndFeel;
    import com.jgoodies.looks.plastic.*;
    public class CustomTheme {
    public static void main(String[] args)throws UnsupportedLookAndFeelException{
    UIManager.setLookAndFeel(new MyLookAndFeel());
    MyLookAndFeel.setCurrentTheme(new CustomLaF());
    JFrame frame = new JFrame("Metal Theme");
    JFileChooser jf = new JFileChooser();
    //System.out.println("UI - > "+jf.getUI());
    //jf.updateUI();
    //frame.getContentPane().add(jf);
    frame.pack();
    frame.setVisible(true);
    static class CustomLaF extends PlasticTheme {
    protected ColorUIResource getPrimary1() {
    return new ColorUIResource(232,132,11);
    public ColorUIResource getPrimary2() {
              return (new ColorUIResource(Color.white));
         public ColorUIResource getPrimary3() {
              return (new ColorUIResource(232,132,11));
    public ColorUIResource getPrimaryControl() {
    return new ColorUIResource(Color.GREEN);
    protected ColorUIResource getSecondary1() {
    return new ColorUIResource(Color.CYAN);
    protected ColorUIResource getSecondary2() {
              return (new ColorUIResource(Color.gray));
         protected ColorUIResource getSecondary3() {
              return (new ColorUIResource(235,235,235));
         protected ColorUIResource getBlack() {
              return BLACK;
         protected ColorUIResource getWhite() {
              return WHITE;
    static class MyLookAndFeel extends Plastic3DLookAndFeel {
              protected void initClassDefaults(UIDefaults table) {
                   super.initClassDefaults(table);
              protected void initComponentDefaults(UIDefaults table) {
                   super.initComponentDefaults(table);
                   Object[] defaults = {
                             "MenuItem.foreground",new ColorUIResource(Color.white),
                             "MenuItem.background",new ColorUIResource(Color.gray),
                             "MenuItem.selectionForeground",new ColorUIResource(Color.gray),
                             "MenuItem.selectionBackground",new ColorUIResource(Color.white),
                             "Menu.selectionForeground", new ColorUIResource(Color.white),
                             "Menu.selectionBackground", new ColorUIResource(Color.gray),
                             "MenuBar.background", new ColorUIResource(235,235,235),
                             "Menu.background", new ColorUIResource(235,235,235),
                             "Desktop.background",new ColorUIResource(235,235,235),
                             "Button.select",new ColorUIResource(232,132,11),
                             "Button.focus",new ColorUIResource(232,132,11),
                             "TableHeader.background", new ColorUIResource(232,132,11),
                             "TableHeader.foreground", new ColorUIResource(Color.white),
                             "ScrollBar.background", new ColorUIResource(235,235,235),
                             "ToolTip.foreground", new ColorUIResource(232,132,11),
                             "ToolTip.background", new ColorUIResource(Color.white),
                             "OptionPane.questionDialog.border.background", new ColorUIResource(Color.gray),
                             "OptionPane.errorDialog.titlePane.foreground", new ColorUIResource(Color.white),
                             "OptionPane.questionDialog.titlePane.background", new ColorUIResource(232,132,11),
                             "Table.selectionBackground", new ColorUIResource(232,132,11)
                   table.putDefaults(defaults);
    pls suggest me the how to solve this problem.
    thanks in advance
    Krishna MOhan

  • When i open finder the windown is a completely blank grey box with the title "Window" as a header, and all my folders will not open when clicked

    when i open finder the windown is a completely blank grey box with the title "Window" as a header, and all my folders will not open when c
    the problem started when my computer screen broke from something falling on it, the screen was replaced but the people that fixed it for me told me there may be some hard disk issues when a problem like this happens, they ran their own checks and found nothing and i was given my laptop back, then when i tried to use it, i found this problem. everything else works fine.
    i have shutdown and re-started my computer multiple times and i have also re-started finder multiple times, both having no effect
    i have also done a few other things to find that my apple.com.finder.plist and apple.com.sidebar.plist are both missing, and are not re-creating themselves, i have found no way to bring them back either.
    any help would be greatly appreciated, thanks

    there is an app called daisydisk on mac app store which will help you see exactly where the memory is focused and consumed try using that app and see which folders are using more memory

  • Adobe Acrobat 9 Pro do not open when printing a pdf document. Can anyone help?

    Adobe Acrobat 9 Pro do not open when printing a pdf document, instead I open it with Adobe Reader X to be able to print.
    Can anyone help?

    Hi Edna,
    It sounds like Adobe Reader X is your default PDF file handler. Launch Adobe Reader X.  Choose Edit > Preferences > General.  Click the 'Select Default PDF Handler' button at the bottom and choose Acrobat 9 from the drop-down menu.  Click Apply, then OK.
    Restart your computer.  Acrobat 9 should now be your default PDF file handler again.
    -David

  • ITunes does not open when ipod connected

    Since installing the 1.1 update, iTunes does not open when I connect my nano to the computer. Both computer and iTunes (when I manually open it) recognize the nano, so no big deal. Just wondering how to make iTunes automatically open.

    Sometimes the Preferences get corrupt - if you set them off and then back on that sometimes clears the problem.
    Regards,
    Colin R.

  • Itunes will not open when i click on the icon or when I plug in my device.

    Itunes will not open when I click, left or right, on the icon nor when I plug in a device.

    are you sure your i-tunes is installed proper cause the icon is just a shortcut to the program.You might have some missing files. If so you may need to uninstall it and reinstall a new one.

  • Microsoft word will not open. when i click it, it says microsoft word cannot be opened because of a problem. how can i fix this?

    my microsoft word will not open. when i click it, it says microsoft word cannot be opened because of a problem. then goes on saying, check with the developer to make sure microsoft word works with this verson of Mac OS X. i would like to find out how i can fix it myself if its possible. can anyone help?

    so i figured out i had to re put word into the microsoft office 2011 folder. but now when i click word it begins to start up but another window pops up saying, microsoft word has encountered a problem and needs to close. the details for it are:
    Microsoft Error Reporting log version: 2.0
    Error Signature:
    Exception: EXC_BAD_ACCESS
    Date/Time: 2012-11-13 05:31:43 -0800
    Application Name: Microsoft Word
    Application Bundle ID: com.microsoft.Word
    Application Signature: MSWD
    Application Version: 14.0.0.100825
    Crashed Module Name: MicrosoftOffice
    Crashed Module Version: 14.1.0.110310
    Crashed Module Offset: 0x002dbe3e
    Blame Module Name: MicrosoftOffice
    Blame Module Version: 14.1.0.110310
    Blame Module Offset: 0x002dbe3e
    Application LCID: 1033
    Extra app info: Reg=en Loc=0x0409
    Crashed thread: 0
    Thread 0 crashed:
    #  1  0x41328e3e in _MsoFLoadControl + 0x0000078E (MicrosoftOffice + 0x002dbe3e)
    #  2  0x4132c0a1 in _MsoFLoadControl + 0x000039F1 (MicrosoftOffice + 0x002df0a1)
    #  3  0x3e74b7c8 in __mh_execute_header + 0x000207C8 (Microsoft Word + 0x000207c8)
    #  4  0x432fe435 in _SendMessageA + 0x0000010E (WLMUser + 0x00034435)
    #  5  0x432d7baa in _SetFocus + 0x0000018F (WLMUser + 0x0000dbaa)
    #  6  0x432d6f4f in _DefWindowProcA + 0x00001EDA (WLMUser + 0x0000cf4f)
    #  7  0x432d7046 in _EnumWindows + 0x0000003F (WLMUser + 0x0000d046)
    #  8  0x432d73da in _EnumWindows + 0x000003D3 (WLMUser + 0x0000d3da)
    #  9  0x432d7630 in _EnumWindows + 0x00000629 (WLMUser + 0x0000d630)
    # 10  0x432d789c in _EnumWindows + 0x00000895 (WLMUser + 0x0000d89c)
    # 11  0x432d7a09 in _EnumWindows + 0x00000A02 (WLMUser + 0x0000da09)
    # 12  0x432e83f6 in _EndDeferWindowPos + 0x00000990 (WLMUser + 0x0001e3f6)
    # 13  0x432dcc3f in _DefFrameProcA + 0x00000DE3 (WLMUser + 0x00012c3f)
    # 14  0x43303a2a in _AfxShowWindow + 0x0000019A (WLMUser + 0x00039a2a)
    # 15  0x3e7535e6 in __mh_execute_header + 0x000285E6 (Microsoft Word + 0x000285e6)
    # 16  0x3e72e4a5 in __mh_execute_header + 0x000034A5 (Microsoft Word + 0x000034a5)
    # 17  0x4339844b in __WlmMain + 0x00000061 (WLMKernel + 0x0000744b)
    # 18  0x3e72dbf5 in __mh_execute_header + 0x00002BF5 (Microsoft Word + 0x00002bf5)
    # 19  0x3e72dba6 in __mh_execute_header + 0x00002BA6 (Microsoft Word + 0x00002ba6)
    X86 Thread State:
    eax: 0x00000000  ebx: 0x00256980  ecx: 0x00000018  edx:0x00000003
    edi: 0x00000068  esi: 0x002de238  ebp: 0xbfffbf18  esp:0xbfffbef0
      ss: 0x00000023  eip: 0x41328e3e   cs: 0x0000001b   ds:0x00000023
      es: 0x00000023   fs: 0x00000000   gs: 0x0000000f  eflags:0x00010246
    Thread 1:
    #  1  0x93178382 in ___kevent + 0x0000000A (libSystem.B.dylib + 0x00027382)
    #  2  0x93177f59 in __dispatch_queue_invoke + 0x000000A3 (libSystem.B.dylib + 0x00026f59)
    #  3  0x93177cfe in __dispatch_worker_thread2 + 0x000000F0 (libSystem.B.dylib + 0x00026cfe)
    #  4  0x93177781 in __pthread_wqthread + 0x00000186 (libSystem.B.dylib + 0x00026781)
    #  5  0x931775c6 in _start_wqthread + 0x0000001E (libSystem.B.dylib + 0x000265c6)
    X86 Thread State:
    eax: 0x0000016b  ebx: 0x931789d6  ecx: 0xb0080d5c  edx:0x93178382
    edi: 0xa03ee1ec  esi: 0xb0080ed8  ebp: 0xb0080ef8  esp:0xb0080d5c
      ss: 0x00000023  eip: 0x93178382   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000246
    Thread 2:
    #  1  0x93177412 in ___workq_kernreturn + 0x0000000A (libSystem.B.dylib + 0x00026412)
    #  2  0x931775c6 in _start_wqthread + 0x0000001E (libSystem.B.dylib + 0x000265c6)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x93177609  ecx: 0xb0102f6c  edx:0x93177412
    edi: 0x010001f8  esi: 0xb0103000  ebp: 0xb0102fc8  esp:0xb0102f6c
      ss: 0x00000023  eip: 0x93177412   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000286
    Thread 3:
    #  1  0x93151c0e in _mach_wait_until + 0x0000000A (libSystem.B.dylib + 0x00000c0e)
    #  2  0x931f1b50 in _sleep + 0x0000003F (libSystem.B.dylib + 0x000a0b50)
    #  3  0x40dd519a in _MerpCreateSession + 0x00000B3F (merp + 0x0000319a)
    #  4  0x40dd4866 in _MerpCreateSession + 0x0000020B (merp + 0x00002866)
    #  5  0x40dd47f1 in _MerpCreateSession + 0x00000196 (merp + 0x000027f1)
    #  6  0x40dd5d8e in _MerpCreateSession + 0x00001733 (merp + 0x00003d8e)
    #  7  0x9317f259 in __pthread_start + 0x00000159 (libSystem.B.dylib + 0x0002e259)
    #  8  0x9317f0de in _thread_start + 0x00000022 (libSystem.B.dylib + 0x0002e0de)
    X86 Thread State:
    eax: 0xffffffa6  ebx: 0x931d92e4  ecx: 0xb0184a4c  edx:0x93151c0e
    edi: 0x00000121  esi: 0x41978390  ebp: 0xb0184ab8  esp:0xb0184a4c
      ss: 0x00000023  eip: 0x93151c0e   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000206
    Thread 4:
    #  1  0x9317faa2 in ___semwait_signal + 0x0000000A (libSystem.B.dylib + 0x0002eaa2)
    #  2  0x92b625cc in +[NSThread sleepForTimeInterval:] + 0x0000007B (Foundation + 0x000a05cc)
    #  3  0x408e31a9 in _RegisterWindowForMouseMoveEvents + 0x000003EC (MicrosoftComponentPlugin + 0x0000c1a9)
    #  4  0x92ad84c4 in -[NSThread main] + 0x0000002D (Foundation + 0x000164c4)
    #  5  0x92ad8474 in ___NSThread__main__ + 0x000005DB (Foundation + 0x00016474)
    #  6  0x9317f259 in __pthread_start + 0x00000159 (libSystem.B.dylib + 0x0002e259)
    #  7  0x9317f0de in _thread_start + 0x00000022 (libSystem.B.dylib + 0x0002e0de)
    X86 Thread State:
    eax: 0x0000014e  ebx: 0x931ab916  ecx: 0xb0206ccc  edx:0x9317faa2
    edi: 0x00205770  esi: 0xb0206d38  ebp: 0xb0206d08  esp:0xb0206ccc
      ss: 0x00000023  eip: 0x9317faa2   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000246
    Thread 5:
    #  1  0x93177412 in ___workq_kernreturn + 0x0000000A (libSystem.B.dylib + 0x00026412)
    #  2  0x931775c6 in _start_wqthread + 0x0000001E (libSystem.B.dylib + 0x000265c6)
    X86 Thread State:
    eax: 0x00100170  ebx: 0x93177609  ecx: 0xb0288f6c  edx:0x93177412
    edi: 0x010001c0  esi: 0xb0289000  ebp: 0xb0288fc8  esp:0xb0288f6c
      ss: 0x00000023  eip: 0x93177412   cs: 0x0000000b   ds:0x00000023
      es: 0x00000023   fs: 0x00000023   gs: 0x0000000f  eflags:0x00000286
    Loaded modules:
    0: libTraditionalChineseConverter.dylib: /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    1: libSimplifiedChineseConverter.dylib: /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    2: Microsoft Word (14.0.0.100825 Reg=en Loc=0x0409): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/Microsoft Word
    3: mbukernel (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/mbukernel.framework/Versions/14/mbukern el
    4: MicrosoftSetupUI (14.1.0.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftSetupUI.framework/Versions/14/ MicrosoftSetupUI
    5: MicrosoftComponentPlugin (14.1.0.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftComponentPlugin.framework/Vers ions/14/MicrosoftComponentPlugin
    6: Netlib (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/Netlib.framework/Versions/14/Netlib
    7: MicrosoftOLE (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftOLE.framework/Versions/14/Micr osoftOLE
    8: MicrosoftOLEAutomation (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftOLEAutomation.framework/Versio ns/14/MicrosoftOLEAutomation
    9: merp (2.2.4.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/merp.framework/Versions/14/merp
    10: MSXML (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MSXML.framework/Versions/14/MSXML
    11: MicrosoftOffice (14.1.0.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftOffice.framework/Versions/14/M icrosoftOffice
    12: OfficeArt (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/OfficeArt.framework/Versions/14/OfficeA rt
    13: MicrosoftOleo (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftOleo.framework/Versions/14/Mic rosoftOleo
    14: MicrosoftMathFont (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftMathFont.framework/Versions/14 /MicrosoftMathFont
    15: MicrosoftChartPlugin (14.1.0.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftChartPlugin.framework/Versions /14/MicrosoftChartPlugin
    16: MicrosoftPTLS (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftPTLS.framework/Versions/14/Mic rosoftPTLS
    17: MsgrLibClient (8.0.0.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MsgrLibClient.framework/Versions/14/Msg rLibClient
    18: MBURibbon (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MBURibbon.framework/Versions/14/MBURibb on
    19: MViewLib (14.1.0.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MViewLib.framework/Versions/14/MViewLib
    20: WLMUser (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/WLMUser.framework/Versions/14/WLMUser
    21: WLMGraphicsDevice (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/WLMGraphicsDevice.framework/Versions/14 /WLMGraphicsDevice
    22: WLMKernel (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/WLMKernel.framework/Versions/14/WLMKern el
    23: Gfx (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/Gfx.framework/Versions/14/Gfx
    24: SmartArt (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/SmartArt.framework/Versions/14/SmartArt
    25: MicrosoftCloudServices (14.1.0.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftCloudServices.framework/Versio ns/14/MicrosoftCloudServices
    26: mbustrings (14.1.0.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/mbustrings.framework/Versions/14/mbustr ings
    27: mbulocale (14.1.0.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/mbulocale.framework/Versions/14/mbuloca le
    28: wlmstrings (14.1.0.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/wlmstrings.framework/Versions/14/wlmstr ings
    29: CocoaUI (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/CocoaUI.framework/Versions/14/CocoaUI
    30: MicrosoftOfficeDRM (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftOfficeDRM.framework/Versions/1 4/MicrosoftOfficeDRM
    31: ThreadPool (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/ThreadPool.framework/Versions/14/Thread Pool
    32: MicrosoftMenuLibrary (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/MicrosoftMenuLibrary.framework/Versions /14/MicrosoftMenuLibrary
    33: StdUrlMoniker (14.1.0.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/StdUrlMoniker.framework/Versions/14/Std UrlMoniker
    34: Uniscribe (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/Uniscribe.framework/Versions/14/Uniscri be
    35: mbuinstrument (14.1.0.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Microsoft Word.app/Contents/MacOS/../../../Office/mbuinstrument.framework/Versions/14/mbu instrument
    36: WinCrypto (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Versions/14/../../../WinCrypto.framework /Versions/14/WinCrypto
    37: mbupgx.dylib: /Applications/Microsoft Office 2011/Office/MicrosoftSetupUI.framework/Versions/14/../../Libraries/mbupgx.dylib
    38: libcrypto.0.9.7.dylib: /usr/lib/libcrypto.0.9.7.dylib
    39: mbunamedstrings (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/CocoaUI.framework/Versions/14/../../../mbunamedstrings.framework/Ve rsions/14/mbunamedstrings
    40: CocoaTooltipParser (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/CocoaUI.framework/Versions/14/../../../CocoaTooltipParser.framework /Versions/14/CocoaTooltipParser
    41: DocEx (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../DocEx.framework/Vers ions/14/DocEx
    42: WinHttp (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../WinHttp.framework/Ve rsions/14/WinHttp
    43: MicrosoftCredui (14.1.0.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../MicrosoftCredui.fram ework/Versions/14/MicrosoftCredui
    44: MicrosoftDDCS (14.1.0.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../MicrosoftDDCS.framew ork/Versions/14/MicrosoftDDCS
    45: WinAPIUI (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../WinAPIUI.framework/V ersions/14/WinAPIUI
    46: MicrosoftCSI (14.1.0.110310 Reg=en Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../MicrosoftCSI.framewo rk/Versions/14/MicrosoftCSI
    47: MetEx (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../MetEx.framework/Vers ions/14/MetEx
    48: MicrosoftFBA (14.1.0.110310 Reg=(null) Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftOffice.framework/Versions/14/../../../MicrosoftFBA.framewo rk/Versions/14/MicrosoftFBA
    49: XPG (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/DocEx.framework/Versions/14/../../../XPG.framework/Versions/14/XPG
    50: MicrosoftFS (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftCloudServices.framework/Versions/14/../../../MicrosoftFS.f ramework/Versions/14/MicrosoftFS
    51: MicrosoftWlmFile (14.1.0.110310 Reg=en-US Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftCSI.framework/Versions/14/../../../MicrosoftWlmFile.framew ork/Versions/14/MicrosoftWlmFile
    52: MicrosoftWebServices (14.1.0.110310 Reg=en-US Loc=0x0000): /Applications/Microsoft Office 2011/Office/MicrosoftCSI.framework/Versions/14/../../../MicrosoftWebServices.fr amework/Versions/14/MicrosoftWebServices
    53: Oimg (14.1.0.110310 Reg=English Loc=0x0000): /Applications/Microsoft Office 2011/Office/OfficeArt.framework/Versions/14/../../../Oimg.framework/Versions/14 /Oimg
    54: DisplayServices (290 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    55: AGL (AGL-3.0.12 Reg=English Loc=0x0000): /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    56: LaunchServices (362.3 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    57: SystemConfiguration (1.10.2 Reg=English Loc=0x0000): /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    58: ColorSync (4.6.8 Reg=English Loc=0x0000): /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    59: libGL.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    60: IOSurface (74.1 Reg=English Loc=0x0000): /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    61: DiskArbitration (2.3.1 Reg=English Loc=0x0000): /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    62: SecurityHI (36638 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    63: libvMisc.dylib (vecLib 3.6 Reg=English Loc=0x0000): /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    64: libGFXShared.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    65: DSObjCWrappers (134 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    66: CrashReporterSupport (258 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    67: Help (41.1 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    68: HIServices: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    69: libauto.dylib: /usr/lib/libauto.dylib
    70: ApplicationServices (38 Reg=English Loc=0x0000): /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    71: CoreFoundation (550.44 Reg=en_US Loc=0x0000): /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    72: QTKit (1791 Reg=English Loc=0x0000): /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    73: SecurityInterface (40418.0.1 Reg=English Loc=0x0000): /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    74: libRIP.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    75: AE (496.5 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    76: MonitorPanel (1.3.0 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    77: CoreGraphics: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    78: Print (237.1 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    79: libsqlite3.dylib: /usr/lib/libsqlite3.dylib
    80: libBLAS.dylib (vecLib 3.6 Reg=English Loc=0x0000): /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    81: CommonPanels (91 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    82: libType1Scaler.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    83: DataDetectorsCore (80.7 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    84: Foundation (751.63 Reg=en_US Loc=0x0000): /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    85: libCSync.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    86: libFontParser.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    87: AudioToolbox (1.6.7 Reg=English Loc=0x0000): /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    88: FamilyControls (2020 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    89: vecLib (vecLib 3.6 Reg=English Loc=0x0000): /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    90: CarbonSound (3.9.3 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    91: libSystem.B.dylib: /usr/lib/libSystem.B.dylib
    92: libRadiance.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    93: libsasl2.2.dylib: /usr/lib/libsasl2.2.dylib
    94: IOKit: /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    95: HIToolbox: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    96: LDAP (120.1 Reg=English Loc=0x0000): /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    97: CommerceCore (9.1 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    98: QD: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    99: libobjc.A.dylib: /usr/lib/libobjc.A.dylib
    100: libz.1.dylib: /usr/lib/libz.1.dylib
    101: CoreServices (44 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    102: ImageCapture (6.1 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    103: NavigationServices (182 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    104: VideoToolbox (484.60 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    105: libcrypto.0.9.8.dylib: /usr/lib/libcrypto.0.9.8.dylib
    106: libvDSP.dylib (vecLib 3.6 Reg=English Loc=0x0000): /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    107: libicucore.A.dylib: /usr/lib/libicucore.A.dylib
    108: vecLib (vecLib 3.6 Reg=English Loc=0x0000): /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    109: DesktopServicesPriv (1.5.11 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    110: OpenDirectory (10.6 Reg=English Loc=0x0000): /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    111: libxslt.1.dylib: /usr/lib/libxslt.1.dylib
    112: Metadata (507.15 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    113: QuickLook (327.7 Reg=English Loc=0x0000): /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    114: WebKit (6534.57.2 Reg=English Loc=0x0000): /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    115: libstdc++.6.dylib: /usr/lib/libstdc++.6.dylib
    116: DirectoryService (621.15 Reg=English Loc=0x0000): /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    117: MultitouchSupport (207.11 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    118: OpenCL (12.3.6 Reg=English Loc=0x0000): /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    119: libmathCommon.A.dylib: /usr/lib/system/libmathCommon.A.dylib
    120: libLAPACK.dylib (vecLib 3.6 Reg=English Loc=0x0000): /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    121: QuickLookUI (327.7 Reg=English Loc=0x0000): /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    122: NetFS (3.2.2 Reg=English Loc=0x0000): /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    123: libJPEG.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    124: liblangid.dylib: /usr/lib/liblangid.dylib
    125: Backup (1.2.2 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    126: OSServices (359.2 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    127: QuartzCore (227.37 Reg=English Loc=0x0000): /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    128: libbsm.0.dylib: /usr/lib/libbsm.0.dylib
    129: SearchKit (1.3.0 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    130: libTIFF.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    131: PasswordServer (6.1 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    132: QuartzComposer ({156.30} Reg=English Loc=0x0000): /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    133: SpeechRecognition (3.11.1 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    134: libGLImage.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    135: libTrueTypeScaler.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    136: libFontRegistry.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    137: DictionaryServices (1.1.2 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    138: LangAnalysis (1.6.6 Reg=English Loc=0x0000): /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    139: CoreMediaIOServices (1497 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    140: Kerberos (6.5.11 Reg=English Loc=0x0000): /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    141: libGLU.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    142: QuartzFilters (1.6.0 Reg=English Loc=0x0000): /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    143: libssl.0.9.8.dylib: /usr/lib/libssl.0.9.8.dylib
    144: HTMLRendering (1.1.4 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    145: CoreData (251 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    146: CoreVideo (45.6 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    147: CoreUI (114 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    148: RawCamera (608 Reg=English Loc=0x0000): /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    149: PDFKit (2.5.1 Reg=English Loc=0x0000): /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    150: TrustEvaluationAgent (1 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    151: Ink (107 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    152: libkxld.dylib: /usr/lib/system/libkxld.dylib
    153: OpenGL (1.6.14 Reg=English Loc=0x0000): /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    154: Accelerate (Accelerate 1.6 Reg=English Loc=0x0000): /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    155: AudioUnit (1.6.7 Reg=English Loc=0x0000): /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    156: JavaScriptCore (6534.57.3 Reg=English Loc=0x0000): /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    157: MeshKitIO (49.2 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    158: CarbonCore (861.39 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    159: libCoreVMClient.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    160: ImageCaptureCore (1.1 Reg=English Loc=0x0000): /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    161: libcups.2.dylib: /usr/lib/libcups.2.dylib
    162: CoreMedia (484.60 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    163: Security (55002 Reg=English Loc=0x0000): /System/Library/Frameworks/Security.framework/Versions/A/Security
    164: MeshKitRuntime (49.2 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    165: SecurityFoundation: /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    166: ImageKit (1.0 Reg=English Loc=0x0000): /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    167: libGIF.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    168: CFOpenDirectory (10.6 Reg=English Loc=0x0000): /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    169: MeshKit (49.2 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    170: WebCore (6534.57.2 Reg=English Loc=0x0000): /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    171: CFNetwork (454.12.4 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    172: SpeechSynthesis (3.10.35 Reg=English Loc=0x0000): /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    173: ImageIO (3.0.6 Reg=English Loc=0x0000): /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    174: libCGXType.A.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    175: AddressBook (883 Reg=English Loc=0x0000): /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    176: Quartz (1.5 Reg=English Loc=0x0000): /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    177: ATS: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    178: libPng.dylib: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    179: CorePDF (1.4 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    180: AppleVA (4.10.27 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    181: CoreAudio (3.2.6 Reg=English Loc=0x0000): /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    182: OpenScripting: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    183: Cocoa: /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    184: MediaToolbox (484.60 Reg=English Loc=0x0000): /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    185: libresolv.9.dylib: /usr/lib/libresolv.9.dylib
    186: QuickTime (1791 Reg=English Loc=0x0000): /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    187: libGLProgrammability.dylib: /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    188: vImage (4.1 Reg=English Loc=0x0000): /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    189: AppKit (1038.36 Reg=English Loc=0x0000): /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    190: PrintCore (312.7 Reg=English Loc=0x0000): /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    191: Carbon (152 Reg=English Loc=0x0000): /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    192: CoreText: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    193: libxml2.2.dylib: /usr/lib/libxml2.2.dylib
    194: libJapaneseConverter.dylib: /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    195: libKoreanConverter.dylib: /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    Operating System Information
    Operating System: Mac OS X 10.6.8 (Build 10K549)
    CPU: Intel Core Duo, Number: 4, Speed: 2147 MHz
    gestaltPhysicalRAMSizeInMegabytes err = 0, result = 4096 MB
    gestaltSystemVersion err = 0, result = 0x1068
    Screen: 1280 x 800, depth = 32, ltbr = 0, 0, 800, 1280
    Microsoft Application Information:
    Error Reporting UUID: 3F516802-AEA7-42A8-9F3B-93311230EF70
    Time from launch: 0 hours, 0 minutes, 0 seconds
    Total errors on this client: 11

  • My address book does not open when I click on the "To" bar in an email.

    I recently upgraded to Thunderbird 4.1.0. Since that time my address book does not open when I try to address an email from the "To" or other lines. I have to manually open the address book and cut and paste the address. How can I reconnect the address book to the email program?

    Thank you. You solved my problem. I appreciate it.

  • Firefox does not open when clicking on the icon, the firefox.exe process consumes 99 % of the CPU and my computer runs slowly.

    I have been a happy user of Firefox for many years. Around last April first I opened Firefox and was offered an update to v 4.42.0.0 which I accepted. Installation seemingly went well. I forget now exactly what happened but the result has been that ever since April 1 I haven’t been able to open the Firefox browser when clicking on the Firefox icon. My computer now was running very slowly. I tried to uninstall Firefox, but a popup told me I couldn’t because Firefox was in use. This confused me because I couldn’t see it being used. Only now I have found that on Task Manager processes that “firefox.exe” was consuming 99 % of the CPU. After removing firefox.exe by clicking End Process my computer ran better. I uninstalled Firefox I had on my computer and installed Firefox 5.0. Unfortunately I have the same problems: Firefox does not open when clicking on the icon, the firefox.exe process consumes 99 % of the CPU and my computer runs slowly.

    Born2die! Brilliant. I am a desktop clicker and never knew Firefox had a safe mode.
    Thank You!
    I was unable to start in safe mode initially. The second time I disabled all of the Add-Ons and she started up just fine. I enabled them one by one hoping to track down the culprit but the problem seems to have gone away.
    BTW I am running ver. 3.6.8 (in response to cor-el's earlier post) and
    Firefox is in the process of downloading 3.6.10 (which I am starting to think may have been what caused this whole problem to begin with)
    Incidentally, whats up with all of the Java Console Add Ons?
    I have:
    Java Console 6.0.11, Java Console 6.0.13, Java Console 6.0.15
    Java Console 6.0.17, Java Console 6.0.20, and Java Console 6.0.21
    What are they? Do I need them? Can I uninstall them? Is this due to using Open Office?
    Also, .NET Framework 0.0.0 Should I uninstall it?

  • NOT OPENING WHEN I CLICK PHOTO EDITOR

    Photoshop is not opening when i click the photo editor screen...it just loads and then acts like nothing ever happened...
    Why is this happening and how can i fix it...

    There is a separate window that opens up and says which photo library do you want iPhoto to use.  So I am not sure what to do. Terence I am not sure where the picture  folder is. sorry

  • My app store will not open. when i try to open it i get an error that reads "You can't open the application App Store because it may be damaged or incomplete". How can I fix this?

    my app store will not open. when i try to open it i get an error that reads "You can't open the application App Store because it may be damaged or incomplete". How can I fix this?

    I am having the exact same problem.  MacForums has been helping me, and I called Apple.  After trying everyone's suggestions, and Apple's, no success.
    My App Store app still says "incomplete or damaged."  There is even a circle with a line through it on the icon.  Apple said reinstall my Snow Leopard upgrade disc (not my original Leopard disc) and then run the Combo Update (like your suggestion).  Did not work.  I also updated the software from "Software Update".  Rebooted.
    I think this started after I replaced my hard drive with a SSD and moved the hard drive to where the DVD was.  I wonder if the person above who had the same problem also installed a SSD?
    Anyway, anymore ideas?  Even Apple is stumped.
    (In answer to the other post above, my Quicktime works fine.)
    Message was edited by: mrivmriv
    Just did some more reading.  I was going by the icon in the dock.  When I checked in Finder, there it was, fixed and brand new!!  Thanks, anyway.
    Message was edited by: mrivmriv

  • SmartView does not open when I click on File – Open in Smart View

    SmartView does not open when I click on File – Open in Smart View.Can one please help me to resolve this issue.

    Are you using IE or Firefox? Which version of Planning do you have?
    HTH-
    Jasmine.

  • U/tube videos open when using Safari but will not open when using Firefox.

    u/tube videos open fine when using Safari but will not open when using Firefox. With Firefox I get the unhighlighted Quicktime symbol with a question mark in the center. WHY?? Any help appreciated --- Toroya

    Hmmmm, strange you view YouTube in Safari & not FF. Which version of FF are you using?
    Try the following:
    Repair permissions & restart.
    Make sure you have the latest versions of Adobe Flash Player Software
    QuickTime Preferences > Advanced > MIME Stettings > Miscellaneous.
    Deactivate the "Flash Media" option.

Maybe you are looking for