Dialog help

When i press the calculate button it will calculate a price depending on the options chosen and show the results in an OptionDialog.
I need help with the two buttons (New Quote and Close), I want it so that if i press New Quote it will return to the dialog box where i input values, and if i press Close it will exit the entire application. Is this possible? And if so how?
Thanks
Code for the calculate button:
    private void calcButton_actionPerformed(ActionEvent e) {
        int quote = 0, economy = 50, intermediate = 60, fullsize = 75, luxury = 100;
        String vMyNumberText = noDays.getText();
        String val = carType.getSelectedItem().toString();
        int vMyNumber = Integer.parseInt(vMyNumberText);
        if(val.equals("Economy")){quote = vMyNumber * economy;}
        if(val.equals("Intermediate")){quote = vMyNumber * intermediate;}
        if(val.equals("Full_Size")){quote = vMyNumber * fullsize;}
        if(val.equals("Luxury")){quote = vMyNumber * luxury;}
        Object[] options = {"New Quote", "Close"};
        JOptionPane.showOptionDialog (
        null, "Your quote comes to $" + quote, "Quote for car rental",
        JOptionPane.YES_NO_OPTION,
        JOptionPane.QUESTION_MESSAGE,
        null,     //do not use a custom Icon
        options,  //the titles of buttons
        options[0]); //default button title
        System.exit (0); //ends the program
    }Code for entire application:
