Loosing focus when quiting

Hello,
Can someone help me with the following problem? How can I force a JTextField to loose it's focus when I am quiting the program by clicking the x-icon?
thanks
Stef

Hello.
Add a mouse listener to your x-icon and in the mouse released method add this block
component.requestFocus();
which component can be any swing component like Jframe.

Similar Messages

  • My windows keeps loosing focus when bluetooth goes active

    Hi, I have a problem with my bluetooth.
    When my bluetooth on my laptop goes active i.e. the "bluetooth B" in the bluetooth icon on the botton tray in Windows goes from white to green this problem accours. At that very moment, the current window I am working in goes inactive. If I am typing in a textbox for example and the bluetooth goes from "white to green", the textbox looses focus and I have to cklick it to resume my typing.
    How dow get rid of that problem and still have a reachable bluetooth device?
    Running on Windows XP Pro, laptop:
    Bluetooth Stack for Windows by Toshibe
    Version v4.42 (D)
    Bluetooth spec:
    Version 2.0, 1.2, 1.1
    Thanks!
    //Doman

    That could be the solution... but no luck..
    Now, I´m running with stack: v6.01.03(D)
    ...and the problem is still there.
    *More background:*
    I am using a SonyEricsson sync program, every morning I connect my mobile via this program. The program is set to autosync the first thing when it detecs the mobile via bluetooth. The laptop stays often in the it´s dock and when I leave it (with the mobile in my pocket) and come back, they find eachother again and the sync starts. This way I never need to start the sync by myself which I always forget otherwhise.
    The problem is that my computer sometimes checks if my mobile is still there (I suspect), and each time it starts to use the internal bluetooth device, the focus of current window I´m using is lost, this is of course very annoing when I´m writing something etc. This occurs regardless of the result of the search, ie regardless of it finds the phone or not.
    Is there any workaround without losing that my phone autoconnects with my computer and the sync starts?

  • JTabbedPane loosing focus when switching tabs

    When there are tiered JTabbedPanes and focus in one of the children and the tabbed is switched focus will go to the first component in the frame.
    Is there a work around to keep the focus at least on the jtabbedpane?
    Is this a know bug? anyone heard of this before?
    Googling: JTabbedPane focus didn't bring up anything helpful... is there something else I should be searching under?
    Here is an example:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.FocusEvent;
    import java.awt.event.FocusListener;
    public class TabPaneTest extends JFrame {
        public TabPaneTest() {
            JButton focusStealer = new JButton("Look at me!");
            focusStealer.addFocusListener(new FocusListener() {
                public void focusGained(FocusEvent e) {
                    System.out.println("I TOOK FOCUS! W00t!");
                public void focusLost(FocusEvent e) {
                    //To change body of implemented methods use File | Settings | File Templates.
            JTabbedPane tabbedPane = createTabbedPane(0);
            getContentPane().add(focusStealer, BorderLayout.NORTH);
            getContentPane().add(tabbedPane, BorderLayout.CENTER);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            setSize(300, 200);
            setLocation(400, 200);
            setVisible(true);
        private JTabbedPane createTabbedPane(int deep) {
            deep++;
            JTabbedPane tabs = new JTabbedPane();
            for (int i = 0; i < 4; i++) {
                if (deep < 4) {
                    tabs.add(i + ":" + deep + " - Focus", createTabbedPane(deep));
                } else {
                    tabs.add(i + ":" + deep + " - Focus", new JTextField());
            return tabs;
        public static void main(String[] args) {
            new TabPaneTest();
    }

    When there are tiered JTabbedPanes and focus in one of the children and the tabbed is switched focus will go to the first component in the frame.
    Is there a work around to keep the focus at least on the jtabbedpane?
    Is this a know bug? anyone heard of this before?
    Googling: JTabbedPane focus didn't bring up anything helpful... is there something else I should be searching under?
    Here is an example:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.FocusEvent;
    import java.awt.event.FocusListener;
    public class TabPaneTest extends JFrame {
        public TabPaneTest() {
            JButton focusStealer = new JButton("Look at me!");
            focusStealer.addFocusListener(new FocusListener() {
                public void focusGained(FocusEvent e) {
                    System.out.println("I TOOK FOCUS! W00t!");
                public void focusLost(FocusEvent e) {
                    //To change body of implemented methods use File | Settings | File Templates.
            JTabbedPane tabbedPane = createTabbedPane(0);
            getContentPane().add(focusStealer, BorderLayout.NORTH);
            getContentPane().add(tabbedPane, BorderLayout.CENTER);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            setSize(300, 200);
            setLocation(400, 200);
            setVisible(true);
        private JTabbedPane createTabbedPane(int deep) {
            deep++;
            JTabbedPane tabs = new JTabbedPane();
            for (int i = 0; i < 4; i++) {
                if (deep < 4) {
                    tabs.add(i + ":" + deep + " - Focus", createTabbedPane(deep));
                } else {
                    tabs.add(i + ":" + deep + " - Focus", new JTextField());
            return tabs;
        public static void main(String[] args) {
            new TabPaneTest();
    }

  • Indesign CS5.5 hang on loss of focus when opening files

    I know there's going to be no quick fix but I'm going to throw this out. InDesign CS5.5 / 7.5.2 running on WindowsXP SP3 seems to hang when the program looses focus when a file is opened. The program will ocassionally lose focus if you click on the "update" button or if you select another application/window. The result is that the file will open but InDesign does not allow any actions. Just a "ding" when you click anywhere.
    Besides the obvious "don't touch your computer", any fixes/ideas? Hang on update is really annoying, especially if you don't touch anything except the update button.

    Hello all, sorry to bump such an old thread but this is the most similar topic I've come across to a problem some of us here are also having. I think the hidden alert is simply the update links progress bar, after playing with my monitors a bit:
    but even with it active on the main monitor, the progress bar is stuck and cancel does nothing.
    I have a theory that it is to do with linking to EPS files... but nothing to back that up.
    This is InDesign CS5 and Win7
    edit: I'm canvassing the other users here to see if it might be that file specifically.

  • How to force a jtable to loose focus

    hi all
    i've got a jTextArea and a Jtable, and i want my jTable to loose focus when my JTextArea gains it
    i've the metod jTextAreaFocusGained(); what shall i write inside it to make the table loose focus?
    thanx
    sandro

    Hi,
    I guess, there is a missunderstanding in that, what you want to do and that, what you say, you want.
    The focus is a unique thing - only one component can have the focus at one time - so, when your textfield has gained focus, the component that formerly has had the focus, lost it already - so, there is nothing else to do.
    I guess, you want another thing, perhaps to clear the selection of the JTable or something like this.
    greetings Marsian

  • Closing when loosing focus

    Hi, how should I do to close a JFrame when it looses focus? In my app, there are times when i have more then 2 JFrames open at the same time, and I need a way to close one of them whenever it looses focus.
    Hope you can help me.

    JFrame frame1 = new JFrame("Frame1");
    frame.addFocusListener(this);
    void focusGained(FocusEvent e)
    void focusLost(FocusEvent e)
    dispose();

  • How a custom control is advised it gains or looses focus?

    Hey, at least I have a question to ask, instead of answering them... :-)
    Actually, I already asked it in another thread, in one of my answers: [onMouseClicked Event Is Failing To Fire|http://forums.sun.com/thread.jspa?threadID=5391008] but I fear it is lost in a rather lengthly message, so I ask it in its own thread, because I was to bring the attention of knowledgeable people (hello Sun people! :-D).
    The question is simple: In a custom control in JavaFX 1.2, with skin and behavior, how a control is advised when it gains or looses focus?
    The purpose is to let the skin to change the look of the component upon these events, like it is done for standard controls (eg. putting a border around the focused control).
    If the control is clicked, you know (unless it is disabled) that it will have the focus. But I see no way to see the lost of focus, nor when we gain (or loose) it with Tab/Shift+Tab (if it has focusTraversable to true).
    I looked for onFocus() and onBlur() events (or similar), but found nothing. No mixin, nothing related in javafx.scene.input.TextInput and friends, etc.
    I explored the Web but since 1.2 is still new, I found not much information. Only a fragment of source code in [Re: Further location optimizations|http://markmail.org/message/gsevtlkeq45rrdun] where I see scene.getFocusOwner() but this one isn't easily usable because it is package protected (and it is not an event, anyway).
    A possible solution would be to have a timer to inspect the state focused of the nodes, but it is so kludgy I didn't even tried to implement it!
    I hope I just missed the information... If there is no easy/official/working way in 1.2, I hope this will be corrected for next version!

    That's a very good remark, handling of focus highlight shouldn't be done at control (model)'s level. I hesitated to put it in behavior, but it feels more natural in the skin, so I did as you suggested.
    you'll need an interface, and JavaFX does not do thatYou have mixins. But I didn't used them here.
    focused variable never is set to trueHave you included the
    public override var focusTraversable = true;
    line?
    To support multiple skins, my control becomes:
    public class StyledControl extends Control
      // Data related to the control (the model)
      public var count: Integer;
      public override var focusTraversable = true;
      init
        if (skin == null)  // Not defined in instance
          // Define a default styler
          skin = ControlStyler {}
      package function Incr(): Void
        if (count < 9)
          count++;
    }quite bare bones (I intendedly keep the model simple).
    Note I still define a default skin in case user doesn't provide it: they shouldn't care about this detail unless they want to change it.
    I defined an abstract default skin, implementing most variables (particularly the public ones that can be styled) and the focus change:
    public abstract class DefaultControlStyler extends Skin
      //-- Skinable properties
      public var size: Number = 20;
      public var fill: Color = Color.GRAY;
      public var textFill: Color = Color.BLACK;
      public var focusFill: Color = Color.BLUE;
      package var mainPart: Node; // Decorations (id, focus) are kept out of layout
      package var focusHighlight: Node;
      package var idDisplay: Text;
      package var valueDisplay: Text;
      init
        behavior = ControlBehavior { info: bind control.id }
        node = Group
          //-- Behavior: call controller for actions
          onMouseReleased: function (evt: MouseEvent): Void
            (behavior as ControlBehavior).HandleClick(evt);
      postinit
        // Once defined by the sub-class, insert into the node
        insert [ mainPart, idDisplay, valueDisplay ] into (node as Group).content;
      public abstract function ShowIncrement(): Void;
      var hasFocus = bind control.focused on replace
        if (hasFocus)
          ShowFocus();
        else
          HideFocus();
      // Default handling of  focus display, can be overriden if needed
      public function ShowFocus(): Void
        insert focusHighlight into (node as Group).content;
      public function HideFocus(): Void
        delete focusHighlight from (node as Group).content;
      public override function contains(localX: Number, localY: Number): Boolean
        return mainPart.contains(localX, localY);
      public override function intersects(localX: Number, localY: Number,
          localWidth: Number, localHeight: Number): Boolean
        return mainPart.intersects(localX, localY, localWidth, localHeight);
    }and the concrete skins implement the mainPart, idDisplay, valueDisplay, focusHighlight nodes, override ShowIncrement with an animation, override getPrefWidth and getPrefHeight to set to mainPart size and might override ShowFocus or HideFocus (if we want it behind mainPart for example).
    The behavior is:
    public class ControlBehavior extends Behavior
      public var info: String; // Only for debug information...
      // Convenience vars, to avoid casting each time
      var control = bind skin.control as StyledControl;
      var csSkin = bind skin as DefaultControlStyler;
      public override function callActionForEvent(evt: KeyEvent)
        println("{info}{control.count}: KeyEvent: {evt}");
        if (evt.char == '+')
          Incr();
      package function HandleClick(evt: MouseEvent): Void
        control.requestFocus();
        Incr();
      function Incr(): Void
        control.Incr();
        println("{info}: Ouch! -> {control.count}");
        csSkin.ShowIncrement();
    }and knows only the abstract default skin (to apply feedback of user input to skin).
    I use it as follow:
    Stage
      title: "Test Styling Controls"
      scene: Scene
        width:  500
        height: 500
        content:
          HBox
            translateX: 50
            translateY: 100
            spacing: 50
            content:
              StyledControl { id: "Bar" },
              StyledControl { /* No id */ layoutInfo: LayoutInfo { vpos: VPos.BOTTOM } },
              StyledControl { id: "Foo" },
              StyledControl { id: "Gah" },
              StyledControl { id: "Bu", skin: AltCtrlStyler {} },
        stylesheets: "{__DIR__}../controlStyle.css"
    }BTW, I tried layoutY: 50 in place of the layoutInfo definition, but the control remained at default place. Am I reading incorrectly the ref. or is this a bug?

  • CS4 Exporting media Loosing Focus

    Hi
    When exporting media to the media encoder I am finding that I am loosing focus of the rendered file in flash.
    the original size of footage is 1920 X 1080 I have croped this to an area of the footage that I require 720 x 640 and changed the out put size to the same.
    when this is rendered out the image is blury.
    how can I change the settings to be in focus as the original footage is in focus.
    Thanks
    Rodney

    Hi Hunt
    the flash settings that I am using are
    using flash 8 and higher
    I am encoding using the alpha channel due to the footage is keyed out
    the frame rate is 1200
    I have resized to 640 x 720 from 1920 x 1080 and also croped the footage as well to the same size
    Thanks
    Rodney

  • Firefox looses focus - titlebar at top goes grey - if a new website is visited.

    If, say, the URL of a web site is put in the address bar and Firefox opens it in a new tab in the normal way then the firefox window looses focus, the window's bar at the top greys out. I have to click the page to restore focus.
    This has a much greater irritation value than it may sound.
    Same thing with clicking a website from, say, google.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    *Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Safari looses focus randomly

    when i use safari 7.0.4 in mavericks 10.9.3 on rMBP the window turns light gray (loosing focus) at random times. i click on the window and it comes right back up. i have no extensions turned on and removed the ones i did have as a troubleshooting step, did not fix issue. is anyone else having this issue? this only happens in safari, all other applications are not effected by this. this is an annoying issue but liveable. hopefully it will be fixed one day.

    Reset Safari.
    Click Safari in the menu bar.
    From the drop down select "Reset Safari".
    Click "Reset".
    Empty Caches.
    Safari > Preference > Advanced
    Checkmark the box for "Show Develop menu in menu bar".
    "Develop" menu will appear in the Safari menu bar.
    Click Develop and select "Empty Caches" from the dropdown.

  • ADF AutoSubmit True column Loosing Focus after hitting Tab

    Hi,
    I am on 11.1.2.2.0. I have implemented af:table component and inside table on few columns I have autoSubmit="true" immediate="true" . After entering values into those columns when I hit Tab (To go to next field in table) , it goes to next field and looses focus. Is there any work around or fix to overcome this issue ?
    Thanks and Regards,
    Jit

    Hi,
    Thanks for the links. My requirement is to set focus inside af:table. Inside table I have say 5 fields.
    3rd Field is LOV and 4th fields is Text. After entering LOV info in Field3 focus should go to field4(which is inputText).
    I tried
    Frank's Blog
    https://blogs.oracle.com/jdevotnharvest/entry/how_to_programmatically_set_focus
    AMIS Blog
    http://technology.amis.nl/2008/01/04/adf-11g-rich-faces-focus-on-field-after-button-press-or-ppr-including-javascript-in-ppr-response-and-clientlisteners-client-side-programming-in-adf-faces-rich-client-components-part-2/
    This works for ADF Form entry. When I tried implement this in table the field id(eg it4) is not picked.
    I found other blog for where it is mentioned field id dwill be different in case of Table.
    http://www.bartkummel.net/2009/11/oracle-adf-set-focus-to-input-field-in-data-table/#respond
    Do you have any idea how to get Table id or help in building this field id in Table ?
    Thanks and Regards,
    Jit

  • When quitting safari I used to get a dialogue box with checkboxes, useful if I accidentally pressed command q, but now option seems to have disappeared. Any ideas why or how to retrieve it please?

    I used to get a dialogue box when quitting safari, which was useful if accidentally hitting 'command q', but has now disappeared leading to lost work etc.
    Any idea why, or how I can get this useful option back please?

    Now resolved, after chatting to Apple online support, who said they'd not heard of this happening - solved it quickly enough though.
    Anyone interested or suffering similar I was told to remove website data from privacy tab in Safari preferences. And yes, I'd love to know how it worked too.....
    Great thanks to Apple.

  • Window looses focus seemingly at random

    This is very frustrating.  Whenever I am working in any application, the active window auto-magically looses focus.  I don't have a lot running by way of background processes and the computer is fairly new and running all latest software.  I can't figure out why.  Hoping someone from the Apple community can help out...
    Here is detailed information about my MacBook Pro:
    EtreCheck version: 1.9.11 (43) - report generated May 30, 2014 at 9:24:49 AM CDT
    Hardware Information:
              MacBook Pro (15-inch, Mid 2012)
              MacBook Pro - model: MacBookPro9,1
              1 2.3 GHz Intel Core i7 CPU: 4 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: (null)
              NVIDIA GeForce GT 650M - VRAM: 512 MB
    System Software:
              OS X 10.9.3 (13D65) - Uptime: 0 days 17:58:47
    Disk Information:
              Crucial_CT240M500SSD1 disk0 : (240.06 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        disk0s2 (disk0s2) <not mounted>: 239.2 GB
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              MATSHITADVD-R   UJ-8A8 
    USB Information:
              Logitech USB Receiver
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Computer, Inc. IR Receiver
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Configuration files:
              /etc/sysctl.conf - Exists
    Gatekeeper:
              Anywhere
    Kernel Extensions:
              [kext loaded] com.Logitech.Control Center.HID Driver (3.9.1 - SDK 10.8) Support
              [kext loaded] com.Logitech.Unifying.HID Driver (1.3.0 - SDK 10.6) Support
              [kext loaded] com.epson.driver.EPSONProjectorAudio (1.30 - SDK 10.4) Support
              [kext loaded] com.pgp.iokit.PGPdiskDriver (10 - SDK 10.8) Support
              [kext loaded] com.pgp.kext.PGPnke (1.1.3 - SDK 10.8) Support
              [kext loaded] com.plantronics.driver.PlantronicsDriverShield (4.3 - SDK 10.8) Support
              [not loaded] com.symantec.kext.SymAPComm (12.2f1 - SDK 10.6) Support
              [kext loaded] com.symantec.kext.internetSecurity (5.2f1 - SDK 10.6) Support
              [kext loaded] com.symantec.kext.ips (3.5f1 - SDK 10.6) Support
              [kext loaded] com.symantec.kext.ndcengine (1.0f1 - SDK 10.6) Support
    Startup Items:
              ciscod: Path: /System/Library/StartupItems/ciscod
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.barebones.authd.plist Support
              [running] com.cisco.anyconnect.vpnagentd.plist Support
              [loaded] com.google.keystone.daemon.plist Support
              [running] com.manageengine.desktopcentral.dcagentservice.plist Support
              [loaded] com.manageengine.desktopcentral.dcagentupgrader.plist Support
              [loaded] com.microsoft.office.licensing.helper.plist Support
              [loaded] com.oracle.java.Helper-Tool.plist Support
              [loaded] com.oracle.java.JavaUpdateHelper.plist Support
              [loaded] com.pgp.framework.PGPwde.plist Support
              [running] com.pgp.wde.pgpwded.plist Support
              [loaded] com.symantec.liveupdate.daemon.ondemand.plist Support
              [loaded] com.symantec.liveupdate.daemon.plist Support
              [not loaded] com.symantec.sep.migratesettings.plist Support
              [running] com.symantec.sharedsettings.plist Support
              [running] com.symantec.symdaemon.plist Support
              [not loaded] com.teamviewer.teamviewer_service.plist Support
              [loaded] com.tunnelbear.mac.tbeard.plist Support
              [loaded] com.wuala.WualaFS.KextLoaderHelper.plist Support
              [loaded] org.macosforge.xquartz.privileged_startx.plist Support
    Launch Agents:
              [loaded] com.cisco.anyconnect.gui.plist Support
              [loaded] com.google.keystone.agent.plist Support
              [running] com.Logitech.Control Center.Daemon.plist Support
              [not loaded] com.maintain.PurgeInactiveMemory.plist Support
              [not loaded] com.maintain.Restart.plist Support
              [not loaded] com.maintain.ShutDown.plist Support
              [running] com.maintain.SystemEvents.plist Support
              [loaded] com.oracle.java.Java-Updater.plist Support
              [running] com.pgp.pgpengine.plist Support
              [running] com.symantec.uiagent.application.plist Support
              [not loaded] com.teamviewer.teamviewer.plist Support
              [not loaded] com.teamviewer.teamviewer_desktop.plist Support
              [running] jp.co.canon.SELPHYCP.BG.plist Support
              [failed] org.gpgtools.gpgmail.enable-bundles.plist Support
              [loaded] org.macosforge.xquartz.startx.plist Support
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist Support
              [loaded] com.citrixonline.GoToMeeting.G2MUpdate.plist Support
              [loaded] com.valvesoftware.steamclean.plist Support
    User Login Items:
              UNKNOWN
              Plantronics
              iTunesHelper
              Quicksilver
              Dropbox
              aText
              Box Sync
    Internet Plug-ins:
              JavaAppletPlugin: Version: Java 7 Update 55 Check version
              nplastpass: Version: 2.5.5 Support
              Default Browser: Version: 537 - SDK 10.9
              F5 SSL VPN Plugin: Version: 7080.2013.0319.1 Support
              AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 Support
              FlashPlayer-10.6: Version: 13.0.0.214 - SDK 10.6 Support
              Silverlight: Version: 5.1.30317.0 - SDK 10.6 Support
              Flash Player: Version: 13.0.0.214 - SDK 10.6 Support
              QuickTime Plugin: Version: 7.7.3
              SharePointBrowserPlugin: Version: 14.4.2 - SDK 10.6 Support
              AdobePDFViewer: Version: 11.0.07 - SDK 10.6 Support
              MeetingJoinPlugin: Version: (null) - SDK 10.6 Support
    Safari Extensions:
              LastPass: Version: 3.1.21
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              WebEx64: Version: 1.0 - SDK 10.6 Support
              CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 Support
              f5 sam inspection host plugin: Version: 7060.2013.0312.1 Support
              Google Earth Web Plug-in: Version: 7.1 Support
    3rd Party Preference Panes:
              Flash Player  Support
              Java  Support
              Logitech Control Center  Support
              Plantronics  Support
              Symantec QuickMenu  Support
    Time Machine:
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
              Destinations:
                        Time Machine [Local] (Last used)
                        Total size: 1 
                        Total number of backups: 16
                        Oldest backup: 2013-10-23 15:56:24 +0000
                        Last backup: 2014-05-27 20:27:27 +0000
                        Size of backup disk: Excellent
                                  Backup size 1  > (Disk size 0 B X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   3%          WindowServer
                   1%          Box Sync Monitor
                   1%          Box Sync
                   1%          fontd
                   0%          SystemUIServer
    Top Processes by Memory:
              246 MB          WindowServer
              197 MB          mds_stores
              169 MB          Airmail
              115 MB          Microsoft Outlook
              98 MB          Safari
    Virtual Memory Information:
              3.56 GB          Free RAM
              2.49 GB          Active RAM
              515 MB          Inactive RAM
              982 MB          Wired RAM
              1.74 GB          Page-ins
              40 KB          Page-outs

    ... I don't have a lot running by way of background processes
    There are many background processes running on that Mac. The following will determine its peformance without several that are likely to be causing the problem.
    Please determine if the problems also occur in "Safe Mode":
    Safe Mode or "Safe Boot" is a troubleshooting mode that bypasses all third party system extensions and loads only required system components. Read about it: Starting up in Safe Mode
    You must disable FileVault before you can start your Mac in Safe Mode.
    Starting your Mac in Safe Mode will take longer than usual, graphics will not render smoothly, audio is disabled on some Macs, and some programs (iTunes for example) may not work at all.
    Merely starting your Mac in Safe Mode is not intended to resolve the problem, it's to observe its performance without certain additional components.
    To end Safe Mode restart your Mac normally. Shutdown will take longer as well.

  • Media Encoder CS6 always crashes when quitting

    I'm running Media Encoder  CS6 (6.0.1.31) and it seems to open and a run fine but it always crashes when quitting the app and prompts to send a report.
    The installer was created using AAMEE and I need to deploy this to all of our users so unfortunately a simple suggestion of "uninstall and reinstall" won't work for us.  I need a solution that will work for the network deployed version we're using.
    Thanks
    Process:         Adobe Media Encoder CS6 [63329]
    Path:            /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/MacOS/Adobe Media Encoder CS6
    Identifier:      com.adobe.ame.application
    Version:         6.0.1 (6.0.1.31)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [614]
    Date/Time:       2012-08-10 13:15:23.660 -0700
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          940751 sec
    Crashes Since Last Report:           21
    Per-App Interval Since Last Report:  442 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      D9A9318A-8CB0-44A9-842F-B0CADAD966FC
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff80a940b6 __kill + 10
    1   libSystem.B.dylib                       0x00007fff80b349f6 abort + 83
    2   libstdc++.6.dylib                       0x00007fff8886d5d2 __tcf_0 + 0
    3   libobjc.A.dylib                         0x00007fff83a60b4d _objc_terminate + 120
    4   libstdc++.6.dylib                       0x00007fff8886bae1 __cxxabiv1::__terminate(void (*)()) + 11
    5   libstdc++.6.dylib                       0x00007fff8886bb16 __cxxabiv1::__unexpected(void (*)()) + 0
    6   libstdc++.6.dylib                       0x00007fff8886bb1c __cxxabiv1::__unexpected(void (*)()) + 6
    7   libstdc++.6.dylib                       0x00007fff8886b554 __cxa_call_unexpected + 65
    8   ...adobe.AMEFrontend.framework          0x00000001051d7580 AME::Frontend::AMEFrontendMain::Release() + 0
    9   ...adobe.AMEFrontend.framework          0x00000001051d40e5 AME::Frontend::TerminateAMEFrontend() + 37
    10  com.adobe.ame.application               0x00000001000239db AME::RunTheApp(exo::app::AppInitArgs&, std::vector<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> >, std::allocator<std::basic_string<unsigned short, std::char_traits<unsigned short>, dvacore::utility::SmallBlockAllocator::STLAllocator<unsigned short> > > >&) + 3675
    11  com.adobe.ame.application               0x0000000100049d56 main + 358
    12  com.adobe.ame.application               0x000000010001791c start + 52
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff80a5ec0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff80a60add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff80a607b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff80a602de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff80a5fc08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff80a5faa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff80a80a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80a84881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff81e85d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff81df4ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff81deeefb MPWaitOnQueue + 215
    5   ...obe.ASLFoundation.framework          0x00000001006301f0 ASL::(anonymous namespace)::TaskProc(void*) + 160
    6   ...ple.CoreServices.CarbonCore          0x00007fff81dc70d1 PrivateMPEntryPoint + 63
    7   libSystem.B.dylib                       0x00007fff80a7efd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff80a7ee89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib                       0x00007fff80a80a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80a84881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff81e85d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff81df4ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff81deeefb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000100263c04 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x0000000100260f03 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x000000010025e5f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 163
    8   ...obe.boost_threads.framework          0x0000000100194ace thread_proxy + 158
    9   libSystem.B.dylib                       0x00007fff80a7efd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff80a7ee89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff80a80a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80a84881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff81e85d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff81df4ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff81deeefb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000100263c04 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x0000000100260f03 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x000000010025e5f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 163
    8   ...obe.boost_threads.framework          0x0000000100194ace thread_proxy + 158
    9   libSystem.B.dylib                       0x00007fff80a7efd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff80a7ee89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff80a5ec0a kevent + 10
    1   ...dobe.dvatransport.framework          0x000000010080bb12 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 240
    2   ...dobe.dvatransport.framework          0x0000000100815cda boost::asio::detail::task_io_service::do_one(boost::asio::detail::scoped_lock<boost::asio ::detail::posix_mutex>&, boost::asio::detail::task_io_service::idle_thread_info*) + 512
    3   ...dobe.dvatransport.framework          0x0000000100816067 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 291
    4   ...dobe.dvatransport.framework          0x0000000100802bbd SkyConnectionEnv::MainLoop() + 129
    5   ...dobe.dvatransport.framework          0x0000000100802c3b SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    6   ...obe.boost_threads.framework          0x0000000100194ace thread_proxy + 158
    7   libSystem.B.dylib                       0x00007fff80a7efd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff80a7ee89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff80a80a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80a84881 _pthread_cond_wait + 1286
    2   ...dobe.dvatransport.framework          0x0000000100815c4b boost::asio::detail::task_io_service::do_one(boost::asio::detail::scoped_lock<boost::asio ::detail::posix_mutex>&, boost::asio::detail::task_io_service::idle_thread_info*) + 369
    3   ...dobe.dvatransport.framework          0x0000000100816067 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 291
    4   ...dobe.dvatransport.framework          0x000000010080382a boost::asio::detail::posix_thread::func<boost::asio::detail::resolver_service_base::work_ io_service_runner>::run() + 42
    5   ...dobe.dvatransport.framework          0x0000000100806833 boost_asio_detail_posix_thread_function + 19
    6   libSystem.B.dylib                       0x00007fff80a7efd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff80a7ee89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                       0x00007fff80a80a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80a84881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff81e85d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff81df4ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff81deeefb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000100263c04 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x0000000100260f03 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x000000010025e5f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 163
    8   ...obe.boost_threads.framework          0x0000000100194ace thread_proxy + 158
    9   libSystem.B.dylib                       0x00007fff80a7efd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff80a7ee89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff80a80a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80a84881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff81e85d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff81df4ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff81deeefb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000100263c04 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x0000000100260f03 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x000000010025e5f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 163
    8   ...obe.boost_threads.framework          0x0000000100194ace thread_proxy + 158
    9   libSystem.B.dylib                       0x00007fff80a7efd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff80a7ee89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff80a80a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80a84881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff81e85d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff81df4ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff81deeefb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000100263c04 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x0000000100260f03 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x000000010025e5f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 163
    8   ...obe.boost_threads.framework          0x0000000100194ace thread_proxy + 158
    9   libSystem.B.dylib                       0x00007fff80a7efd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff80a7ee89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff80a80a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80a84881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff81e85d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff81df4ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff81deeefb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000100263c04 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x0000000100260f03 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x000000010025e5f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 163
    8   ...obe.boost_threads.framework          0x0000000100194ace thread_proxy + 158
    9   libSystem.B.dylib                       0x00007fff80a7efd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff80a7ee89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff80a80a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80a84881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff81e85d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff81df4ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff81deeefb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000100263c04 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x0000000100260f03 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x000000010025e5f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 163
    8   ...obe.boost_threads.framework          0x0000000100194ace thread_proxy + 158
    9   libSystem.B.dylib                       0x00007fff80a7efd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff80a7ee89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                       0x00007fff80a80a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80a808f9 nanosleep + 148
    2   ...adobe.ScriptLayer.framework          0x0000000104c3a14b ScObjects::Thread::sleep(unsigned int) + 59
    3   ...adobe.ScriptLayer.framework          0x0000000104c27749 ScObjects::BridgeTalkThread::run() + 169
    4   ...adobe.ScriptLayer.framework          0x0000000104c3a496 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib                       0x00007fff80a7efd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff80a7ee89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                       0x00007fff80a80a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff80a84881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore          0x00007fff81e85d87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore          0x00007fff81df4ff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore          0x00007fff81deeefb MPWaitOnQueue + 215
    5   com.adobe.dvacore.framework             0x0000000100263c04 dvacore::threads::ThreadSafeDelayQueue::PopWithTimeout(std::auto_ptr<dvacore::threads::Al locatedFunctionT<boost::function<void ()()> > >&, int) + 200
    6   com.adobe.dvacore.framework             0x0000000100260f03 dvacore::threads::(anonymous namespace)::ThreadedWorkQueue::WorkerMain(boost::shared_ptr<dvacore::threads::ThreadSafeD elayQueue> const&, boost::shared_ptr<dvacore::threads::Gate> const&) + 115
    7   com.adobe.dvacore.framework             0x000000010025e5f3 dvacore::threads::(anonymous namespace)::LaunchThread(std::string const&, boost::function0<void> const&, dvacore::threads::ThreadPriority, boost::function<void ()()> const&, boost::function<void ()()> const&) + 163
    8   ...obe.boost_threads.framework          0x0000000100194ace thread_proxy + 158
    9   libSystem.B.dylib                       0x00007fff80a7efd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff80a7ee89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                       0x00007fff80a5ec0a kevent + 10
    1   ...dobe.dvatransport.framework          0x000000010080bb12 boost::asio::detail::kqueue_reactor::run(bool, boost::asio::detail::op_queue<boost::asio::detail::task_io_service_operation>&) + 240
    2   ...dobe.dvatransport.framework          0x0000000100815cda boost::asio::detail::task_io_service::do_one(boost::asio::detail::scoped_lock<boost::asio ::detail::posix_mutex>&, boost::asio::detail::task_io_service::idle_thread_info*) + 512
    3   ...dobe.dvatransport.framework          0x0000000100816067 boost::asio::detail::task_io_service::run(boost::system::error_code&) + 291
    4   ...dobe.dvatransport.framework          0x0000000100802bbd SkyConnectionEnv::MainLoop() + 129
    5   ...dobe.dvatransport.framework          0x0000000100802c3b SkyConnectionEnv::StaticThreadFunc(SkyConnectionEnv*) + 9
    6   ...obe.boost_threads.framework          0x0000000100194ace thread_proxy + 158
    7   libSystem.B.dylib                       0x00007fff80a7efd6 _pthread_start + 331
    8   libSystem.B.dylib                       0x00007fff80a7ee89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                       0x00007fff80a5fa2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff80a5fe3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff80a5faa5 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff700352f8  rcx: 0x00007fff5fbff298  rdx: 0x0000000000000000
      rdi: 0x000000000000f761  rsi: 0x0000000000000006  rbp: 0x00007fff5fbff2b0  rsp: 0x00007fff5fbff298
       r8: 0x00007fff70038a60   r9: 0x000000010b174b30  r10: 0x00007fff80a900fa  r11: 0x0000000000000206
      r12: 0x00000001002f1520  r13: 0x000000010b17ecc0  r14: 0x00007fff83a60ad5  r15: 0x0000000107b62e10
      rip: 0x00007fff80a940b6  rfl: 0x0000000000000206  cr2: 0x0000000100232d94
    Binary Images:
           0x100000000 -        0x1000acfff +com.adobe.ame.application 6.0.1 (6.0.1.31) <144FDE11-9F9D-EC5E-8E83-A5128F62CAB7> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/MacOS/Adobe Media Encoder CS6
           0x100171000 -        0x100178fff +com.adobe.boost_date_time.framework 6.0.1 (6.0.1.0) <5F8E84B7-FD9E-0300-BC48-C367144CA4ED> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x100193000 -        0x1001a2fff +com.adobe.boost_threads.framework 6.0.1 (6.0.1.0) <CDEED27E-3007-8823-8E75-E1D592D77EEC> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x1001c3000 -        0x100393ff7 +com.adobe.dvacore.framework 6.0.1 (6.0.1.0) <0A8D28DC-B11B-F4AD-6A41-786311779094> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x1005a1000 -        0x1005cbff7 +com.adobe.dvamediatypes.framework 6.0.1 (6.0.1.0) <9E95E981-0165-08E0-C0A2-FE89849E4968> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/dvamediatypes.framework/Versions/A/dvamediatypes
           0x1005ff000 -        0x100600ff7 +com.adobe.PRM.framework 6.0.1 (6.0.1.0) <396FB005-CD61-85AE-59CC-624D776263A8> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/PRM.framework/Versions/A/PRM
           0x100606000 -        0x100668ff7 +com.adobe.ASLFoundation.framework 6.0.1 (6.0.1.0) <B85C5640-594B-DA77-2FC5-C81E7C77912D> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/ASLFoundation.framework/Versions/A/ASLFoundation
           0x10075f000 -        0x10077cfff +com.adobe.ASLMessaging.framework 6.0.1 (6.0.1.0) <A70D371F-DF5B-DB74-847B-4964570A7494> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/ASLMessaging.framework/Versions/A/ASLMessaging
           0x1007aa000 -        0x1007abff7 +com.adobe.Memory.framework 6.0.1 (6.0.1.0) <3921E82B-9424-D790-0F03-F668409B2B0C> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/Memory.framework/Versions/A/Memory
           0x1007b2000 -        0x1007c1ff7 +com.adobe.ASLUnitTesting.framework 6.0.1 (6.0.1.0) <E57F7785-9AF8-45DE-7953-30AC75E56FA0> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/ASLUnitTesting.framework/Versions/A/ASLUnitTesting
           0x1007dd000 -        0x1007e0fff +com.adobe.boost_system.framework 6.0.1 (6.0.1.0) <B3159CB0-DABC-B44B-D7F8-3F7959628CFC> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x1007e6000 -        0x10084cfff +com.adobe.dvatransport.framework 6.0.1 (6.0.1.0) <76FAE312-EAE4-D56D-2914-E413999A5148> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/dvatransport.framework/Versions/A/dvatransport
           0x1008cd000 -        0x100909fff +com.adobe.dvamarshal.framework 6.0.1 (6.0.1.0) <F69C844B-A0AE-1ED9-47FD-964DB0FF2FF6> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/dvamarshal.framework/Versions/A/dvamarshal
           0x10099b000 -        0x100b81fe7 +com.adobe.dynamiclink.framework 6.0.1 (6.0.1.0) <CE161C54-B05E-E71E-630A-4047B57E9C94> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/dynamiclink.framework/Versions/A/dynamiclink
           0x100d84000 -        0x100deafe7 +com.adobe.MediaFoundation.framework 6.0.1 (6.0.1.0) <00067527-36E7-A8EE-975B-7946FC74362B> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/MediaFoundation.framework/Versions/A/MediaFoundation
           0x100e73000 -        0x100f1ffff +com.adobe.AudioRenderer.framework 6.0.1 (6.0.1.0) <8BB5C102-7D7D-B627-BB84-B63125CF9025> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AudioRenderer.framework/Versions/A/AudioRenderer
           0x100fdf000 -        0x101009fff +com.adobe.dvacaptioning.framework 6.0.1 (6.0.1.0) <7D41BE3E-4715-250F-66FA-A3C8585D657F> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/dvacaptioning.framework/Versions/A/dvacaptioning
           0x10103f000 -        0x101096fff +com.adobe.dvatemporalxmp.framework 6.0.1 (6.0.1.0) <70F90095-783D-EC67-D04A-43EF39D170CF> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/dvatemporalxmp.framework/Versions/A/dvatemporalxmp
           0x1010ca000 -        0x1010d6fff +com.adobe.boost_signals.framework 6.0.1 (6.0.1.0) <07C8EE58-DB1A-E345-A39A-E489892326FC> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x1010ee000 -        0x101148fff +com.adobe.dvametadata.framework 6.0.1 (6.0.1.0) <9C8327BF-46CE-9F92-3693-48C03809F947> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/dvametadata.framework/Versions/A/dvametadata
           0x1011e5000 -        0x101245ff7 +com.adobe.AdobeXMPCore Adobe XMP Core 5.3 -c 11 (66.146729) <88C23D1F-50F3-13DD-7C60-F9530B29513E> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x10124f000 -        0x101306fef +com.adobe.AdobeXMPFiles Adobe XMP Files 5.4 -f 51 (66.146729) <D961D69F-E61B-BFB0-81D4-7924221B8E1B> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles
           0x101339000 -        0x102171ff7 +com.adobe.Backend.framework 6.0.1 (6.0.1.0) <D17E4A5A-CE1C-C7A1-3AC5-2333B3570757> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/Backend.framework/Versions/A/Backend
           0x102bfb000 -        0x102c17fff +com.adobe.AMEAppFoundation.framework 6.0.1 (6.0.1.31) <0E21D182-B711-5015-69CD-EF4811B8971D> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AMEAppFoundation.framework/Versions/A/AMEAppFoundation
           0x102c4d000 -        0x1030b5ff7 +com.adobe.dvaui.framework 6.0.1 (6.0.1.0) <747DD574-C1E4-6908-4D4F-49EF9F59714C> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x103627000 -        0x1036dfff7 +com.adobe.dvaworkspace.framework 6.0.1 (6.0.1.0) <9C220D42-D4EA-50AB-6CA8-A5EC7E6635A5> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x1037ed000 -        0x1038bffff +com.adobe.exo.framework 6.0.1 (6.0.1.0) <27F07C1F-0E9F-FB4F-847E-AD7AFC1BFEB2> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x103a24000 -        0x103a6dff7 +com.adobe.MLFoundation.framework 6.0.1 (6.0.1.0) <A651E996-18B7-F5ED-962E-D3B90A324F0D> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/MLFoundation.framework/Versions/A/MLFoundation
           0x103ade000 -        0x103c21ff7 +com.adobe.ImageRenderer.framework 6.0.1 (6.0.1.0) <318EADE7-7FDE-47F7-C29A-EC09ACFC9D86> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/ImageRenderer.framework/Versions/A/ImageRenderer
           0x103d47000 -        0x103d9cff7 +com.adobe.VideoFrame.framework 6.0.1 (6.0.1.0) <56A00AA2-12FA-61AC-4D8A-71F84787862A> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/VideoFrame.framework/Versions/A/VideoFrame
           0x103dec000 -        0x103e28fff +com.adobe.PluginSupport.framework 6.0.1 (6.0.1.0) <72997515-0968-39C8-53B8-A198DA937788> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/PluginSupport.framework/Versions/A/PluginSupport
           0x103e6e000 -        0x103e9afff +com.adobe.SweetPeaSupport.framework 6.0.1 (6.0.1.0) <10E99E6D-4AB9-AFA5-E898-2A42FD88A76C> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/SweetPeaSupport.framework/Versions/A/SweetPeaSupport
           0x103ed3000 -        0x104028fff +com.adobe.VideoRenderer.framework 6.0.1 (6.0.1.0) <8D093BB0-C6AF-FA6C-580D-1C47CD6AD399> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/VideoRenderer.framework/Versions/A/VideoRenderer
           0x104140000 -        0x104183fff +com.adobe.AudioSupport.framework 6.0.1 (6.0.1.0) <CE60FC27-B313-2237-1536-0201A311FA05> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AudioSupport.framework/Versions/A/AudioSupport
           0x1041cd000 -        0x1041d0fff +com.adobe.MediaUtils.framework 6.0.1 (6.0.1.0) <CFB8D7CD-53A4-93B9-CC3A-B3B1369FD330> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/MediaUtils.framework/Versions/A/MediaUtils
           0x1041d7000 -        0x104368fff +com.adobe.ImporterHost.framework 6.0.1 (6.0.1.0) <631E9216-4B34-8117-DBA1-CECE565A55BE> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/ImporterHost.framework/Versions/A/ImporterHost
           0x1044e8000 -        0x1045daff7 +com.adobe.ExporterHost.framework 6.0.1 (6.0.1.0) <6D8E6959-4CD4-A0E6-3CE5-4121321E5810> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/ExporterHost.framework/Versions/A/ExporterHost
           0x1046cb000 -        0x1047bcff7 +com.adobe.VideoFilterHost.framework 6.0.1 (6.0.1.0) <910CB862-6A10-5364-E4D1-EF2AD39BDB74> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/VideoFilterHost.framework/Versions/A/VideoFilterHost
           0x10487c000 -        0x104947fff +com.adobe.AMEWrapper.framework 6.0.1 (6.0.1.31) <BF5975F1-D530-88D6-ED54-8AE7FE633815> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AMEWrapper.framework/Versions/A/AMEWrapper
           0x104a11000 -        0x104b10ff7 +com.adobe.EncoderHost.framework 6.0.1 (6.0.1.0) <0627BB90-8531-0D0A-2979-585D7D131291> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/EncoderHost.framework/Versions/A/EncoderHost
           0x104c06000 -        0x104c73fff +com.adobe.ScriptLayer.framework 6.0.1 (6.0.1.31) <29441A08-3FD4-496C-2E26-C2BE15C69957> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/ScriptLayer.framework/Versions/A/ScriptLayer
           0x104cbf000 -        0x104d6dfef +com.adobe.AdobeScCore ScCore 4.2.12 (4.2.12.18602) <9CEE95E5-2FC6-5E58-02A4-138EA6F8D894> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x104daa000 -        0x104e67fff +com.adobe.AdobeExtendScript ExtendScript 4.2.12 (4.2.12.18602) <0957DFA6-0593-CE4B-8638-00F32113B07B> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x104eb1000 -        0x104f9fff7 +com.adobe.Batch.framework 6.0.1 (6.0.1.31) <7E2C5857-7D8E-9156-18DC-7744D74DDFFB> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/Batch.framework/Versions/A/Batch
           0x1050e9000 -        0x10512efff +com.adobe.dynamiclinkui.framework 6.0.1 (6.0.1.0) <8ADC9D0A-DD40-F1E3-BAEA-8F61B173B996> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/dynamiclinkui.framework/Versions/A/dynamiclinkui
           0x10519d000 -        0x1053fbfff +com.adobe.AMEFrontend.framework 6.0.1 (6.0.1.31) <B3FC2A4D-1CEA-5BED-E722-66FFC79C8AD7> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AMEFrontend.framework/Versions/A/AMEFrontend
           0x1056ae000 -        0x1056b4fff +com.adobe.AppServices.framework 6.0.1 (6.0.1.31) <DD9CD80C-E40F-4597-8A1A-1B09B719B2AB> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AppServices.framework/Versions/A/AppServices
           0x1056c2000 -        0x1058b8ff7 +com.adobe.SettingsUI.framework 6.0.1 (6.0.1.31) <ECF20FB9-1555-A8A3-E371-62C6BD9C5F56> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/SettingsUI.framework/Versions/A/SettingsUI
           0x105b15000 -        0x105b7bfff +com.adobe.DynamicLinkMedia.framework 6.0.1 (6.0.1.0) <4F952317-1A77-D5B8-EF12-8E9D237A5030> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/DynamicLinkMedia.framework/Versions/A/DynamicLinkMedia
           0x105c2c000 -        0x105c68fff +com.adobe.AMEDynamicLinkClient.framework 6.0.1 (6.0.1.31) <915DD290-76AC-B820-47F9-E3011610836C> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AMEDynamicLinkClient.framework/Versions/A/AMEDynamicLinkClien t
           0x105cdd000 -        0x105de5ff7 +com.adobe.dvametadataDB.framework 6.0.1 (6.0.1.0) <72A230C3-FE9C-A338-E85B-B2B699F10D28> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/dvametadataDB.framework/Versions/A/dvametadataDB
           0x105e43000 -        0x105eabfff +com.adobe.AMEDynamicLinkServer.framework 6.0.1 (6.0.1.31) <073B4741-0D4B-D26A-29A9-0279205B40BA> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AMEDynamicLinkServer.framework/Versions/A/AMEDynamicLinkServe r
           0x105f80000 -        0x105fc2fff +com.adobe.WatchFolder.framework 6.0.1 (6.0.1.31) <54580988-8B84-706A-3312-859968ED6C7A> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/WatchFolder.framework/Versions/A/WatchFolder
           0x106034000 -        0x1060a3fff +com.adobe.QT32Client.framework 6.0.1 (6.0.1.0) <6A68A901-F01F-FAEA-13F4-94CD0A0F18E9> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/QT32Client.framework/Versions/A/QT32Client
           0x106139000 -        0x106209fef +com.adobe.dvaeve.framework 6.0.1 (6.0.1.0) <08527E52-45F2-AA58-437A-D0D5DFAE2290> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/dvaeve.framework/Versions/A/dvaeve
           0x106381000 -        0x1063ddff7 +com.adobe.MediaCoreUI.framework 6.0.1 (6.0.1.0) <D6542BEE-2949-4A69-4BCC-43E1A9618CB2> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/MediaCoreUI.framework/Versions/A/MediaCoreUI
           0x106440000 -        0x106524fe7 +com.adobe.amtlib amtlib 6.0.0.93 (6.0.0.93) <3FB67F73-A24E-789B-0BAE-8FB3BE025C11> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x106535000 -        0x10680dfe6 +libxerces-c-3.0.dylib ??? (???) <46020284-EEA8-7D7B-388C-BF23A318C997> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/libxerces-c-3.0.dylib
           0x10698e000 -        0x1069b2fe7 +com.mainconcept.mc.enc.dv 9.1 (9.1.6.7339) <F977AE49-D347-16CB-0AE7-D3B10569BC69> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/mc_enc_dv.framework/Versions/9/mc_enc_dv
           0x1069c6000 -        0x1069c6ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <424E55F7-B6DA-0F5C-E56B-9ECB4A2E6BA8> /usr/lib/libmx.A.dylib
           0x1069c9000 -        0x1069f5fff +com.adobe.amefoundation.framework 6.0.1 (6.0.1.0) <0B026B3E-C02F-EAAA-E23F-01613BDAAE1F> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/amefoundation.framework/Versions/A/amefoundation
           0x106a39000 -        0x106a6aff7 +com.adobe.ameproperties.framework 6.0.1 (6.0.1.0) <A79CCABA-3629-DA4A-0F2C-E958D3AF703E> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/ameproperties.framework/Versions/A/ameproperties
           0x106ab5000 -        0x106adafff +com.adobe.PostEncodeHost.framework 6.0.1 (6.0.1.31) <E94F9A83-038D-AB4E-FF14-C46544A3ECDA> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/PostEncodeHost.framework/Versions/A/PostEncodeHost
           0x106b0f000 -        0x106b7dfef +com.adobe.headlights.LogSessionFramework ??? (2.1.2.1652) <25E6F475-1522-419C-2169-547FCF2FD97F> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x106bd1000 -        0x106bd5ff7 +com.adobe.AdobeCrashReporter 6.0 (6.0.20120201) <A6B1F3BD-5DB0-FEE5-708A-B54E5CA80481> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x106bdb000 -        0x106be1ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <4BA195A7-49B8-A9B7-B510-CA5CE4F03AFB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x106be8000 -        0x106c06fff +com.adobe.BIB AdobeBIB 1.2.02.19243 (1.2.02.19243) <6C6431BE-06BA-55A7-87FA-46EFB6ED0FAF> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x106c0d000 -        0x106c66fff +com.adobe.BravoInitializer.framework 6.0.1 (6.0.1.0) <58B04D64-668E-AF47-3EFA-99B6FBC4F207> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/BravoInitializer.framework/Versions/A/BravoInitializer
           0x106ce0000 -        0x106e59fff +com.adobe.ACE AdobeACE 2.19.18.19243 (2.19.18.19243) <7F28B188-1D1B-20C9-BBB9-B74FCC12ECAD> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x106e6c000 -        0x1071e9fff +com.adobe.AGM AdobeAGM 4.26.17.19243 (4.26.17.19243) <19B59987-1020-E125-DC86-EA48FC81A890> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x107255000 -        0x1075b6fef +com.adobe.CoolType AdobeCoolType 5.10.31.19243 (5.10.31.19243) <8BFF14FB-AA14-1CBF-C2A3-715363B5A841> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x107603000 -        0x10761dff7 +com.adobe.ahclientframework 1.7.0.56 (1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x107626000 -        0x1076baff7 +com.adobe.dvametadataUI.framework 6.0.1 (6.0.1.0) <DBB7B233-2DD5-032C-573F-0C238284F504> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/dvametadataUI.framework/Versions/A/dvametadataUI
           0x107790000 -        0x1077b8ff7 +com.adobe.BIBUtils AdobeBIBUtils 1.1.01 (1.1.01) <223EFB56-968F-7D00-05F1-4594F2144C0F> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x107d00000 -        0x107d38ff7 +libMOG_Framework.dylib.2.2.4 ??? (???) <7A97623B-F09F-CA33-B9EA-1202FA569605> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Plug-ins/Common/MOG/Frameworks/libMOG_Framework.dylib.2.2.4
           0x107d57000 -        0x107d60ff7 +libMXF_SDK_GenericContainer_AES3.dylib.4.4.3 ??? (???) /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Plug-ins/Common/MOG/Frameworks/libMXF_SDK_GenericContainer_AES3.dylib.4. 4.3
           0x107d68000 -        0x107d72fff +libMXF_SDK_GenericContainer_AES3_S302M.dylib.4.4.3 ??? (???) /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Plug-ins/Common/MOG/Frameworks/libMXF_SDK_GenericContainer_AES3_S302M.dy lib.4.4.3
           0x10b7e8000 -        0x10b7eafef  com.apple.textencoding.unicode 2.3 (2.3) <D95D796E-4D14-665C-F439-4652C0CD453F> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10b7f4000 -        0x10b7fafff +libMXF_SDK_GenericContainer_AVI.dylib.4.4.3 ??? (???) /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Plug-ins/Common/MOG/Frameworks/libMXF_SDK_GenericContainer_AVI.dylib.4.4 .3
           0x10d55b000 -        0x10d56cfff +com.adobe.ExporterMPEGPreview.framework 6.0.1 (6.0.1.0) <795705A3-78FC-07DF-6EA5-7E84FC322E15> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Plug-ins/Common/ExporterMPEGPreview.bundle/Contents/MacOS/ExporterMPEGPr eview
           0x10d57f000 -        0x10d58effd +com.mainconcept.mc.enc.mpa 9.1 (9.1.6.7339) <F18E0114-7877-9C34-39D4-4421D8F16278> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/mc_enc_mpa.framework/Versions/9/mc_enc_mpa
           0x10d5ab000 -        0x10d5bfff7 +com.adobe.QTParser.framework 6.0.1 (6.0.1.0) <38376362-6121-AE48-2744-FDDBFB76EAC4> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/QTParser.framework/Versions/A/QTParser
           0x10d5d3000 -        0x10d5d8fff +libMXF_SDK_Modules_DataIO.dylib.1.3.3 1.3.3 (compatibility 1.3.3) /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Plug-ins/Common/MOG/Frameworks/libMXF_SDK_Modules_DataIO.dylib.1.3.3
           0x11e9d2000 -        0x11e9dbfff +libMXF_SDK_GenericContainer_MPEG_MPEGPS.dylib.4.4.3 ??? (???) /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Plug-ins/Common/MOG/Frameworks/libMXF_SDK_GenericContainer_MPEG_MPEGPS.d ylib.4.4.3
           0x1200b3000 -        0x1200bfff7 +libMXF_SDK_GenericContainer_D10.dylib.4.4.3 ??? (???) /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Plug-ins/Common/MOG/Frameworks/libMXF_SDK_GenericContainer_D10.dylib.4.4 .3
           0x1200c7000 -        0x1200e1fef +libMXF_SDK_GenericContainer_DV.dylib.4.4.3 ??? (???) /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Plug-ins/Common/MOG/Frameworks/libMXF_SDK_GenericContainer_DV.dylib.4.4. 3
           0x1200f3000 -        0x1200f9fff +libMXF_SDK_GenericContainer_Binary.dylib.1.3.3 1.3.3 (compatibility 1.3.3) /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Plug-ins/Common/MOG/Frameworks/libMXF_SDK_GenericContainer_Binary.dylib. 1.3.3
           0x12148b000 -        0x1214abfff +com.adobe.VXMLPresetReader.framework 6.0.1 (6.0.1.0) <C9E8D8D6-9F0B-86EA-8ECA-D8EC8629BBE0> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/VXMLPresetReader.framework/VXMLPresetReader
           0x1214e6000 -        0x1215eefef +com.mainconcept.mc.enc.mp2v 9.1 (9.1.6.7339) <B02A0C50-AB7E-B512-52D7-2BDB1C1573C2> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/mc_enc_mp2v.framework/Versions/9/mc_enc_mp2v
           0x121640000 -        0x1216f6fe3 +com.mainconcept.mc.mux.mp2 9.1 (9.1.6.7339) <044A2A73-237E-1E1B-F879-B1AE42814501> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/mc_mux_mp2.framework/Versions/9/mc_mux_mp2
           0x121718000 -        0x1217bcfff +com.adobe.IPPMPEGDecoder.framework 6.0.1 (6.0.1.0) <AAE165B9-FEF4-ADBD-0D0A-9B8E075B2747> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/IPPMPEGDecoder.framework/Versions/A/IPPMPEGDecoder
           0x1217f3000 -        0x121815fff +com.adobe.ImporterFastMPEG.framework 6.0.1 (6.0.1.0) <F328E2BD-9822-984F-34C2-969F7A75EEA9> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Plug-ins/Common/ImporterFastMPEG.bundle/Contents/MacOS/ImporterFastMPEG
           0x121844000 -        0x1218f6fe3 +com.mainconcept.mc.mfimport 9.1 (9.1.6.7339) <CD59C8E3-4EB4-C35D-599A-DC92B2D84E50> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Frameworks/mc_mfimport.framework/Versions/9/mc_mfimport
           0x1218ff000 -        0x12193eff7 +com.adobe.ImporterXDCAMEX.framework 6.0.1 (6.0.1.0) <B3D02434-0D0A-7FF0-E825-0058ADE613E8> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Plug-ins/Common/ImporterXDCAMEX.bundle/Contents/MacOS/ImporterXDCAMEX
           0x121991000 -        0x121a30ff7 +com.adobe.ImporterXDCAMHD.framework 6.0.1 (6.0.1.0) <BFE67CDB-368F-DE66-C980-6AC29B1DFE9D> /Applications/Adobe Media Encoder CS6/Adobe Media Encoder CS6.app/Contents/Plug-ins/Common/ImporterXDCAMHD.bundle/Contents/MacOS/ImporterXDCAMHD
           0x121

    I think "alternapopmac," is talking about the deployment ,
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/creativesuite/pdfs/En terprise_Deployment_FAQ.pdf

  • Photoshop CS3 crashes when quitting

    Hello! My Photoshop CS3 started crashing when quitting. I have Windows Vista. When I click [x] to quit, a box appears saying "Adobe Photoshop CS3 has stopped working" with button "close program", and then some problem report thing.
    At first I tried reinstalling the software. It didn't help. Then I uninstalled the whole Photoshop and installed it again. It didn't help either. Now I have no idea what to do next. Does anybody have any solutions? Thanks

    Thanks for the replies.
    I understand now that the procedure is probably the reason.
    I was just experimenting as LAB colours are colours we see through our eyes, while RGB, CMYK etc are "computer" colours and so I use LAB colours a lot, before switching back to RGB.
    I normally switch to LAB mode and click on the Lightness channel, then play with adjustments of that channel. This time I decided to mess around and see what would happen if I removed all channels except the Lightness one....
    Converting to greyscale for me is not enough unfortunately and LAB B+W provides much better contrast and tone than hitting CTRL+Shift+U to greyscale.
    Again, I understand what you say, my point being though that Photoshop should not crash because I incorrectly remove the channels, perhaps a warning to tell me I can't do it would be better.
    I'll pass this onto Adobe anyway.
    cheers

Maybe you are looking for

  • Error message when starting - Set Config. App.

    New member here! I have searched an looked at these forums for some time but only now joined. Should have done it before. Operating system is MS XP Pro, Printer involved is HP LaserJet 1150 Computer is a Fujitsu LIfebook that is used in several field

  • GarageBand Freeze, Any Solution Yet?

    I have GarageBand '08 running on OSX 10.5.5 (Dual G5). GarageBand continues to freeze with the following error in the console: 11/28/08 7:58:46 PM GarageBand[1784] GarageBand: * -[NSCFDictionary setObject:forKey:]: attempt to insert nil value (key: N

  • Grub doesn't load the kernel in virtualbox

    in a couple of months im going to get a new machine to go alone side my laptop, and in the new machine i want to install arch linux. so i thought i test it in VBox. but im getting an error. -snip- this is what I see when I try to load archlinux in vi

  • SAP QUERY double display

    Hi, I have created a SAP Query with 3 tables AUFK, COEP and PA0001. The selection contains the orderno. from AUFK (=base table), company code, year and period from COEP. The display contains orderno. personnelno., name, quantity hours and costs, docu

  • Placed TIFF looks washed out compared to original in Photoshop

    I have a TIFF file created in Photoshop with Adobe RGB (1998) color profile. It looks vibrant and great. When I place it into my InDesign document, however, it looks drab and washed out. InDesign color settings are: Working Space: Adobe RGB (1998) Co