package task2;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Frame;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
public class task2Swing extends JDialog {
    private JLabel jLabel1 = new JLabel();
    private JTextField noDays = new JTextField();
    private JLabel jLabel2 = new JLabel();
    private JComboBox carType = new JComboBox();
    private JButton calcButton = new JButton();
    private JButton jButton2 = new JButton();
    public task2Swing() {
        this(null, "", false);
    public task2Swing(Frame parent, String title, boolean modal) {
        super(parent, title, modal);
        try {
            jbInit();
        } catch (Exception e) {
            e.printStackTrace();
    private void jbInit() throws Exception {
        this.setSize(new Dimension(309, 176));
        this.getContentPane().setLayout( null );
        jLabel1.setText("Input number of days to rent car:");
        jLabel1.setBounds(new Rectangle(15, 5, 230, 30));
        jLabel1.setFont(new Font("Verdana", 0, 13));
        noDays.setBounds(new Rectangle(250, 5, 40, 35));
        jLabel2.setText("Select type car to rent:");
        jLabel2.setBounds(new Rectangle(15, 55, 165, 25));
        jLabel2.setFont(new Font("Verdana", 0, 13));
        carType.setBounds(new Rectangle(195, 55, 95, 30));
            carType.insertItemAt("Economy", 0);
            carType.insertItemAt("Intermediate", 1);
            carType.insertItemAt("Full_Size", 2);
            carType.insertItemAt("Luxury", 3);
        calcButton.setText("Quote");
        calcButton.setBounds(new Rectangle(45, 100, 80, 35));
        calcButton.addActionListener(new ActionListener() {
                    public void actionPerformed(ActionEvent e) {
                        calcButton_actionPerformed(e);
        jButton2.setText("Close");
        jButton2.setBounds(new Rectangle(170, 100, 80, 35));
        jButton2.addActionListener(new ActionListener() {
                    public void actionPerformed(ActionEvent e) {
                        jButton2_actionPerformed(e);
        this.getContentPane().add(jButton2, null);
        this.getContentPane().add(calcButton, null);
        this.getContentPane().add(carType, null);
        this.getContentPane().add(jLabel2, null);
        this.getContentPane().add(noDays, null);
        this.getContentPane().add(jLabel1, null);
    public static void main(String[] args){
        JFrame vJFrame = new JFrame("frame");
        vJFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        vJFrame.setSize(300, 100);
        vJFrame.setVisible(false);
        task2Swing vAddOneDialog = new task2Swing(vJFrame, "Task 2", false);
        vAddOneDialog.setVisible(true);
    private void jButton2_actionPerformed(ActionEvent e) {
        System.exit(0);
    private void calcButton_actionPerformed(ActionEvent e) {
        int quote = 0, economy = 50, intermediate = 60, fullsize = 75, luxury = 100;
        String vMyNumberText = noDays.getText();
        String val = carType.getSelectedItem().toString();
        int vMyNumber = Integer.parseInt(vMyNumberText);
        if(val.equals("Economy")){quote = vMyNumber * economy;}
        if(val.equals("Intermediate")){quote = vMyNumber * intermediate;}
        if(val.equals("Full_Size")){quote = vMyNumber * fullsize;}
        if(val.equals("Luxury")){quote = vMyNumber * luxury;}
        Object[] options = {"New Quote", "Close"};
        JOptionPane.showOptionDialog (
        null, "Your quote comes to $" + quote, "Quote for car rental",
        JOptionPane.YES_NO_OPTION,
        JOptionPane.QUESTION_MESSAGE,
        null,     //do not use a custom Icon
        options,  //the titles of buttons
        options[0]); //default button title
        //System.exit (0); //ends the program
}

You need this.

Similar Messages

  • To display non US-ASCII filename in file download dialog - Help Needed

    Hi,
    Our application supports to upload a file with name in chinese/japanese language. When user tries to download filedownload dialog box is appearing with the filename as junk characters.
    How to solve this issue to display the filename as uploaded.
    Thanks in advance
    ~kans

    bsampieri, issue is in display of the file name in
    file download dialog.
    ~kansI understood that, but my thought was that the HTTP headers content type containing a charset of UTF-8 might help. I don't know for sure, but otherwise, I don't know how to get the browser to otherwise not assume ASCII.

  • Dialog help please

    When i press the calculate button it will calculate a price depending on the options chosen and show the results in an OptionDialog.
    I need help with the two buttons (New Quote and Close), I want it so that if i press New Quote it will return to the dialog box where i input values, and if i press Close it will exit the entire application. Is this possible? And if so how?
    Thanks
    package task2;
    import java.awt.Dimension;
    import java.awt.Font;
    import java.awt.Frame;
    import java.awt.Rectangle;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JTextField;
    public class task2Swing extends JDialog {
    private JLabel jLabel1 = new JLabel();
    private JTextField noDays = new JTextField();
    private JLabel jLabel2 = new JLabel();
    private JComboBox carType = new JComboBox();
    private JButton calcButton = new JButton();
    private JButton jButton2 = new JButton();
    public task2Swing() {
    this(null, "", false);
    public task2Swing(Frame parent, String title, boolean modal) {
    super(parent, title, modal);
    try {
    jbInit();
    } catch (Exception e) {
    e.printStackTrace();
    private void jbInit() throws Exception {
    this.setSize(new Dimension(309, 176));
    this.getContentPane().setLayout( null );
    jLabel1.setText("Input number of days to rent car:");
    jLabel1.setBounds(new Rectangle(15, 5, 230, 30));
    jLabel1.setFont(new Font("Verdana", 0, 13));
    noDays.setBounds(new Rectangle(250, 5, 40, 35));
    jLabel2.setText("Select type car to rent:");
    jLabel2.setBounds(new Rectangle(15, 55, 165, 25));
    jLabel2.setFont(new Font("Verdana", 0, 13));
    carType.setBounds(new Rectangle(195, 55, 95, 30));
    carType.insertItemAt("Economy", 0);
    carType.insertItemAt("Intermediate", 1);
    carType.insertItemAt("Full_Size", 2);
    carType.insertItemAt("Luxury", 3);
    calcButton.setText("Quote");
    calcButton.setBounds(new Rectangle(45, 100, 80, 35));
    calcButton.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    calcButton_actionPerformed(e);
    jButton2.setText("Close");
    jButton2.setBounds(new Rectangle(170, 100, 80, 35));
    jButton2.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    jButton2_actionPerformed(e);
    this.getContentPane().add(jButton2, null);
    this.getContentPane().add(calcButton, null);
    this.getContentPane().add(carType, null);
    this.getContentPane().add(jLabel2, null);
    this.getContentPane().add(noDays, null);
    this.getContentPane().add(jLabel1, null);
    public static void main(String[] args){
    JFrame vJFrame = new JFrame("frame");
    vJFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    vJFrame.setSize(300, 100);
    vJFrame.setVisible(false);
    task2Swing vAddOneDialog = new task2Swing(vJFrame, "Task 2", false);
    vAddOneDialog.setVisible(true);
    private void jButton2_actionPerformed(ActionEvent e) {
    System.exit(0);
    private void calcButton_actionPerformed(ActionEvent e) {
    int quote = 0, economy = 50, intermediate = 60, fullsize = 75, luxury = 100;
    String vMyNumberText = noDays.getText();
    String val = carType.getSelectedItem().toString();
    int vMyNumber = Integer.parseInt(vMyNumberText);
    if(val.equals("Economy")){quote = vMyNumber * economy;}
    if(val.equals("Intermediate")){quote = vMyNumber * intermediate;}
    if(val.equals("Full_Size")){quote = vMyNumber * fullsize;}
    if(val.equals("Luxury")){quote = vMyNumber * luxury;}
    Object[] options = {"New Quote", "Close"};
    JOptionPane.showOptionDialog (
    null, "Your quote comes to $" + quote, "Quote for car rental",
    JOptionPane.YES_NO_OPTION,
    JOptionPane.QUESTION_MESSAGE,
    null, //do not use a custom Icon
    options, //the titles of buttons
    options[0]); //default button title
    //System.exit (0); //ends the program
    }

    anyone?

  • Open/Create/Replace Dialog Help

    Hi all,
    I want to create or replace an excel file (it may be 2003 format or 2007 format).
    When the dialog opens, in the "Save as type" field, there is option "All files".
    Due to this, I have to write the extension .xls or .xlsx.
    Kindly help me if i can set the values in that field... (.xls or .xlsx)
    Srikanth Chilivery,
    Attachments:
    error.png ‏271 KB

    windows wrote:
    But using this, I could replace the file but not create new file.
    What is your LabVIEW version?
    Using the file dialog express VI, you can specify exactly what operations should be allowed. You just need to configure it accordingly Try it!
    LabVIEW Champion . Do more with less code and in less time .

  • Restore ipod button in iTunes gives open file dialog - HELP!

    I have an iPod touch which is non-working. When I plug it in to my mac, I get the message: "iTunes has detected an iPod in recovery mode. You must restore this iPod before it can be used with iTunes."
    So in iTunes, I click the restore button. At that point, support docs say that I should be prompted to enter an admin password, but I'm not. All I get is a file open dialog box. Is it prompting me to find some backup file for my iPod? I don't know, but I don't have any such file. I have no idea what file I should be opening supposedly. I just want to restore my iPod to default factory settings. How do I do this?
    Thanks

    Check USB connections
    If there’s an issue with the USB port, cable, dock, or hub, or if the device becomes disconnected during restore, try troubleshooting the USB connection, then troubleshooting your security software.
    Common errors: 13, 14, 1600-1629, 1643-1650, 2000-2009, 4000, 4005, 4013, 4014, 4016, “invalid response”, and being prompted to restore again after a restore completes.
    To narrow down the issue, you can also change up your hardware:
    Use another USB cable.
    Plug your cable into a different USB port on your computer.
    Try a different dock connector (or no dock).
    Add (or remove) a USB hub between your device and computer.
    Connect your computer directly to your Internet source, with no routers, hubs, or switches.
    If you see your error after changing your USB connections, continue to the next section to troubleshoot your hardware.
    Check for hardware issues
    Try to restore your iOS device two more times while connected with a cable, computer, and network you know are good. Also, confirm your security software and settings are allowing communication between your device and update servers. If you still see the alert when you update or restore, contact Apple support.
    Common errors: 1, 10-47, 1002, 1011, 1012, 1014, 1000-1020.

  • Input dialog help...

    I cannot seem to find if there is a way to create an input dialog box that accepts a String as input but only has an 'OK' button and no 'Cancel' button.
    It seems that the 'Cancel' button is put in by default. Is there any way to eliminate it or do I have to write my own class?
    Edited by: gabel3469 on May 16, 2008 5:07 AM

    the best is to impose the user to input with something like:
    do
       // prompt the dialog
    while (userInput.equals("") || optionChosen = CLOSED_OPTION || optionChosen == CANCEL_OPTION);

  • Save dialog help wanted

    hi there
    anyone out there has any idea how to write a Save As dialog?
    your helpl is much appreciated.

    heres a function thatll display a "Save As..." dialog, and return the full pathname of the file the user selected.
    import java.awt.FileDialog;
    String SaveAsDialog()
    FileDialog fileDialog = new FileDialog (this, "Save As...", FileDialog.SAVE);
    String filename;
    fileDialog.setFile("*.*"); //displays all files
    fileDialog.show (); //show dialog
    filename = fileDialog.getDirectory () + File.separator + fileDialog.getFile ();
    return filename;
    }

  • HELP_START: how can i do a search help F4 same as field Group PLNNR in CA02

    Hi all,
       I'm developing a report in which i use two field Group (PLNNR) and Group counter (PLNAL) as same as in CA02: choose a group by F4 and after these two fields are filled with the chosen values in help screen.
       My problem: i would like to do a search help for field Group (PLNNR) as same as in CA02. I have used the Function HELP_START for this purpose, but i can not reach my purpose: i choose a group in dialog help and after the field Group have the chosen value, but the field Group counter (PLNAL) don't have any value.
       I don't know which input values for structure HELP_INFOS will be get a result as same as in CA02?
       Anyone know how i should do to solve my problem, please help me?
      Which input is incorrect (code below), please help me!
    Thanks a lot in advance,
    My Actual input for structure HELP_INFOS as below:
    ls_help-call      = 'V'.
      ls_help-tabname   = 'RC271'.
      ls_help-fieldname = 'PLNNR'.
      ls_help-spras     = sy-langu.
      ls_help-docuid    = 'FE'.
      ls_help-object    = 'F'.
      ls_help-dynpprog  = sy-repid.
      ls_help-report    = sy-repid.
      ls_help-dynpro    = sy-dynnr.
      ls_help-pfkey     = 'NXD'.
      ls_help-dynprofld = 'P_PLNNR'. (My fiel 'Group' in Selection screen)
      ls_help-MENUFUNCT = 'HC'.
      ls_help-fieldlng = '8'.
      ls_help-pov = 'N'.
      ls_help-curow = sy-cucol.
      ls_help-cucol = sy-curow.
      ls_help-selectart = 'A'.
    CALL FUNCTION 'HELP_START'
           EXPORTING
                help_infos   = ls_help
           IMPORTING
                select_value = lv_select_value
           TABLES
                dynpselect   = wt_dselc
                dynpvaluetab = wt_dval.
    Thanks,
    Vinh Vo

    Why do it in more complicated way, while the simplest method is available. You can use :
    PARAMETERS: p_plnnr LIKE rc271-plnnr.
    PARAMETERS: p_plnal LIKE rc271-plnal.
    Give it a try.
    Thanks & regards,
    Hadiman

  • Trinidad Dialog Not Opening in new Window- 10 to 11g Migration

    I have an ADF 10 application, which has been migrated into 11g (Trinidad).
    I have an issue where my dialog window is opening in the same window, and not a new one. I have used the useWindow parameter and set ENABLE_LIGHTWEIGHT_DIALOGS to false so that a new window and not an Iframe is used. I have tried both true/false on this parameter.
    .jspx page
       <tr:commandNavigationItem text="Help" action="dialog:help"
                                              binding="#{backing_mainmenu.commandMenuItem11}" id="commandMenuItem11"
                                              useWindow="true" windowHeight="500" windowWidth="500"/>
    faces-config.xml
      <navigation-case>
          <from-outcome>dialog:help</from-outcome>
          <to-view-id>/help.jspx</to-view-id>
        </navigation-case>
    web.xml
        <context-param>
            <param-name>org.apahce.myfaces.trinidadinternal.renderkit.USER_DIALOG_POP</param-name>
            <param-value>true</param-value>
        </context-param>
        <context-param>
        <param-name>org.apache.myfaces.trinidad.ENABLE_LIGHTWEIGHT_DIALOGS</param-name>
        <param-value>false</param-value>
        </context-param>
        <context-param>
        <param-name>org.apahce.myfaces.trinidad.CACHE_VIEW_ROOT</param-name>
        <param-value>false</param-value>
        </context-param>
    Jdev: 11.1.2.4
    Java: 1.6.0_43
    Trinidad: 11.1.2.4

    Hi,
    doesn't sound right. Why is the Facelet setting added to your web.xml file? Did you mix Facelet files with JSPX documents? If so then this could be a cause
    Frank

  • Does "What's This?" Help still exist?

    Does anyone know whether RoboHelp 7 still includes "What's
    This?" Help for creating context-sensitive help? In RoboHelp Office
    X5, this application was called Whatsths.exe. I will upgrade my
    license if it's still there.

    Excellent. I do use it to create dialog help, but what I like
    most is its reports of what's new and changed in the dialogs. It
    communicates a whole lot better than our software engineers!

  • Photoshop Ext. CS5 (Mac) suddenly crashing upon file open

    Hi.
    Any help would be appreciated. I purchased CS5.5 extended about 3 weeks ago and all was working fine. Just yesterday Photoshop started crashing whenever I try to open files. I've deleted preferences several times, validated my fonts, restarted my Mac, etc. all to no avail. Photoshop has become useless to me and it's part of how I make my living. InDesign seems to work OK but I haven't tried Illustrator yet. Any thoughts?
    Here is last night's crash report (half the time it crashes with no report).
    Thank you!
    Process:    
    Adobe Photoshop CS5.1 [750]
    Path:       
    /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/MacOS/Adobe Photoshop CS5.1
    Identifier: 
    com.adobe.Photoshop
    Version:    
    12.1 (12.1x20110328.r.145) (12.1)
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [121]
    Date/Time:  
    2012-04-06 08:19:52.885 -0700
    OS Version: 
    Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Application Specific Information:
    *** error for object 0x11811c808: incorrect checksum for freed object - object was probably modified after being freed.
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib        
    0x00007fff840e40b6 __kill + 10
    1   libSystem.B.dylib        
    0x00007fff841849f6 abort + 83
    2   libSystem.B.dylib        
    0x00007fff8417362d szone_error + 519
    3   libSystem.B.dylib        
    0x00007fff840a066f small_free_list_remove_ptr + 154
    4   libSystem.B.dylib        
    0x00007fff8409d171 szone_free_definite_size + 3256
    5   ...ple.CoreServices.CarbonCore
    0x00007fff8758d096 DisposePtr + 23
    6   com.apple.QD             
    0x00007fff88abb685 CreateRGBA32FromPixMaps + 1541
    7   com.apple.HIServices     
    0x00007fff8624eebb _ISGetBestCGImageForIndexedStorageData + 1872
    8   com.apple.HIServices     
    0x00007fff8624dd48 _ISGetCGImageRefForISImageRef + 657
    9   com.apple.HIServices     
    0x00007fff8624d728 PlotISImageRefInContext + 898
    10  com.apple.HIServices     
    0x00007fff8624d37b PlotIconRefInContext + 206
    11  com.apple.AppKit         
    0x00007fff81577be8 -[NSNavBrowserCell drawInteriorWithFrame:inView:] + 1376
    12  com.apple.AppKit         
    0x00007fff812319fc -[NSTableView drawRow:clipRect:] + 1242
    13  com.apple.AppKit         
    0x00007fff81830c5b -[NSNavBrowserTableView drawRow:clipRect:] + 225
    14  com.apple.AppKit         
    0x00007fff812312ef -[NSTableView drawRowIndexes:clipRect:] + 369
    15  com.apple.AppKit         
    0x00007fff8122fc9c -[NSTableView drawRect:] + 1302
    16  com.apple.AppKit         
    0x00007fff81225d75 -[NSView _drawRect:clip:] + 3566
    17  com.apple.AppKit         
    0x00007fff8122354b -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 2112
    18  com.apple.AppKit         
    0x00007fff81223ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 4555
    19  com.apple.AppKit         
    0x00007fff81223ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 4555
    20  com.apple.AppKit         
    0x00007fff81223ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 4555
    21  com.apple.AppKit         
    0x00007fff81223ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 4555
    22  com.apple.AppKit         
    0x00007fff81223ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 4555
    23  com.apple.AppKit         
    0x00007fff81223ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 4555
    24  com.apple.AppKit         
    0x00007fff8135a238 -[NSBrowser _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 85
    25  com.apple.AppKit         
    0x00007fff81223ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 4555
    26  com.apple.AppKit         
    0x00007fff81223ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 4555
    27  com.apple.AppKit         
    0x00007fff81223ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 4555
    28  com.apple.AppKit         
    0x00007fff81223ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 4555
    29  com.apple.AppKit         
    0x00007fff81223ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 4555
    30  com.apple.AppKit         
    0x00007fff81223ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 4555
    31  com.apple.AppKit         
    0x00007fff81223ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 4555
    32  com.apple.AppKit         
    0x00007fff81222b2c -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 254
    33  com.apple.AppKit         
    0x00007fff8121f3de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    34  com.apple.AppKit         
    0x00007fff81198c0e -[NSView displayIfNeeded] + 969
    35  com.apple.AppKit         
    0x00007fff81193aba _handleWindowNeedsDisplay + 678
    36  com.apple.CoreFoundation 
    0x00007fff8100db07 __CFRunLoopDoObservers + 519
    37  com.apple.CoreFoundation 
    0x00007fff80fe9434 __CFRunLoopRun + 468
    38  com.apple.CoreFoundation 
    0x00007fff80fe8d8f CFRunLoopRunSpecific + 575
    39  com.apple.HIToolbox      
    0x00007fff8307a7ee RunCurrentEventLoopInMode + 333
    40  com.apple.HIToolbox      
    0x00007fff8307a5f3 ReceiveNextEventCommon + 310
    41  com.apple.HIToolbox      
    0x00007fff8307a4ac BlockUntilNextEventMatchingListInMode + 59
    42  com.apple.AppKit         
    0x00007fff81168eb2 _DPSNextEvent + 708
    43  com.apple.AppKit         
    0x00007fff81168801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    44  com.apple.AppKit         
    0x00007fff813a3dc3 -[NSApplication _realDoModalLoop:peek:] + 442
    45  com.apple.AppKit         
    0x00007fff813a1951 -[NSApplication runModalForWindow:] + 129
    46  com.apple.AppKit         
    0x00007fff81607112 -[NSSavePanel runModal] + 318
    47  com.adobe.Photoshop      
    0x00000001012f175f AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16864027
    48  com.adobe.Photoshop      
    0x0000000100069644 0x100000000 + 431684
    49  com.adobe.Photoshop      
    0x00000001006b0aad AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4015721
    50  com.adobe.Photoshop      
    0x000000010006a430 0x100000000 + 435248
    51  com.adobe.Photoshop      
    0x00000001006b422f AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 4029931
    52  com.adobe.Photoshop      
    0x000000010007b005 0x100000000 + 503813
    53  com.adobe.Photoshop      
    0x00000001000e566e 0x100000000 + 939630
    54  com.adobe.Photoshop      
    0x00000001000d5b5a 0x100000000 + 875354
    55  com.adobe.Photoshop      
    0x00000001000d5bea 0x100000000 + 875498
    56  com.adobe.Photoshop      
    0x00000001000662b5 0x100000000 + 418485
    57  com.adobe.Photoshop      
    0x000000010007115a 0x100000000 + 463194
    58  com.adobe.Photoshop      
    0x0000000100066573 0x100000000 + 419187
    59  com.adobe.Photoshop      
    0x0000000100066636 0x100000000 + 419382
    60  com.adobe.Photoshop      
    0x00000001012e2094 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16800848
    61  com.apple.AppKit         
    0x00007fff8112e6de -[NSApplication run] + 474
    62  com.adobe.Photoshop      
    0x00000001012e0644 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16794112
    63  com.adobe.Photoshop      
    0x00000001012e10a1 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 16796765
    64  com.adobe.Photoshop      
    0x0000000100068286 0x100000000 + 426630
    65  com.adobe.Photoshop      
    0x0000000100237199 0x100000000 + 2322841
    66  com.adobe.Photoshop      
    0x0000000100237229 0x100000000 + 2322985
    67  com.adobe.Photoshop      
    0x0000000100002294 0x100000000 + 8852
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib        
    0x00007fff840aec0a kevent + 10
    1   libSystem.B.dylib        
    0x00007fff840b0add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib        
    0x00007fff840b07b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib        
    0x00007fff840b02de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib        
    0x00007fff840afc08 _pthread_wqthread + 353
    5   libSystem.B.dylib        
    0x00007fff840afaa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib        
    0x00007fff840d0a6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff840d4881 _pthread_cond_wait + 1286
    2   com.adobe.amt.services   
    0x0000000107a64247 C_AMTUISwitchSuppressUpdates + 16439
    3   com.adobe.amt.services   
    0x0000000107a5d39e C_EULA_SetState + 1742
    4   com.adobe.amt.services   
    0x0000000107a642b2 C_AMTUISwitchSuppressUpdates + 16546
    5   libSystem.B.dylib        
    0x00007fff840cefd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff840cee89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib        
    0x00007fff84095dce semaphore_timedwait_trap + 10
    1   ...ple.CoreServices.CarbonCore
    0x00007fff87625186 MPWaitOnSemaphore + 96
    2   MultiProcessor Support   
    0x0000000113920b9b ThreadFunction(void*) + 69
    3   ...ple.CoreServices.CarbonCore
    0x00007fff875900d1 PrivateMPEntryPoint + 63
    4   libSystem.B.dylib        
    0x00007fff840cefd6 _pthread_start + 331
    5   libSystem.B.dylib        
    0x00007fff840cee89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib        
    0x00007fff840d0a6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff840d4881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore
    0x00007fff8764ed87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore
    0x00007fff875bdff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore
    0x00007fff875b7efb MPWaitOnQueue + 215
    5   AdobeACE                 
    0x000000010598418d 0x10594a000 + 237965
    6   AdobeACE                 
    0x0000000105983b3a 0x10594a000 + 236346
    7   ...ple.CoreServices.CarbonCore
    0x00007fff875900d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib        
    0x00007fff840cefd6 _pthread_start + 331
    9   libSystem.B.dylib        
    0x00007fff840cee89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib        
    0x00007fff840d0a6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff840d08f9 nanosleep + 148
    2   com.adobe.PSAutomate     
    0x0000000116fabfdb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate     
    0x0000000116f8df13 ScObjects::BridgeTalkThread::run() + 163
    4   com.adobe.PSAutomate     
    0x0000000116fac0d6 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib        
    0x00007fff840cefd6 _pthread_start + 331
    6   libSystem.B.dylib        
    0x00007fff840cee89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib        
    0x00007fff840d0a6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff840d4881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl      
    0x0000000118a87ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl      
    0x000000011883fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl      
    0x0000000118a87e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x0000000118a8816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000118a88299 APXGetHostAPI + 2469145
    7   libSystem.B.dylib        
    0x00007fff840cefd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff840cee89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib        
    0x00007fff840d0a6a __semwait_signal + 10
    1   libSystem.B.dylib        
    0x00007fff840d4881 _pthread_cond_wait + 1286
    2   com.adobe.adobeswfl      
    0x0000000118a87ced APXGetHostAPI + 2467693
    3   com.adobe.adobeswfl      
    0x000000011883fd09 APXGetHostAPI + 75657
    4   com.adobe.adobeswfl      
    0x0000000118a87e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x0000000118a8816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000118a88299 APXGetHostAPI + 2469145
    7   libSystem.B.dylib        
    0x00007fff840cefd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff840cee89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib        
    0x00007fff84095d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff840963ed mach_msg + 59
    2   com.apple.CoreFoundation 
    0x00007fff80fe9902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation 
    0x00007fff80fe8d8f CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIOServices
    0x00007fff881175f7 MIO::DAL::RunLoop::OwnThread(void*) + 147
    5   com.apple.CoreMediaIOServices
    0x00007fff881191c2 CAPThread::Entry(CAPThread*) + 140
    6   libSystem.B.dylib        
    0x00007fff840cefd6 _pthread_start + 331
    7   libSystem.B.dylib        
    0x00007fff840cee89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib        
    0x00007fff84095dda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib        
    0x00007fff840d4772 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl      
    0x0000000118a87cb9 APXGetHostAPI + 2467641
    3   com.adobe.adobeswfl      
    0x0000000118aa406c APXGetHostAPI + 2583276
    4   com.adobe.adobeswfl      
    0x0000000118a87e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x0000000118a8816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000118a88299 APXGetHostAPI + 2469145
    7   libSystem.B.dylib        
    0x00007fff840cefd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff840cee89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib        
    0x00007fff84095dda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib        
    0x00007fff840d4772 _pthread_cond_wait + 1015
    2   com.adobe.adobeswfl      
    0x0000000118a87cb9 APXGetHostAPI + 2467641
    3   com.adobe.adobeswfl      
    0x0000000118c22573 APXGetHostAPI + 4149235
    4   com.adobe.adobeswfl      
    0x0000000118a87e01 APXGetHostAPI + 2467969
    5   com.adobe.adobeswfl      
    0x0000000118a8816a APXGetHostAPI + 2468842
    6   com.adobe.adobeswfl      
    0x0000000118a88299 APXGetHostAPI + 2469145
    7   libSystem.B.dylib        
    0x00007fff840cefd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff840cee89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib        
    0x00007fff840d9956 recvfrom + 10
    1   ServiceManager-Launcher.dylib
    0x000000011b3da562 Invoke + 54020
    2   ServiceManager-Launcher.dylib
    0x000000011b3d96bf Invoke + 50273
    3   ServiceManager-Launcher.dylib
    0x000000011b3d8706 Invoke + 46248
    4   ServiceManager-Launcher.dylib
    0x000000011b3d8761 Invoke + 46339
    5   ServiceManager-Launcher.dylib
    0x000000011b3d87e2 Invoke + 46468
    6   ServiceManager-Launcher.dylib
    0x000000011b3d2eed Invoke + 23695
    7   ServiceManager-Launcher.dylib
    0x000000011b3d3086 Invoke + 24104
    8   ServiceManager-Launcher.dylib
    0x000000011b3d3b0f Invoke + 26801
    9   ServiceManager-Launcher.dylib
    0x000000011b3d3bfd Invoke + 27039
    10  ServiceManager-Launcher.dylib
    0x000000011b3d6eff Invoke + 40097
    11  ServiceManager-Launcher.dylib
    0x000000011b3d71a5 Invoke + 40775
    12  ServiceManager-Launcher.dylib
    0x000000011b3d7764 Invoke + 42246
    13  ServiceManager-Launcher.dylib
    0x000000011b3d7951 Invoke + 42739
    14  ServiceManager-Launcher.dylib
    0x000000011b3c967f Login + 1773
    15  ServiceManager-Launcher.dylib
    0x000000011b3cad01 Login + 7535
    16  ServiceManager-Launcher.dylib
    0x000000011b3d7e88 Invoke + 44074
    17  ServiceManager-Launcher.dylib
    0x000000011b3da2a1 Invoke + 53315
    18  libSystem.B.dylib        
    0x00007fff840cefd6 _pthread_start + 331
    19  libSystem.B.dylib        
    0x00007fff840cee89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib        
    0x00007fff840afa2a __workq_kernreturn + 10
    1   libSystem.B.dylib        
    0x00007fff840afe3c _pthread_wqthread + 917
    2   libSystem.B.dylib        
    0x00007fff840afaa5 start_wqthread + 13
    Thread 13:
    0   libSystem.B.dylib        
    0x00007fff84095d7a mach_msg_trap + 10
    1   libSystem.B.dylib        
    0x00007fff840963ed mach_msg + 59
    2   com.apple.CoreFoundation 
    0x00007fff80fe9902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation 
    0x00007fff80fe8d8f CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation 
    0x00007fff80fe8b16 CFRunLoopRun + 70
    5   com.apple.DesktopServices
    0x00007fff8a68a326 TSystemNotificationTask::SystemNotificationTaskProc(void*) + 514
    6   ...ple.CoreServices.CarbonCore
    0x00007fff875900d1 PrivateMPEntryPoint + 63
    7   libSystem.B.dylib        
    0x00007fff840cefd6 _pthread_start + 331
    8   libSystem.B.dylib        
    0x00007fff840cee89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib        
    0x00007fff840afa2a __workq_kernreturn + 10
    1   libSystem.B.dylib        
    0x00007fff840afe3c _pthread_wqthread + 917
    2   libSystem.B.dylib        
    0x00007fff840afaa5 start_wqthread + 13
    Thread 15:  Dispatch queue: TFSVolumeInfo::GetSyncGCDQueue
    0   libSystem.B.dylib        
    0x00007fff840d04aa lstat64 + 10
    1   com.apple.LaunchServices 
    0x00007fff884aa8cc FSNodePrepareStatInfo + 180
    2   com.apple.LaunchServices 
    0x00007fff884a9d57 _LSBundleCopyOrCheckNode + 706
    3   com.apple.LaunchServices 
    0x00007fff884af421 _LSEvaluateClaimArray(LSBindingState*, unsigned int const*, unsigned int) + 1254
    4   com.apple.LaunchServices 
    0x00007fff884aeb98 _LSGetBinding(LSBindingState*) + 249
    5   com.apple.LaunchServices 
    0x00007fff884baa05 _LSGetBindingStateForNode(LSBindingState*, FSNode*) + 112
    6   com.apple.LaunchServices 
    0x00007fff884ba921 _LSGetBindingForNode + 183
    7   com.apple.LaunchServices 
    0x00007fff884bf07e _LSCopyBindingInfoForItemRefInfo + 777
    8   com.apple.LaunchServices 
    0x00007fff884bdcf6 ISBuildBaseImage(FSRef const*, HFSUniStr255 const*, unsigned int*, FSCatalogInfo*, CustomBadgeResource*, unsigned int, unsigned char*, OpaqueISImageRef**, long) + 1883
    9   com.apple.LaunchServices 
    0x00007fff884bd3ea GetImageForFSItem + 846
    10  com.apple.LaunchServices 
    0x00007fff884bcf12 GetIconRefFromFileInfo + 865
    11  com.apple.DesktopServices
    0x00007fff8a6ae4b8 TFSInfo::CopyIconRef(unsigned int, OpaqueIconRef*&) const + 604
    12  com.apple.DesktopServices
    0x00007fff8a6b0d59 TNode::CopyIconRef(unsigned int, OpaqueIconRef*&, bool) const + 219
    13  com.apple.DesktopServices
    0x00007fff8a6ccc7c TNode::UpdatePropertySynchronous(unsigned int, unsigned int) + 448
    14  com.apple.DesktopServices
    0x00007fff8a6d101f TNode::HandleFetchProperty(TCountedPtr<TNodeTask> const&, TNodePtr const&) + 47
    15  com.apple.DesktopServices
    0x00007fff8a6d27b8 TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&) + 624
    16  com.apple.DesktopServices
    0x00007fff8a6924a8 __PostNodeTaskRequest_block_invoke_2 + 98
    17  libSystem.B.dylib        
    0x00007fff840d1d64 _dispatch_call_block_and_release + 15
    18  libSystem.B.dylib        
    0x00007fff840b08d2 _dispatch_queue_drain + 251
    19  libSystem.B.dylib        
    0x00007fff840b0734 _dispatch_queue_invoke + 57
    20  libSystem.B.dylib        
    0x00007fff840b02de _dispatch_worker_thread2 + 252
    21  libSystem.B.dylib        
    0x00007fff840afc08 _pthread_wqthread + 353
    22  libSystem.B.dylib        
    0x00007fff840afaa5 start_wqthread + 13
    Thread 16:
    0   libSystem.B.dylib        
    0x00007fff840afa2a __workq_kernreturn + 10
    1   libSystem.B.dylib        
    0x00007fff840afe3c _pthread_wqthread + 917
    2   libSystem.B.dylib        
    0x00007fff840afaa5 start_wqthread + 13
    Thread 17:
    0   libSystem.B.dylib        
    0x00007fff840afa2a __workq_kernreturn + 10
    1   libSystem.B.dylib        
    0x00007fff840afe3c _pthread_wqthread + 917
    2   libSystem.B.dylib        
    0x00007fff840afaa5 start_wqthread + 13
    Thread 18:  com.apple.CFSocket.private
    0   libSystem.B.dylib        
    0x00007fff840d9932 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation 
    0x00007fff8100b468 __CFSocketManager + 824
    2   libSystem.B.dylib        
    0x00007fff840cefd6 _pthread_start + 331
    3   libSystem.B.dylib        
    0x00007fff840cee89 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000106f66000  rcx: 0x00007fff5fbf8398  rdx: 0x0000000000000000
      rdi: 0x00000000000002ee  rsi: 0x0000000000000006  rbp: 0x00007fff5fbf83b0  rsp: 0x00007fff5fbf8398
       r8: 0x0000000000000e03   r9: 0x0000000000000000  r10: 0x00007fff840e00fa  r11: 0x0000000000000206
      r12: 0x0000000000000000  r13: 0x000000011811c808  r14: 0x0000000106c2a000  r15: 0x0000000106f660c0
      rip: 0x00007fff840e40b6  rfl: 0x0000000000000206  cr2: 0x0000000112fbc000
    Binary Images:
    0x100000000 -   
    0x1026fbfff +com.adobe.Photoshop 12.1 (12.1x20110328.r.145) (12.1) <568CD2C0-8B76-63A9-A42A-B3D943DD7362> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/MacOS/Adobe Photoshop CS5.1
    0x1032f4000 -   
    0x10336cfef +com.adobe.adobe_caps adobe_caps 4.0.42.0 (4.0.42.0) <7AAC7875-787B-A4BA-F319-2B4425511ED4> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x103378000 -   
    0x10337ffff  org.twain.dsm 1.9.4 (1.9.4) <D32C2B79-7DE8-1609-6BD4-FB55215BD75B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x103387000 -   
    0x103398ff8 +com.adobe.ahclientframework 1.6.0.20 (1.6.0.20) <AD464E16-20D1-A4FC-878D-CF44322F72BC> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0x1033a5000 -   
    0x1033abff7  com.apple.agl 3.0.12 (AGL-3.0.12) <E5986961-7A1E-C304-9BF4-431A32EF1DC2> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x1033b2000 -   
    0x1035b8fef +com.adobe.linguistic.LinguisticManager 5.0.0 (11696) <499B4E7A-08BB-80FC-C220-D57D45CA424F> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x10364b000 -   
    0x1037f9fef +com.adobe.owl AdobeOwl version 3.0.93 (3.0.93) <74CF40F6-B216-DB73-5C8F-FC5533220CD9> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x10389b000 -   
    0x103ccbfef +AdobeMPS ??? (???) <E541F5F1-21BB-D779-1475-B1553950E1B9> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x103e25000 -   
    0x104150ff7 +AdobeAGM ??? (???) <8FE8A26F-F2C4-128B-ECF9-197279A31D70> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x10421d000 -   
    0x104545fe7 +AdobeCoolType ??? (???) <D55BD5E5-B430-7701-A11E-0FF989536E57> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x1045dd000 -   
    0x1045feff7 +AdobeBIBUtils ??? (???) <B37FD8D7-142F-EE1E-4C63-93C1C59B4318> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
    0x10460b000 -   
    0x104636ff6 +AdobeAXE8SharedExpat ??? (???) <C59B0A11-E89B-F50C-916C-D09F40C1BAA3> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedEx pat
    0x104648000 -   
    0x10478cfef +WRServices ??? (???) <76354373-F0BD-0BAF-6FC0-B96DBB371755> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x1047d3000 -   
    0x104838fff +aif_core ??? (???) <0E7876E5-6465-676D-06DE-D8F44E3663EB> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x104854000 -   
    0x10486afff +data_flow ??? (???) <A0C1FB2F-4EB4-7F3E-98E7-82BE18D631B6> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x104882000 -   
    0x104918fff +image_flow ??? (???) <70C5AE43-18D4-7E41-0BB1-FE9EF1792E6C> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x10498f000 -   
    0x1049adfff +image_runtime ??? (???) <140A4ED7-DAAA-2E4F-D211-7E2A491CFD5C> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x1049ca000 -   
    0x104bf9fff +aif_ogl ??? (???) <4E5A4532-CED3-1A19-C852-1C5560F4017A> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x104cd8000 -   
    0x104d6bfff +AdobeOwlCanvas ??? (???) <EC667F6D-0BB6-03EA-41E8-624425B2BF4B> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOwlCanvas
    0x104d8b000 -   
    0x1050d4fef +com.adobe.dvaui.framework dvaui version 5.0.0 (5.0.0.0) <023E0760-0223-AB5D-758C-2C5A052F6AF4> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
    0x105264000 -   
    0x1053e6fe7 +com.adobe.dvacore.framework dvacore version 5.0.0 (5.0.0.0) <42077295-9026-D519-C057-35E07029D97B> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
    0x105488000 -   
    0x105800fff +com.adobe.dvaadameve.framework dvaadameve version 5.0.0 (5.0.0.0) <0E95A0DF-038A-CFF2-EC7B-BDB905CDF5C5> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve
    0x10594a000 -   
    0x105a5ffff +AdobeACE ??? (???) <C544307E-C1E6-FCA8-4D32-2EC0D5820BBD> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x105a84000 -   
    0x105aa0fff +AdobeBIB ??? (???) <C0E29690-D406-8834-CA1D-0A4252A0946E> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x105aaa000 -   
    0x105b1cff7 +com.adobe.amtlib amtlib 4.0.0.21 (4.0.0.21) <E604CBB8-A3F0-69D1-510B-3D8156D37D29> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x105b33000 -   
    0x105c06ffb +AdobeJP2K ??? (???) <BF2DBEA4-E71A-7112-53CA-8E7D73B1EFE5> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x105c26000 -   
    0x105c2aff8 +com.adobe.ape.shim adbeape version 3.1.74.12761 (3.1.74.12761) <09559AEB-61DE-8DE8-4315-BFA0A7D6394B> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x105c2f000 -   
    0x105ca6fff +com.adobe.FileInfo.framework Adobe XMP FileInfo 5.0 -i 33 (debug) (64.140949) <ED51DA76-662A-8156-3D42-2146684A60B6> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x105cc7000 -   
    0x105d25ffd +com.adobe.AdobeXMPCore Adobe XMP Core 5.0 -c 61 (64.140949) <D02D367B-FF1E-AD63-993C-5CD907CCFCCE> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x105d33000 -   
    0x1061cefff +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/Cg.framework/Cg
    0x106754000 -   
    0x1067aafeb +com.adobe.headlights.LogSessionFramework ??? (2.0.1.011) <03B80698-2C3B-A232-F15F-8F08F8963A19> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x1067ef000 -   
    0x106814ffe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
    0x10684e000 -   
    0x106853ffd +com.adobe.AdobeCrashReporter 3.0 (5.5.20101001) <5625AF72-323C-27C5-0094-213D09698D11> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x106857000 -   
    0x1069f4fff +com.adobe.PlugPlug 2.5.0.232 (2.5.0.232) <09F6FBA4-E768-BDFB-35AE-C7EB8EBA2D1A> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x106aa2000 -   
    0x106b88fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2D39CB30-54D9-B03E-5FCF-E53122F87484> /usr/lib/libcrypto.0.9.7.dylib
    0x106be0000 -   
    0x106bf9feb +libtbb.dylib ??? (???) /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/libtbb.dylib
    0x106c0a000 -   
    0x106c10feb +libtbbmalloc.dylib ??? (???) /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/libtbbmalloc.dylib
    0x106c17000 -   
    0x106c17ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
    0x106c1a000 -   
    0x106c22ff3 +com.adobe.boost_threads.framework boost_threads version 5.0.0 (5.0.0.0) <6858DF5A-F020-22A7-B945-14EC277724D4> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
    0x106ced000 -   
    0x106ceffef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x107a40000 -   
    0x107ab4ff3 +com.adobe.amt.services AMTServices 4.0.0.21 (BuildVersion: 4.0; BuildDate: Mon Jan 24 2011 21:49:00) (4.0.0.21) <1B6C37A0-570C-14D0-52A3-87C835F530BB> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/amtservices.framework/Versions/a/amtservices
    0x107af7000 -   
    0x107af8fff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <84C660E9-8370-79D1-2FC0-6C21C3079C17> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x107ea9000 -   
    0x107ec0fe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <1A440248-D188-CA5D-8C20-5FA33647DE93> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x107ec4000 -   
    0x107ee5fef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <76503A7B-58B6-64B9-1207-0C273AF47C1C> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x107ee9000 -   
    0x107ef8fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <1718111B-FC8D-6C8C-09A7-6CEEB0826A66> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x107efc000 -   
    0x107f0efff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <00E29B30-3877-C559-85B3-66BAACBE005B> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x107f12000 -   
    0x107f1afff +com.adobe.asneu.framework asneu version 1.7.0.1 (1.7.0.1) <3D59CB21-F5C7-4232-AB00-DFEB04206024> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/asneu.framework/Versions/a/asneu
    0x111ad3000 -   
    0x111adafff +Enable Async IO ??? (???) <9AE049A5-F53E-657B-D0AE-01C42D817A19> /Applications/Adobe Photoshop CS5.1/Plug-Ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
    0x111ae5000 -   
    0x111aeefff +FastCore ??? (???) <1565E455-4A86-A3BD-113F-CD828F2C5150> /Applications/Adobe Photoshop CS5.1/Plug-Ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
    0x112f8b000 -   
    0x112f8ffff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <917E3DC8-E34D-B130-F61F-50808466E674> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
    0x112f94000 -   
    0x112f9aff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <C35BDA60-35FC-4BE7-B378-DCC73D99E2C9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x113411000 -   
    0x1135a4fe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x11362b000 -   
    0x113651fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x113800000 -   
    0x113863ff3 +MMXCore ??? (???) <2DB6FA8E-4373-9823-C4F5-A9F5F8F80717> /Applications/Adobe Photoshop CS5.1/Plug-Ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
    0x1138eb000 -   
    0x113956ff0 +MultiProcessor Support ??? (???) <4FEA98F6-A072-F0BF-0E30-BEFDBD623611> /Applications/Adobe Photoshop CS5.1/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x114ea5000 -   
    0x114ec5ff7 +com.adobe.ape adbeapecore version 3.1.74.12761 (3.1.74.12761) <48D74CFC-E9C7-143A-F971-2C7F0ACF7602> /Library/Application Support/Adobe/APE/3.101/adbeapecore.framework/adbeapecore
    0x1160c9000 -   
    0x1160f2fef  com.apple.mio.DAL.VDC_4 140.0 (1496) <E22DEEC2-EE3D-03AD-9E02-BDE03CE73588> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.plugin/Cont ents/MacOS/VDC
    0x1162c4000 -   
    0x116368ffb +com.adobe.AdobeExtendScript ExtendScript 4.1.28 (4.1.28.12764) <C53B3FBF-7530-1DAF-66E7-C2E50F25A6DE> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x1163cd000 -   
    0x1163e9ff7 +MeasurementCore ??? (???) <1BE124EE-A88B-8F47-B9E1-1E276FA54327> /Applications/Adobe Photoshop CS5.1/Plug-Ins/Measurements/MeasurementCore.plugin/Contents/MacOS/MeasurementCore
    0x11640b000 -   
    0x116448fff  com.apple.DP.ScreenInputDevice 15.0 (15.0) <69919162-3E04-C270-B8AB-8E26634D4BBB> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/AppleScreenInpu tDevice.plugin/Contents/MacOS/AppleScreenInputDevice
    0x116e2a000 -   
    0x117086fef +com.adobe.PSAutomate 12.1 (12.1) <951D5D57-776F-5A95-24A0-D70623A9902F> /Applications/Adobe Photoshop CS5.1/Plug-Ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/ScriptingSupport
    0x1172a4000 -   
    0x117344fef +com.adobe.AdobeScCore ScCore 4.1.28 (4.1.28.12764) <2A61AEB9-8E9D-8136-9B6F-B4394D6AB7AE> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x117f93000 -   
    0x117fd0feb +com.adobe.AAM.AdobeUpdaterNotificationFramework UpdaterNotifications 2.0.0.15 (2.0.0.15) <188E3565-26D6-6A54-01E2-1BBBF73AE24E> /Applications/Adobe Photoshop CS5.1/Adobe Photoshop CS5.1.app/Contents/Frameworks/updaternotifications.framework/Versions/a/UpdaterNotificati ons
    0x118800000 -   
    0x11966aff3 +com.adobe.adobeswfl ??? (2.0.0.11360) <39C5D47B-EB0F-9FE5-ABA7-7D925DB9C036> /Library/Application Support/Adobe/APE/3.101/adbeapecore.framework/Resources/AdobeSWFL.bundle/Contents/MacOS/A dobeSWFL
    0x11b3c7000 -   
    0x11b3effef +ServiceManager-Launcher.dylib 236.0.0 (compatibility 2.5.0) <DBEE8529-7074-635B-2CAD-DF7BA597D909> /Library/Application Support/Adobe/CS5.5ServiceManager/lib/ServiceManager-Launcher.dylib
    0x200000000 -   
    0x200519fe7  com.apple.GeForce7xxxGLDriver 1.6.36 (6.3.6) <05C55AF0-BB22-AD99-E03A-91E375B5304E> /System/Library/Extensions/GeForce7xxxGLDriver.bundle/Contents/MacOS/GeForce7xxxGLDriver
    0x7fff5fc00000 -
    0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
    0x7fff80003000 -
    0x7fff80004fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
    0x7fff80005000 -
    0x7fff80005ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff80006000 -
    0x7fff80015fef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff8006e000 -
    0x7fff80093ff7  com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff80094000 -
    0x7fff80790ff7  com.apple.CoreGraphics 1.545.0 (???) <58D597B1-EB3B-710E-0B8C-EC114D54E11B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x7fff807ad000 -
    0x7fff807fcfef  libTIFF.dylib ??? (???) <2DDC5A18-35EE-5B59-10D8-0F6925DB3858> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x7fff80800000 -
    0x7fff80847ff7  com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff80848000 -
    0x7fff8088bfef  libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
    0x7fff8088c000 -
    0x7fff808b3ff7  libJPEG.dylib ??? (???) <921A3A14-A69B-F393-1678-5A5D32D4BDF2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x7fff808b4000 -
    0x7fff808e4fef  com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x7fff80c06000 -
    0x7fff80c06ff7  com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff80c07000 -
    0x7fff80c07ff7  com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff80c08000 -
    0x7fff80c53fef  com.apple.ImageCaptureCore 1.1 (1.1) <F23CA537-4F18-76FC-8D9C-ED6E645186FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff80ca9000 -
    0x7fff80d35fef  SecurityFoundation ??? (???) <3F1F2727-C508-3630-E2C1-38361841FCE4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff80d36000 -
    0x7fff80d7dfff  com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff80d7e000 -
    0x7fff80e40fe7  libFontParser.dylib ??? (???) <EF06F16C-0CC9-B4CA-7BD9-0A97FA967340> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x7fff80e41000 -
    0x7fff80e84ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff80e85000 -
    0x7fff80ed4ff7  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <0731C40D-71EF-B417-C83B-54C3527A36EA> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
    0x7fff80ed5000 -
    0x7fff80edaff7  com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x7fff80edb000 -
    0x7fff80f9cfef  com.

    You're crashing deep inside Apple's code drawing the Open/Save dialog.  Looks like it corrupted the heap or freed a bad object while trying to draw icons.
    It's nowhere near any Adobe code, not even a callback function.
    (and I love how the Cocoa code calls into QuickDraw)
    Unfortunately, this appears to be an Apple bug, and there's not much we can do about it.
    You can try deleting ~/Library/Preferences/com.adobe.photoshop.plist  and see if resetting the OS prefs for the dialog helps.

  • Having issue with CS5 on windows 7

    every time i open photoshop whether it a new file or exsiting file the desktop only show the background grid. It started happening after i installed windows internet exlorer 9 beta. i have uninstalled it since then but im still having the issue. Have tried to uninstall and reinstall it since then with no results. Does any have any suggestions. Thanks

    Not sure what the IE9 Beta might have had to do with it, but check your video drivers to ensure you have the latest from the manufacturer of your video card.
    What video card do you have?
    Does disabling the OpenGL setting in Photoshop's Edit - Preferences - Performance dialog help?
    -Noel

  • Popup minimize problem in Firefox

    Hi everyone,
    I'm using JDeveloper 10.1.3.3.0.4157. I'm having problems when I try to minimize a popup window in Firefox. When I do, window minimizes and restores automatically, and it starts "bouncing" to and from the taskbar. To stop it, I must switch to another application by using alt + tab and returning, or open the Task Manager. I've read that window control events cannot be handled, nor can buttons be disabled or hidden.
    Thanks in advance.

    Hi Frank,
    I just created an empty project in JDeveloper, with the [JSF, ADF BC] template, with only the caller window and the dialog window. Plain windows, with just a link in the caller window and an outputText in the dialog window. When I run the program, I open the dialog window through the link (with has only the navigation rule as an action (dialog:helper), and the attribute UseWindow set to true). Then I minimize it, and it does, but then springs back up, then minimizes again, and so on. I tried it in Google Chrome, and it behaves just fine, when you minimize the dialog, it stays minimized.
    If I can't fix it, at least I need to provide a technical explanation for my client. The "bouncing" does not happen if I switch to another application, then back to the dialog, and minimize it. Focus goes to the other application and everything works fine. But when focus goes to the caller Firefox window, the dialog window is restored, and starts to minimize and restore indefinitely. By switching to another application it can be stopped, but I still need to explain this behaviour to my client.
    Thank you for answering, I hope I could make myself clear, as English is not my native language.
    Alejandro

  • I'm trying to factory reset my ipod 5th gen on my mac

    I have already looked up the steps on youtube and what not but none really specify my situation.
    I have the ipod in DFU mode and when I click restore on itunes it opens up the files on my mac and I haven't backed up my ipod on my mac before what do I do or click on?

    Try:
    Restore ipod button in iTunes gives open file dialog - HELP!

  • Firefox Minimize Problem

    Hello
    My problem with firefox is when ever Firefox is minimalized or scrolled down all the games i try to run (in full screen mode and windowed mode) minimalizes or scrolls down as you can call it by itself and even if i press it to open again it just keeps going down it doesent crash just scrolls down.
    This is happening on Every game i have so its not only one separate game this also do not occur when trying other browsers but i cant stand them.
    I am running Firefox with Noscript and DownloadHelper.
    == This happened ==
    Every time Firefox opened
    == It started Randomly just one day without any change to firefox or pluggins

    Hi Frank,
    I just created an empty project in JDeveloper, with the [JSF, ADF BC] template, with only the caller window and the dialog window. Plain windows, with just a link in the caller window and an outputText in the dialog window. When I run the program, I open the dialog window through the link (with has only the navigation rule as an action (dialog:helper), and the attribute UseWindow set to true). Then I minimize it, and it does, but then springs back up, then minimizes again, and so on. I tried it in Google Chrome, and it behaves just fine, when you minimize the dialog, it stays minimized.
    If I can't fix it, at least I need to provide a technical explanation for my client. The "bouncing" does not happen if I switch to another application, then back to the dialog, and minimize it. Focus goes to the other application and everything works fine. But when focus goes to the caller Firefox window, the dialog window is restored, and starts to minimize and restore indefinitely. By switching to another application it can be stopped, but I still need to explain this behaviour to my client.
    Thank you for answering, I hope I could make myself clear, as English is not my native language.
    Alejandro

Maybe you are looking for

  • Advance posting in Travel

    Hi All, I've a scenario where in Trip advance is 2000 and actual trip expense is 1000. After posting the trip to FI, the advance of 1000 is to be recovered thru Payroll. Just wondering on what config I've missed ? Also I couldn't find Subschema for p

  • Transferring data to mda vario II

    This is not a profi-message, so please be patient with me. I am using Nokia communicators (first 9110, now 9210i) since approx. 7 years. My Nokia 9210i is full of important information which I've gathered during these last years. I am doing a backup

  • Macbook does not have my monitor's native display.

    I'm using an acer H233H Monitor, and I have it connected by VGA. I have my macbook screen close, so it is only displaying on my monitor (not extended desktop). My monitor's native screen display is 1920 x 1080. However on system preference i only hav

  • Round Corners on object in Live Paint Group

    Hello, When I apply the Round Corners effect onto any one object in a Live Paint Group, it is applied onto the Group itself, thereby onto all objects in it instead of just the one I selected. Is there a way to apply the effect just onto the one objec

  • Mouse doubleclick sometimes quits apps, opens login window?

    Occasionally, after doubleclicking my mouse (left click of Mighty Mouse), hatch marks in a circle will appear in the center of the screen and then the login window will appear. After I log in, the applications I had open are all closed. The last time