Jbuttons and applets and browsers

hello folks. Well, I finally got my jbuttons to appear in by applet in ie5.5 and it is working fine except when someone resizes the browser window, the jbuttons dissapear. Does anyone know why this my occur? Does anyone know what I can do about it?
The buttons are added to the panel and the panel into the container into init(). I add the container in paint(). Also in paint() I have .setVisible(true) for each button and the container.

Hi!
The reason why your buttons disappear is the layout you
are using.
Flow layout manager gives your components the prefered
size.
Grid layout manager does not.
Border layout is a - let me say - a "mix" of both.
If you use border layout with NORTH, SOUTH, EAST and
WEST your components will be were they used to be.
Add your buttons BorderLayout.SOUTH and they will
stay there even if you resize.
Somebody may correct me if I'm wrong.

Similar Messages

  • Numbers on JButtons and set JButtons to Opaque

    Hi everyone:
    please check for me why numbers(like 1 to 35) don't appears on JButtons, and why I setOpaque(true) to JButtons, it doesn't work. Thanks
    // why I can not see the numbers (1 to 35) in JButtons ????????????
    // and how can I operate setOpaque(true) to JButtons.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.GridLayout;
    public class DrawCalendar extends JPanel{
         private static DrawCalendar dC;
         private static JButton jB1,jB2,jB3;
         private static Dimension dMS;
         private static GridLayout gL;
         private static Container c;
         // why I can not see the numbers (1 to 35) in JButtons ????????????
         public DrawCalendar(){
              JButton j= new JButton("1");
         gL=new GridLayout(5,7,4,4);
              setLayout(gL);
    add(j);
    add(new JButton("2"));
    add(new JButton("3"));
    add(new JButton("4"));
    add(new JButton("5"));
    add(new JButton("6"));
    add(new JButton("7"));
    add(new JButton("8"));
    add(new JButton("9"));
    add(new JButton("10"));
    add(new JButton("11"));
    add(new JButton("12"));
    add(new JButton("12"));
    add(new JButton("14"));
    add(new JButton("15"));
    add(new JButton("16"));
    add(new JButton("17"));
    add(new JButton("18"));
    add(new JButton("19"));
    add(new JButton("20"));
    add(new JButton("21"));
    add(new JButton("22"));
    add(new JButton("23"));
    add(new JButton("24"));
    add(new JButton("25"));
    add(new JButton("26"));
    add(new JButton("27"));
    add(new JButton("28"));
    add(new JButton("29"));
    add(new JButton("30"));
    add(new JButton("31"));
    add(new JButton("32"));
    add(new JButton("33"));
    add(new JButton("34"));
    add(new JButton("35"));
    import java.awt.*;
    import java.awt.Color;
    import javax.swing.*;
    import javax.swing.JButton;
    import javax.swing.JMenuBar;
    public class TestMain extends JFrame{
    private static JButton b1, b2, b3;
    private static TestMain tM;
         private static JPanel jP;
    private static Container c;
    private static DrawCalendar dC;
         public static void main(String[] args){
         tM = new TestMain();
         addItems();
         tM.setVisible(true);
         public TestMain(){
         super(" Test");
         dC=new DrawCalendar();
         setSize(600,600);
    //set up layoutManager
    c=getContentPane();
    c.setLayout ( new GraphPaperLayout(new Dimension (8,20)));
    //set up three Button and one JPanel
    b1=new JButton("1");
    b1.setOpaque(true);
    b2=new JButton("2");
    b2.setOpaque(true);
    b3=new JButton("3");
    b3.setOpaque(true);
    //add the munuBar, the Jpanel and three JButtons
    public static void addItems(){
         c.add(b1, new Rectangle(5,0,1,1));
         c.add(b2, new Rectangle(6,0,1,1));
    c.add(b3, new Rectangle(7,0,1,1));
         c.add(dC, new Rectangle(5,1,3,5));
    import java.awt.*;
    import java.util.Hashtable;
    import java.io.*;
    * The <code>GraphPaperLayout</code> class is a layout manager that
    * lays out a container's components in a rectangular grid, similar
    * to GridLayout. Unlike GridLayout, however, components can take
    * up multiple rows and/or columns. The layout manager acts as a
    * sheet of graph paper. When a component is added to the layout
    * manager, the location and relative size of the component are
    * simply supplied by the constraints as a Rectangle.
    * <p><code><pre>
    * import java.awt.*;
    * import java.applet.Applet;
    * public class ButtonGrid extends Applet {
    * public void init() {
    * setLayout(new GraphPaperLayout(new Dimension(5,5)));
    * // Add a 1x1 Rect at (0,0)
    * add(new Button("1"), new Rectangle(0,0,1,1));
    * // Add a 2x1 Rect at (2,0)
    * add(new Button("2"), new Rectangle(2,0,2,1));
    * // Add a 1x2 Rect at (1,1)
    * add(new Button("3"), new Rectangle(1,1,1,2));
    * // Add a 2x2 Rect at (3,2)
    * add(new Button("4"), new Rectangle(3,2,2,2));
    * // Add a 1x1 Rect at (0,4)
    * add(new Button("5"), new Rectangle(0,4,1,1));
    * // Add a 1x2 Rect at (2,3)
    * add(new Button("6"), new Rectangle(2,3,1,2));
    * </pre></code>
    * @author Michael Martak
    * Updated by Judy Bowen, September 2002 to allow serialization
    public class GraphPaperLayout implements LayoutManager2, Serializable{
    int hgap; //horizontal gap
    int vgap; //vertical gap
    Dimension gridSize; //grid size in logical units (n x m)
    Hashtable compTable; //constraints (Rectangles)
    * Creates a graph paper layout with a default of a 1 x 1 graph, with no
    * vertical or horizontal padding.
    public GraphPaperLayout() {
    this(new Dimension(1,1));
    * Creates a graph paper layout with the given grid size, with no vertical
    * or horizontal padding.
    public GraphPaperLayout(Dimension gridSize) {
    this(gridSize, 0, 0);
    * Creates a graph paper layout with the given grid size and padding.
    * @param gridSize size of the graph paper in logical units (n x m)
    * @param hgap horizontal padding
    * @param vgap vertical padding
    public GraphPaperLayout(Dimension gridSize, int hgap, int vgap) {
    if ((gridSize.width <= 0) || (gridSize.height <= 0)) {
    throw new IllegalArgumentException(
    "dimensions must be greater than zero");
    this.gridSize = new Dimension(gridSize);
    this.hgap = hgap;
    this.vgap = vgap;
    compTable = new Hashtable();
    * @return the size of the graph paper in logical units (n x m)
    public Dimension getGridSize() {
    return new Dimension( gridSize );
    * Set the size of the graph paper in logical units (n x m)
    public void setGridSize( Dimension d ) {
    setGridSize( d.width, d.height );
    * Set the size of the graph paper in logical units (n x m)
    public void setGridSize( int width, int height ) {
    gridSize = new Dimension( width, height );
    public void setConstraints(Component comp, Rectangle constraints) {
    compTable.put(comp, new Rectangle(constraints));
    * Adds the specified component with the specified name to
    * the layout. This does nothing in GraphPaperLayout, since constraints
    * are required.
    public void addLayoutComponent(String name, Component comp) {
    * Removes the specified component from the layout.
    * @param comp the component to be removed
    public void removeLayoutComponent(Component comp) {
    compTable.remove(comp);
    * Calculates the preferred size dimensions for the specified
    * panel given the components in the specified parent container.
    * @param parent the component to be laid out
    * @see #minimumLayoutSize
    public Dimension preferredLayoutSize(Container parent) {
    return getLayoutSize(parent, true);
    * Calculates the minimum size dimensions for the specified
    * panel given the components in the specified parent container.
    * @param parent the component to be laid out
    * @see #preferredLayoutSize
    public Dimension minimumLayoutSize(Container parent) {
    return getLayoutSize(parent, false);
    * Algorithm for calculating layout size (minimum or preferred).
    * <p>
    * The width of a graph paper layout is the largest cell width
    * (calculated in <code>getLargestCellSize()</code> times the number of
    * columns, plus the horizontal padding times the number of columns
    * plus one, plus the left and right insets of the target container.
    * <p>
    * The height of a graph paper layout is the largest cell height
    * (calculated in <code>getLargestCellSize()</code> times the number of
    * rows, plus the vertical padding times the number of rows
    * plus one, plus the top and bottom insets of the target container.
    * @param parent the container in which to do the layout.
    * @param isPreferred true for calculating preferred size, false for
    * calculating minimum size.
    * @return the dimensions to lay out the subcomponents of the specified
    * container.
    * @see java.awt.GraphPaperLayout#getLargestCellSize
    protected Dimension getLayoutSize(Container parent, boolean isPreferred) {
    Dimension largestSize = getLargestCellSize(parent, isPreferred);
    Insets insets = parent.getInsets();
    largestSize.width = ( largestSize.width * gridSize.width ) +
    ( hgap * ( gridSize.width + 1 ) ) + insets.left + insets.right;
    largestSize.height = ( largestSize.height * gridSize.height ) +
    ( vgap * ( gridSize.height + 1 ) ) + insets.top + insets.bottom;
    return largestSize;
    * Algorithm for calculating the largest minimum or preferred cell size.
    * <p>
    * Largest cell size is calculated by getting the applicable size of each
    * component and keeping the maximum value, dividing the component's width
    * by the number of columns it is specified to occupy and dividing the
    * component's height by the number of rows it is specified to occupy.
    * @param parent the container in which to do the layout.
    * @param isPreferred true for calculating preferred size, false for
    * calculating minimum size.
    * @return the largest cell size required.
    protected Dimension getLargestCellSize(Container parent,
    boolean isPreferred) {
    int ncomponents = parent.getComponentCount();
    Dimension maxCellSize = new Dimension(0,0);
    for ( int i = 0; i < ncomponents; i++ ) {
    Component c = parent.getComponent(i);
    Rectangle rect = (Rectangle)compTable.get(c);
    if ( c != null && rect != null ) {
    Dimension componentSize;
    if ( isPreferred ) {
    componentSize = c.getPreferredSize();
    } else {
    componentSize = c.getMinimumSize();
    // Note: rect dimensions are already asserted to be > 0 when the
    // component is added with constraints
    maxCellSize.width = Math.max(maxCellSize.width,
    componentSize.width / rect.width);
    maxCellSize.height = Math.max(maxCellSize.height,
    componentSize.height / rect.height);
    return maxCellSize;
    * Lays out the container in the specified container.
    * @param parent the component which needs to be laid out
    public void layoutContainer(Container parent) {
    synchronized (parent.getTreeLock()) {
    Insets insets = parent.getInsets();
    int ncomponents = parent.getComponentCount();
    if (ncomponents == 0) {
    return;
    // Total parent dimensions
    Dimension size = parent.getSize();
    int totalW = size.width - (insets.left + insets.right);
    int totalH = size.height - (insets.top + insets.bottom);
    // Cell dimensions, including padding
    int totalCellW = totalW / gridSize.width;
    int totalCellH = totalH / gridSize.height;
    // Cell dimensions, without padding
    int cellW = (totalW - ( (gridSize.width + 1) * hgap) )
    / gridSize.width;
    int cellH = (totalH - ( (gridSize.height + 1) * vgap) )
    / gridSize.height;
    for ( int i = 0; i < ncomponents; i++ ) {
    Component c = parent.getComponent(i);
    Rectangle rect = (Rectangle)compTable.get(c);
    if ( rect != null ) {
    int x = insets.left + ( totalCellW * rect.x ) + hgap;
    int y = insets.top + ( totalCellH * rect.y ) + vgap;
    int w = ( cellW * rect.width ) - hgap;
    int h = ( cellH * rect.height ) - vgap;
    c.setBounds(x, y, w, h);
    // LayoutManager2 /////////////////////////////////////////////////////////
    * Adds the specified component to the layout, using the specified
    * constraint object.
    * @param comp the component to be added
    * @param constraints where/how the component is added to the layout.
    public void addLayoutComponent(Component comp, Object constraints) {
    if (constraints instanceof Rectangle) {
    Rectangle rect = (Rectangle)constraints;
    if ( rect.width <= 0 || rect.height <= 0 ) {
    throw new IllegalArgumentException(
    "cannot add to layout: rectangle must have positive width and height");
    if ( rect.x < 0 || rect.y < 0 ) {
    throw new IllegalArgumentException(
    "cannot add to layout: rectangle x and y must be >= 0");
    setConstraints(comp, rect);
    } else if (constraints != null) {
    throw new IllegalArgumentException(
    "cannot add to layout: constraint must be a Rectangle");
    * Returns the maximum size of this component.
    * @see java.awt.Component#getMinimumSize()
    * @see java.awt.Component#getPreferredSize()
    * @see LayoutManager
    public Dimension maximumLayoutSize(Container target) {
    return new Dimension(Integer.MAX_VALUE, Integer.MAX_VALUE);
    * Returns the alignment along the x axis. This specifies how
    * the component would like to be aligned relative to other
    * components. The value should be a number between 0 and 1
    * where 0 represents alignment along the origin, 1 is aligned
    * the furthest away from the origin, 0.5 is centered, etc.
    public float getLayoutAlignmentX(Container target) {
    return 0.5f;
    * Returns the alignment along the y axis. This specifies how
    * the component would like to be aligned relative to other
    * components. The value should be a number between 0 and 1
    * where 0 represents alignment along the origin, 1 is aligned
    * the furthest away from the origin, 0.5 is centered, etc.
    public float getLayoutAlignmentY(Container target) {
    return 0.5f;
    * Invalidates the layout, indicating that if the layout manager
    * has cached information it should be discarded.
    public void invalidateLayout(Container target) {
    // Do nothing

    Hello,
    I think you have really a problem with this layout.
    Please first check the standard [url http://java.sun.com/docs/books/tutorial/uiswing/layout/using.html]LayoutManager.
    JButtons are opaque usually and they will be shown if you use another LayoutManager:import java.awt.*;
    import javax.swing.*;
    class DrawCalendar extends JPanel
         private static DrawCalendar dC;
         private static JButton jB1, jB2, jB3;
         private static Dimension dMS;
         private static GridLayout gL;
         private static Container c;
         // why I can not see the numbers (1 to 35) in JButtons ????????????
         public DrawCalendar()
              JButton j = new JButton("1");
              gL = new GridLayout(5, 7, 4, 4);
              setLayout(gL);
              add(j);
              add(new JButton("2"));
              add(new JButton("3"));
              add(new JButton("4"));
              add(new JButton("5"));
              add(new JButton("6"));
              add(new JButton("7"));
              add(new JButton("8"));
              add(new JButton("9"));
              add(new JButton("10"));
              add(new JButton("11"));
              add(new JButton("12"));
              add(new JButton("12"));
              add(new JButton("14"));
              add(new JButton("15"));
              add(new JButton("16"));
              add(new JButton("17"));
              add(new JButton("18"));
              add(new JButton("19"));
              add(new JButton("20"));
              add(new JButton("21"));
              add(new JButton("22"));
              add(new JButton("23"));
              add(new JButton("24"));
              add(new JButton("25"));
              add(new JButton("26"));
              add(new JButton("27"));
              add(new JButton("28"));
              add(new JButton("29"));
              add(new JButton("30"));
              add(new JButton("31"));
              add(new JButton("32"));
              add(new JButton("33"));
              add(new JButton("34"));
              add(new JButton("35"));
    public class TestMain extends JFrame
         private static JButton b1, b2, b3;
         private static TestMain tM;
         private static JPanel jP;
         private static Container c;
         private static DrawCalendar dC;
         public static void main(String[] args)
              tM = new TestMain();
              addItems();
              tM.setVisible(true);
         public TestMain()
              super(" Test");
              dC = new DrawCalendar();
              setSize(600, 600);
              //set up layoutManager
              c = getContentPane();
              c.setLayout(new FlowLayout());
              //set up three Button and one JPanel
              b1 = new JButton("1");
              b1.setOpaque(true);
              b2 = new JButton("2");
              b2.setOpaque(true);
              b3 = new JButton("3");
              b3.setOpaque(true);
         //add the munuBar, the Jpanel and three JButtons
         public static void addItems()
              c.add(b1);
              c.add(b2);
              c.add(b3);
              c.add(dC);
    }regards
    Tim

  • ActionListener with JButton and JMenu

    How do I implement actions for both a JButton and a JMenuItem? Would I have to set it in the actionPerformed method(Action e), because that doesn't seem to work, or else I don't know how to do it. Help would be appreciated.

    But the thing is that I don't want the same action for both the Button and MenuItem.Then create separate ActionListeners for each component.
    button.add(new ActionListener()
        public void actionPerformed(ActionEvent e)
            // add your code here
    }Or test which button was pressed in the actionPerformed method. The Swing tutorial on How to Use Buttons, gives example of this:
    http://java.sun.com/docs/books/tutorial/uiswing/components/button.html

  • How do I open web sites and browsers in full screen mode without having to expand them

    How do I open Websites and browsers in full screen mode  without having to expand them.

    Scotlow wrote:
    How do I open Websites and browsers in full screen mode  without having to expand them.

  • Everything crashes! Programs and browsers all suddenly crashing. 10.6.8

    Programs and browsers all suddenly crashing. MacBook Pro on SnowLeopard 10.6.8.
    Photoshop, Safari, etc. all open but crash soon after.
    Recently had Ram upgrade to 8GB.
    Below is the system report. Any clues?
    I can include the Safari and Psd. crashes if that helps.
    I did repair the permissions for the disk, but it is still happening.
    HELP!
    EtreCheck version: 1.9.15 (52)
    Report generated October 6, 2014 3:09:38 PM CDT
    Hardware Information: ?
      MacBook Pro (17-inch, Early 2009) (Verified)
      MacBook Pro - model: MacBookPro5,2
      1 2.66 GHz Intel Core 2 Duo CPU: 2 cores
      8 GB RAM
    Video Information: ?
      NVIDIA GeForce 9600M GT - VRAM: 512 MB
      spdisplays_display_connector
      spdisplays_display_connector
      NVIDIA GeForce 9400M - VRAM: 256 MB
      Color LCD 1920 x 1200
      spdisplays_display_connector
    System Software: ?
      Mac OS X 10.6.8 (10K549) - Uptime: 3 days 2:39:5
    Disk Information: ?
      TOSHIBA MK5065GSXF disk0 : (465.76 GB)
      S.M.A.R.T. Status: Verified
      - (disk0s1) <not mounted>: 200 MB
      Macintosh HD (disk0s2) / [Startup]: 465.44 GB (327.69 GB free)
      HL-DT-ST DVDRW  GS21N 
    USB Information: ?
      Apple Inc. Built-in iSight
      Apple, Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
    Kernel Extensions: ?
      [not loaded] com.Belcarra.iokit.USBLAN_netpart (2.0.2) Support
      [not loaded] com.Belcarra.iokit.USBLAN_usbpart (2.0.2) Support
      [not loaded] com.FTDI.driver.FTDIUSBSerialDriver (1.1.2) Support
      [not loaded] com.RemoteControl.USBLAN.panther (1.6.1) Support
      [not loaded] com.RemoteControl.USBLAN.usbpart (2.0.6) Support
      [not loaded] com.belcarra.iokit.netpart.panther (1.6.1) Support
      [not loaded] com.belcarra.iokit.usbpart.panther (1.6.1) Support
      [not loaded] com.cisco.kext.acsock (1.1.0 - SDK 10.0) Support
      [not loaded] com.gretagmacbeth.EyeOne.NoClassic (1.0.0) Support
      [not loaded] com.rim.driver.BlackBerryUSBDriverInt (0.0.33) Support
      [not loaded] com.rim.driver.BlackBerryUSBDriverVSP (0.0.33) Support
      [not loaded] com.roxio.TDIXController (1.6) Support
    Startup Items: ?
      FTDIReEnumerate: Path: /Library/StartupItems/FTDIReEnumerate
      Qmaster: Path: /Library/StartupItems/Qmaster
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.adobe.SwitchBoard.plist Support
      [loaded] com.adobe.versioncueCS3.plist Support
      [running] com.cisco.anyconnect.vpnagentd.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [running] com.rim.BBDaemon.plist Support
    Launch Agents: ?
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.cisco.anyconnect.gui.plist Support
      [running] com.epson.eventmanager.agent.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [running] com.puredigitaltechnologies.FlipShare.AutoRun.plist Support
      [running] com.rim.BBLaunchAgent.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [loaded] com.adobe.ARM.[...].plist Support
    User Login Items: ?
      YouSendIt Desktop App
      Dropbox
      Mail
    Internet Plug-ins: ?
      AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.152 - SDK 10.6 Support
      JavaAppletPlugin: Version: 13.9.8 - SDK 10.6 Check version
      Flash Player: Version: 15.0.0.152 - SDK 10.6 Support
      AdobePDFViewer: Version: 10.1.1 Support
      QuickTime Plugin: Version: 7.6.6
      GarminGpsControl: Version: 2.7.3.0 Release Support
      Silverlight: Version: 4.0.60531.0 Support
      iPhotoPhotocast: Version: 7.0
    Safari Extensions: ?
      Omnibar (Disabled)
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.2
    User Internet Plug-ins ?
      fbplugin_1_0_3: Version: (null) Support
    3rd Party Preference Panes: ?
      3ivx MPEG-4  Support
      Adobe Version Cue CS3  Support
      Flash Player  Support
      Perian  Support
      StuffIt AVR  Support
    Time Machine: ?
      Time Machine information requires OS X 10.7 "Lion" or later.
    Top Processes by CPU: ?
          6% WindowServer
          2% hidd
          0% loginwindow
          0% BBLaunchAgent
          0% WebProcess
    Top Processes by Memory: ?
      164 MB WebProcess
      131 MB Safari
      82 MB WindowServer
      66 MB Mail
      66 MB Dropbox
    Virtual Memory Information: ?
      5.70 GB Free RAM
      885 MB Active RAM
      501 MB Inactive RAM
      711 MB Wired RAM
      2 TB Page-ins
      2.67 GB Page-outs

    Here is the Psd. crash report.
    Process:         Adobe Photoshop CS6 [4629]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier:      com.adobe.Photoshop
    Version:         13.0.0 (20120315.r.428)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [102]
    Date/Time:       2014-10-06 14:40:09.599 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          -5038 sec
    Crashes Since Last Report:           3
    Per-App Interval Since Last Report:  25127720 sec
    Per-App Crashes Since Last Report:   25
    Anonymous UUID:                      C57650BD-EF7B-486E-B2B5-25C7B35E6A58
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.apple.GeForceGLDriver     0x0000000200012010 gldAttachDrawable + 2528
    1   com.apple.GeForceGLDriver     0x00000002000d63d7 gldUpdateDispatch + 14343
    2   GLEngine                      0x000000011ded0d74 glFlushRender_Exec + 57
    3   com.adobe.Photoshop           0x00000001000fbf7b 0x100000000 + 1032059
    4   com.adobe.Photoshop           0x00000001000fc534 0x100000000 + 1033524
    5   com.adobe.Photoshop           0x000000010011f339 0x100000000 + 1176377
    6   com.adobe.Photoshop           0x000000010011f911 0x100000000 + 1177873
    7   com.adobe.Photoshop           0x0000000100ad80e3 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2629507
    8   com.adobe.Photoshop           0x0000000100ad87d6 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 2631286
    9   com.adobe.Photoshop           0x00000001014616ed AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 12629389
    10  com.adobe.Photoshop           0x0000000100032d8b 0x100000000 + 208267
    11  com.adobe.Photoshop           0x00000001019aeb6d AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 18188813
    12  com.adobe.Photoshop           0x00000001019ae964 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 18188292
    13  com.apple.AppKit              0x00007fff88b34cc5 -[NSView _drawRect:clip:] + 3390
    14  com.apple.AppKit              0x00007fff88b33938 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1325
    15  com.apple.AppKit              0x00007fff88b33ca2 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2199
    16  com.apple.AppKit              0x00007fff88b3200a -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 767
    17  com.apple.AppKit              0x00007fff88b32ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    18  com.apple.AppKit              0x00007fff88b32ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    19  com.apple.AppKit              0x00007fff88b32ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    20  com.apple.AppKit              0x00007fff88b32ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    21  com.apple.AppKit              0x00007fff88b32ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    22  com.apple.AppKit              0x00007fff88b32ed6 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4555
    23  com.apple.AppKit              0x00007fff88c509c4 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 276
    24  com.apple.AppKit              0x00007fff88b2e3de -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2683
    25  com.apple.AppKit              0x00007fff88aa7c0e -[NSView displayIfNeeded] + 969
    26  com.apple.AppKit              0x00007fff88a5d5a4 -[NSNextStepFrame displayIfNeeded] + 76
    27  com.adobe.owl                 0x0000000103ab2016 OWLControlBarGetMinimumSize + 40073
    28  com.adobe.owl                 0x0000000103a91a77 0x103a63000 + 191095
    29  com.adobe.owl                 0x0000000103a91527 0x103a63000 + 189735
    30  com.adobe.owl                 0x0000000103aaa611 OWLControlBarGetMinimumSize + 8836
    31  com.adobe.owl                 0x0000000103ab778f OWLWidgetGetIsClosed + 313
    32  com.adobe.owl                 0x0000000103ab6fdb OWLWidgetShow + 473
    33  com.adobe.Photoshop           0x0000000101333e7e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 11394334
    34  com.adobe.Photoshop           0x0000000101331bc2 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 11385442
    35  com.adobe.Photoshop           0x00000001005bb898 0x100000000 + 6011032
    36  com.adobe.Photoshop           0x00000001005afde7 0x100000000 + 5963239
    37  com.adobe.Photoshop           0x00000001005b4590 0x100000000 + 5981584
    38  com.adobe.Photoshop           0x00000001005b77ec 0x100000000 + 5994476
    39  com.adobe.Photoshop           0x00000001005ad3ae 0x100000000 + 5952430
    40  com.adobe.Photoshop           0x000000010001faa2 0x100000000 + 129698
    41  com.adobe.Photoshop           0x00000001019202d4 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17604980
    42  com.apple.Foundation          0x00007fff81de0bc5 __NSFireTimer + 114
    43  com.apple.CoreFoundation      0x00007fff8023dbb8 __CFRunLoopRun + 6488
    44  com.apple.CoreFoundation      0x00007fff8023bd8f CFRunLoopRunSpecific + 575
    45  com.apple.HIToolbox           0x00007fff843587ee RunCurrentEventLoopInMode + 333
    46  com.apple.HIToolbox           0x00007fff843585f3 ReceiveNextEventCommon + 310
    47  com.apple.HIToolbox           0x00007fff843584ac BlockUntilNextEventMatchingListInMode + 59
    48  com.apple.AppKit              0x00007fff88a77eb2 _DPSNextEvent + 708
    49  com.apple.AppKit              0x00007fff88a77801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    50  com.apple.AppKit              0x00007fff88a3d68f -[NSApplication run] + 395
    51  com.adobe.Photoshop           0x0000000101920402 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17605282
    52  com.adobe.Photoshop           0x000000010192266e AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 17614094
    53  com.adobe.Photoshop           0x00000001005ae27c 0x100000000 + 5956220
    54  com.adobe.Photoshop           0x00000001007b074f boost::system::system_error::what() const + 1999183
    55  com.adobe.Photoshop           0x00000001007b0999 boost::system::system_error::what() const + 1999769
    56  com.adobe.Photoshop           0x000000010054b24c 0x100000000 + 5550668
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x00007fff8558cc0a kevent + 10
    1   libSystem.B.dylib             0x00007fff8558eadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib             0x00007fff8558e7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib             0x00007fff8558e2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib             0x00007fff8558dc08 _pthread_wqthread + 353
    5   libSystem.B.dylib             0x00007fff8558daa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib             0x00007fff855aea6a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff855b2881 _pthread_cond_wait + 1286
    2   MultiProcessor Support        0x000000011db100f3 main + 8403
    3   MultiProcessor Support        0x000000011db101b0 main + 8592
    4   MultiProcessor Support        0x000000011db2cf50 main + 126768
    5   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    6   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib             0x00007fff855aea6a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff855b2881 _pthread_cond_wait + 1286
    2   ...ple.CoreServices.CarbonCore 0x00007fff8517ed87 TSWaitOnCondition + 118
    3   ...ple.CoreServices.CarbonCore 0x00007fff850edff8 TSWaitOnConditionTimedRelative + 177
    4   ...ple.CoreServices.CarbonCore 0x00007fff850e7efb MPWaitOnQueue + 215
    5   com.adobe.ACE                 0x00000001051482c9 0x10510f000 + 234185
    6   com.adobe.ACE                 0x00000001051475da 0x10510f000 + 230874
    7   ...ple.CoreServices.CarbonCore 0x00007fff850c00d1 PrivateMPEntryPoint + 63
    8   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    9   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib             0x00007fff855aea6a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff855ae8f9 nanosleep + 148
    2   com.adobe.PSAutomate          0x00000001231449cb ScObjects::Thread::sleep(unsigned int) + 59
    3   com.adobe.PSAutomate          0x000000012312a7c9 ScObjects::BridgeTalkThread::run() + 169
    4   com.adobe.PSAutomate          0x0000000123144d36 ScObjects::Thread::go(void*) + 166
    5   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    6   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 5:
    0   libSystem.B.dylib             0x00007fff855aea6a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff855b2881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine          0x000000012790cc0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine          0x00000001276baec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine          0x000000012790ccd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x000000012790cd4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x000000012790ce79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib             0x00007fff855aea6a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff855b2881 _pthread_cond_wait + 1286
    2   com.adobe.ape.engine          0x000000012790cc0d APXGetHostAPI + 2516093
    3   com.adobe.ape.engine          0x00000001276baec1 APXGetHostAPI + 83761
    4   com.adobe.ape.engine          0x000000012790ccd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x000000012790cd4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x000000012790ce79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib             0x00007fff85573d7a mach_msg_trap + 10
    1   libSystem.B.dylib             0x00007fff855743ed mach_msg + 59
    2   com.apple.CoreFoundation      0x00007fff8023c902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation      0x00007fff8023bd8f CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIOServices 0x00007fff82d435f7 MIO::DAL::RunLoop::OwnThread(void*) + 147
    5   com.apple.CoreMediaIOServices 0x00007fff82d451c2 CAPThread::Entry(CAPThread*) + 140
    6   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    7   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib             0x00007fff85573dda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff855b2772 _pthread_cond_wait + 1015
    2   com.adobe.ape.engine          0x000000012790cbd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine          0x0000000127924ddb APXGetHostAPI + 2614859
    4   com.adobe.ape.engine          0x000000012790ccd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x000000012790cd4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x000000012790ce79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib             0x00007fff85573dda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib             0x00007fff855b2772 _pthread_cond_wait + 1015
    2   com.adobe.ape.engine          0x000000012790cbd0 APXGetHostAPI + 2516032
    3   com.adobe.ape.engine          0x0000000127a9f2c3 APXGetHostAPI + 4164403
    4   com.adobe.ape.engine          0x000000012790ccd1 APXGetHostAPI + 2516289
    5   com.adobe.ape.engine          0x000000012790cd4a APXGetHostAPI + 2516410
    6   com.adobe.ape.engine          0x000000012790ce79 APXGetHostAPI + 2516713
    7   libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    8   libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib             0x00007fff855b7956 recvfrom + 10
    1   ServiceManager-Launcher.dylib 0x0000000128b0b5ec Invoke + 45721
    2   ServiceManager-Launcher.dylib 0x0000000128b0a813 Invoke + 42176
    3   ServiceManager-Launcher.dylib 0x0000000128b09be0 Invoke + 39053
    4   ServiceManager-Launcher.dylib 0x0000000128b09c66 Invoke + 39187
    5   ServiceManager-Launcher.dylib 0x0000000128b0530f Invoke + 20412
    6   ServiceManager-Launcher.dylib 0x0000000128b05616 Invoke + 21187
    7   ServiceManager-Launcher.dylib 0x0000000128b05cd7 Invoke + 22916
    8   ServiceManager-Launcher.dylib 0x0000000128b05f41 Invoke + 23534
    9   ServiceManager-Launcher.dylib 0x0000000128b0861d Invoke + 33482
    10  ServiceManager-Launcher.dylib 0x0000000128b08775 Invoke + 33826
    11  ServiceManager-Launcher.dylib 0x0000000128b08fb2 Invoke + 35935
    12  ServiceManager-Launcher.dylib 0x0000000128b090ad Invoke + 36186
    13  ServiceManager-Launcher.dylib 0x0000000128afbd6b Login + 480
    14  ServiceManager-Launcher.dylib 0x0000000128aff7ad Login + 15394
    15  ServiceManager-Launcher.dylib 0x0000000128b09412 Invoke + 37055
    16  ServiceManager-Launcher.dylib 0x0000000128b0b253 Invoke + 44800
    17  libSystem.B.dylib             0x00007fff855acfd6 _pthread_start + 331
    18  libSystem.B.dylib             0x00007fff855ace89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib             0x00007fff8558da2a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff8558de3c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff8558daa5 start_wqthread + 13
    Thread 12:
    0   libSystem.B.dylib             0x00007fff8558da2a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff8558de3c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff8558daa5 start_wqthread + 13
    Thread 13:
    0   libSystem.B.dylib             0x00007fff8558da2a __workq_kernreturn + 10
    1   libSystem.B.dylib             0x00007fff8558de3c _pthread_wqthread + 917
    2   libSystem.B.dylib             0x00007fff8558daa5 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000005fbf9410  rbx: 0x0000000000000001  rcx: 0x00007fff85573d7a  rdx: 0x00000000e00002c2
      rdi: 0x00000000e00002c2  rsi: 0x00007fff709b95e0  rbp: 0x00007fff5fbf9340  rsp: 0x00007fff5fbf9340
       r8: 0x0000000000000e03   r9: 0x0000000000000000  r10: 0x00000000000010bc  r11: 0x0000000000000206
      r12: 0x0000000125063000  r13: 0x0000000106f28000  r14: 0x0000000000000000  r15: 0x00007fff5fbf9370
      rip: 0x0000000200012010  rfl: 0x0000000000010296  cr2: 0x0000000000000000
    Binary Images:
           0x100000000 -        0x10333cfff +com.adobe.Photoshop 13.0.0 (20120315.r.428) <6A87A703-3170-CA73-8C77-35C282C4E264> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
           0x1039bf000 -        0x1039ebff7 +libtbb.dylib ??? (???) <57655978-A378-BE1E-7905-7D7F951AD6F7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbb.dylib
           0x103a02000 -        0x103a10ff3 +libtbbmalloc.dylib ??? (???) <CB038B96-2999-5EB1-E26A-7720A7A8F8CD> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbbmalloc.dylib
           0x103a24000 -        0x103a2bfff  org.twain.dsm 1.9.4 (1.9.4) <D32C2B79-7DE8-1609-6BD4-FB55215BD75B> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x103a33000 -        0x103a4dff7 +com.adobe.ahclientframework 1.7.0.56 (1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x103a56000 -        0x103a5cff7  com.apple.agl 3.0.12 (AGL-3.0.12) <E5986961-7A1E-C304-9BF4-431A32EF1DC2> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x103a63000 -        0x103c71fff +com.adobe.owl AdobeOwl version 4.0.93 (4.0.93) <CB035C4D-044D-4004-C887-814F944E62ED> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x103cb2000 -        0x1040f8ff7 +com.adobe.MPS AdobeMPS 5.8.0.19463 (5.8.0.19463) <8A4BA3B2-6F6A-3958-ABDE-C3E8F21373B0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x104174000 -        0x1044cdff7 +com.adobe.AGM AdobeAGM 4.26.17.19243 (4.26.17.19243) <E96C804B-158B-D4A2-9A64-482F9ADC29D0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x104536000 -        0x104897fef +com.adobe.CoolType AdobeCoolType 5.10.31.19243 (5.10.31.19243) <8BFF14FB-AA14-1CBF-C2A3-715363B5A841> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1048e4000 -        0x10490cff7 +com.adobe.BIBUtils AdobeBIBUtils 1.1.01 (1.1.01) <9BDD08A8-2DD8-A570-7A7B-EDAA7097D61B> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x104913000 -        0x10493ffff +com.adobe.AXE8SharedExpat AdobeAXE8SharedExpat 3.7.101.18636 (3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8 SharedExpat
           0x104962000 -        0x104aafff7 +com.winsoft.wrservices WRServices 5.0.0 (5.0.0) <FFA48E0A-A17C-A04F-AE20-6815EB944DEA> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x104b23000 -        0x104b92fef +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <924155A9-D00E-B862-C490-5099BA70B978> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x104bb9000 -        0x104c12fff +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <BC353D4E-1AE2-3FB5-D3EE-81A09C0C4328> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
           0x104cb2000 -        0x104d39ff7 +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <5FCA15B4-F721-09C3-B412-1F86D9D7DE9E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
           0x104d9e000 -        0x104db9ff7 +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <BB7B342A-8CBC-4B73-58A2-9B062F590EBC> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
           0x104dd3000 -        0x105010fff +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <6839CFB1-74EE-B205-7D82-ABC5428E0810> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x10510f000 -        0x105288fff +com.adobe.ACE AdobeACE 2.19.18.19243 (2.19.18.19243) <7F28B188-1D1B-20C9-BBB9-B74FCC12ECAD> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x10529b000 -        0x1052bafff +com.adobe.BIB AdobeBIB 1.2.02.19243 (1.2.02.19243) <B7D7EE28-D604-2989-B099-62AEF4885C21> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x1052c1000 -        0x1053a5fe7 +com.adobe.amtlib amtlib 6.0.0.75 (6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x1053b6000 -        0x10547bfff +com.adobe.JP2K 2.0.0 (2.0.0.18562) <B14B096C-AA23-BA8F-E3AE-8DB102F9D161> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x1054c8000 -        0x1054ccff7 +com.adobe.ape.shim 3.3.8.19346 (3.3.8.19346) <13D5CEF7-6090-CD66-8DA0-190771950F76> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1054d2000 -        0x105550fff +com.adobe.FileInfo.framework Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 (66.145433) <5C63613F-6BDE-1C29-D3FD-9D292F9ADB12> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x105561000 -        0x1055c1ff7 +com.adobe.AdobeXMPCore Adobe XMP Core 5.3 -c 11 (66.145661) <B475CD07-1024-560D-5BFE-2A6FCE63925C> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x1055cb000 -        0x105b23fef +com.nvidia.cg 2.2.0006 (???) /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/Cg.framework/Cg
           0x106180000 -        0x1061eefef +com.adobe.headlights.LogSessionFramework ??? (2.1.2.1652) <25E6F475-1522-419C-2169-547FCF2FD97F> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x106242000 -        0x106267ffe +adobepdfsettings ??? (???) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsetti ngs
           0x1062a2000 -        0x1062a6ff7 +com.adobe.AdobeCrashReporter 6.0 (6.0.20120201) <A6B1F3BD-5DB0-FEE5-708A-B54E5CA80481> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashR eporter
           0x1062ac000 -        0x10645cfef +com.adobe.PlugPlug 3.0.0.383 (3.0.0.383) <908DBB12-D2AC-1844-BD2A-F1C483424917> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x106513000 -        0x106533fff +com.adobe.AIF AdobeAIF 3.0.00 (3.0.00) <DC3301F2-FC6E-70C7-3927-B0DD024210D6> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_ocl.framework/Versions/A/aif_ocl
           0x10654d000 -        0x10660afff +com.adobe.AdobeExtendScript ExtendScript 4.2.12 (4.2.12.18602) <0957DFA6-0593-CE4B-8638-00F32113B07B> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendS cript
           0x106654000 -        0x106702fef +com.adobe.AdobeScCore ScCore 4.2.12 (4.2.12.18602) <9CEE95E5-2FC6-5E58-02A4-138EA6F8D894> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x10673f000 -        0x106839fe7 +com.adobe.AXEDOMCore AdobeAXEDOMCore 3.7.101.18636 (3.7.101.18636) <C7652AF2-56D7-8AF8-A207-0BDEDDFF0BEC> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCor e
           0x1068dd000 -        0x106b26fe7 +com.adobe.linguistic.LinguisticManager 6.0.0 (17206) <301AAE8E-BA78-230E-9500-FCCA204B49CB> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguisti c
           0x106ba9000 -        0x106ba9ff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
           0x106ea4000 -        0x106eb7ff7 +MeasurementCore ??? (???) <2E842E3B-9E4D-6D59-7E5B-A01979288E4B> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Measurements/MeasurementCore.plugin/Contents /MacOS/MeasurementCore
           0x106ec8000 -        0x106eeeff7 +com.adobe.ape 3.3.8.19346 (3.3.8.19346) <79E11A18-8AF4-2515-59F7-4CBE161BF020> /Library/Application Support/Adobe/APE/3.3/adbeapecore.framework/adbeapecore
           0x106f21000 -        0x106f23fef  com.apple.textencoding.unicode 2.3 (2.3) <B254327D-2C4A-3296-5812-6F74C7FFECD9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x106fb4000 -        0x106fb5fff  ATSHI.dylib ??? (???) <D2881261-24A6-4717-D7F9-DF263ABB30F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x109394000 -        0x1093abfe7  libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <1A440248-D188-CA5D-8C20-5FA33647DE93> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x1093af000 -        0x1093d0fef  libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <76503A7B-58B6-64B9-1207-0C273AF47C1C> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
           0x1093d4000 -        0x1093e3fe7  libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <1718111B-FC8D-6C8C-09A7-6CEEB0826A66> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
           0x1093e7000 -        0x1093f9fff  libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <00E29B30-3877-C559-85B3-66BAACBE005B> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
           0x1093fd000 -        0x1093fefff  libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <84C660E9-8370-79D1-2FC0-6C21C3079C17> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x10947b000 -        0x10947bfff +Enable Async IO ??? (???) <F56F1FB2-9CF1-19A8-0D14-885A652B19B7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/Enable Async IO.plugin/Contents/MacOS/Enable Async IO
           0x10a5ed000 -        0x10a5f0fff +FastCore ??? (???) <29AAF151-6CC4-28C5-68B8-0F6600A20435> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/FastCore.plugin/Contents/MacOS/Fa stCore
           0x11d8d2000 -        0x11d918fe7 +com.adobe.pip ??? (6.0.0.1654) <3576D8F9-E2F9-6EB8-6684-C2FE6B0A3731> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobePIP.framework/AdobePIP
           0x11d9d8000 -        0x11da44fff +MMXCore ??? (???) <B9B6C7FB-CE56-8F6F-664E-DFCBBC5E3ADE> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/MMXCore.plugin/Contents/MacOS/MMX Core
           0x11dacb000 -        0x11db50fff +MultiProcessor Support ??? (???) <467BB668-E9DD-60F4-CAAD-768A98174734> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
           0x11deac000 -        0x11e03ffe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x11e070000 -        0x11e493fef  libclh.dylib 3.1.1 C  (3.1.1) <432F5475-F934-92A0-FB49-78F03DA82176> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
           0x11e56d000 -        0x11e593fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x120522000 -        0x120528fe7  libFontStreams.A.dylib 545.0.0 (compatibility 64.0.0) <87272933-FB21-81D0-00E6-92BC3D7583FB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libFontStreams.A.dylib
           0x120561000 -        0x1205dbfef +com.adobe.adobe_caps adobe_caps 6.0.29.0 (6.0.29.0) <C0AD101D-E452-4B4B-5B31-F467133EC20C> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/adobe_caps.framework/adobe_caps
           0x123000000 -        0x12325bff7 +com.adobe.PSAutomate 13.0 (13.0) <6EE89DAF-28E8-B15F-1C4B-18D8D19F6452> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/ScriptingSupport.plugin/Contents/ MacOS/ScriptingSupport
           0x12336d000 -        0x12345efff +com.adobe.AdbeScriptUIFlex ScriptUIFlex 6.2.29 (6.2.29.18602) <2BD3388F-976E-0B1C-55DB-B97A5AF95724> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdbeScriptUIFlex.framework/Versions/A/AdbeScriptUIF lex
           0x1236c4000 -        0x1236c8ff7  libFontRegistryUI.dylib ??? (???) <DE4D4824-5DF2-189F-0FFE-62C81C21F8BB> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x125150000 -        0x125154fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <917E3DC8-E34D-B130-F61F-50808466E674> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x125159000 -        0x12515fff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <C35BDA60-35FC-4BE7-B378-DCC73D99E2C9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x1254a4000 -        0x12558afe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <2D39CB30-54D9-B03E-5FCF-E53122F87484> /usr/lib/libcrypto.0.9.7.dylib
           0x1256a8000 -        0x1256eefff +com.adobe.AAM.AdobeUpdaterNotificationFramework UpdaterNotifications 6.0.0.24 (6.0.0.24) <58C40EB9-2F38-2479-E710-344CAB0CEFB7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/updaternotifications.framework/Versions/A/UpdaterNo tifications
           0x125e16000 -        0x125e53fff  com.apple.DP.ScreenInputDevice 15.0 (15.0) <69919162-3E04-C270-B8AB-8E26634D4BBB> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/Apple ScreenInputDevice.plugin/Contents/MacOS/AppleScreenInputDevice
           0x125e5e000 -        0x125e87fef  com.apple.mio.DAL.VDC_4 140.0 (1496) <E22DEEC2-EE3D-03AD-9E02-BDE03CE73588> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.p lugin/Contents/MacOS/VDC
           0x127672000 -        0x1285f7fd7 +com.adobe.ape.engine 3.3.8.19346 (3.3.8.19346) <5E188E32-37F7-4E0B-0674-E8D16B60074F> /Library/Application Support/Adobe/APE/3.3/adbeapecore.framework/Libraries/adbeapeengine.bundle/Cont ents/MacOS/adbeapeengine
           0x128af6000 -        0x128b21fff +ServiceManager-Launcher.dylib 389.0.0 (compatibility 2.5.0) <7AE35754-3413-206D-4B92-579AAA25B4F8> /Library/Application Support/Adobe/CS6ServiceManager/lib/ServiceManager-Launcher.dylib
           0x200000000 -        0x200787fe7  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <4F23289A-D45A-0630-8D7F-4C35A4D2AA00> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
        0x7fff5fc00000 -     0x7fff5fc3be0f  dyld 132.1 (???) <29DECB19-0193-2575-D838-CF743F0400B2> /usr/lib/dyld
        0x7fff80003000 -     0x7fff80024fe7  libPng.dylib ??? (???) <D8EC7740-EE32-865A-2F75-C9EDE2135510> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff80025000 -     0x7fff800defff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
        0x7fff800eb000 -     0x7fff800eeff7  com.apple.securityhi 4.0 (36638) <AEF55AF1-54D3-DB8D-27A7-E16192E0045A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff801f0000 -     0x7fff80367fe7  com.apple.CoreFoundation 6.6.6 (550.44) <BB4E5158-E47A-39D3-2561-96CB49FA82D4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff80368000 -     0x7fff8044dfef  com.apple.DesktopServices 1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8044e000 -     0x7fff80452ff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
        0x7fff80453000 -     0x7fff804e2fff  com.apple.PDFKit 2.5.5 (2.5.5) <18C99AB3-DACC-3654-200E-0BD09EBFB374> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff80686000 -     0x7fff80687ff7  com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff80688000 -     0x7fff80688ff7  com.apple.Carbon 150 (152) <23704665-E9F4-6B43-1115-2E69F161FC45> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff80689000 -     0x7fff80a26fe7  com.apple.QuartzCore 1.6.3 (227.37) <16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff80a27000 -     0x7fff80cb0ff7  com.apple.security 6.1.2 (55002) <D224882B-D57B-83AF-3781-548BCEACB327> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff80cb1000 -     0x7fff80cf9ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff80da1000 -     0x7fff80da1ff7  com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff80dce000 -     0x7fff80dd1ff7  libCoreVMClient.dylib ??? (???) <75819794-3B7A-8944-D004-7EA6DD7CE836> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff80fdb000 -     0x7fff81002ff7  libJPEG.dylib ??? (???) <08758593-6436-B29E-1DA8-F15597835EC1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff81011000 -     0x7fff81071fe7  com.apple.framework.IOKit 2.0 (???) <4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff810b2000 -     0x7fff810b8ff7  com.apple.CommerceCore 1.0 (9.1) <3691E9BA-BCF4-98C7-EFEC-78DA6825004E> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8125e000 -     0x7fff8126cff7  libkxld.dylib ??? (???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F> /usr/lib/system/libkxld.dylib
        0x7fff8127f000 -     0x7fff812aaff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <3630A97F-55C1-3F34-CA63-3847653C9645> /usr/lib/libxslt.1.dylib
        0x7fff812ab000 -     0x7fff812c2fff  com.apple.ImageCapture 6.1 (6.1) <79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff812c3000 -     0x7fff81334ff7  com.apple.AppleVAFramework 4.10.27 (4.10.27) <6CDBA3F5-6C7C-A069-4716-2B6C3AD5001F> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8136d000 -     0x7fff81441fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff81442000 -     0x7fff8167cfef  com.apple.imageKit 2.0.3 (1.0) <9EA216AF-82D6-201C-78E5-D027D85B51D6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff816a5000 -     0x7fff816b4fef  com.apple.opengl 1.6.14 (1.6.14) <ECAE2D12-5BE3-46E7-6EE5-563B80B32A3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff816f1000 -     0x7fff816fcff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff816fd000 -     0x7fff8173efff  com.apple.SystemConfiguration 1.10.8 (1.10.2) <78D48D27-A9C4-62CA-2803-D0BBED82855A> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8173f000 -     0x7fff8175ffff  com.apple.DirectoryService.Framework 3.6 (621.16) <0ED4A74A-F8FB-366D-6588-F13EA397326F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff81760000 -     0x7fff81942fef  libType1Scaler.dylib ??? (???) <7892C4D7-3E5E-D7DA-AA4E-8D4ACED143D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
        0x7fff81a10000 -     0x7fff81a16ff7  IOSurface ??? (???) <8E302BB2-0704-C6AB-BD2F-C2A6C6A2E2C3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff81a56000 -     0x7fff81a99ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff81a9a000 -     0x7fff81bb9ff7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <0CE8D59B-D0C7-1DCE-3654-37F27F61BEFA> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff81bba000 -     0x7fff81d79fff  com.apple.ImageIO.framework 3.0.6 (3.0.6) <92882FD3-CB3F-D0BE-DDDA-43B4BEE10F58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff81d7a000 -     0x7fff81ffcfff  com.apple.Foundation 6.6.8 (751.63) <E10E4DB4-9D5E-54A8-3FB6-2A82426066E4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff81ffd000 -     0x7fff82016fff  com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff82017000 -     0x7fff82094fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
        0x7fff820f1000 -     0x7fff8222ffff  com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff82270000 -     0x7fff822a3ff7  libTrueTypeScaler.dylib ??? (???) <B7BA8104-FA18-39A2-56E1-922EE7A660AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff822a4000 -     0x7fff822b9ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff822ba000 -     0x7fff82377fff  com.apple.CoreServices.OSServices 359.2 (359.2) <BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff825f1000 -     0x7fff826a1fff  edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff826a2000 -     0x7fff826a8ff7  com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff82795000 -     0x7fff827d6fef  com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff827d7000 -     0x7fff8282dfe7  libTIFF.dylib ??? (???) <2DBEC120-DAA7-3789-36A2-A205BCDF2D72> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8282e000 -     0x7fff82d34ff7  com.apple.VideoToolbox 0.484.60 (484.60) <F55EF548-56E4-A6DF-F3C9-6BA4CFF5D629> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff82d35000 -     0x7fff82d7afff  com.apple.CoreMediaIOServices 140.0 (1496) <D93293EB-0B84-E97D-E78C-9FE8D48AF58E> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
        0x7fff82d7b000 -     0x7fff82dc2fff  com.apple.QuickLookFramework 2.3 (327.7) <A8169A96-FAE6-26B2-A9A9-C78BA5787146> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff82dc3000 -     0x7fff82dc4fff  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
        0x7fff82dc5000 -     0x7fff835cffe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8361b000 -     0x7fff837d9fff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <97A75BFB-0DB6-6F44-36B0-97B7F7208ABB> /usr/lib/libicucore.A.dylib
        0x7fff83b1e000 -     0x7fff83b4dff7  com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff83c53000 -     0x7fff83c6eff7  com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff83c6f000 -     0x7fff83d09fff  com.apple.ApplicationServices.ATS 275.19 (???) <2DE8987F-4563-4D8E-45C3-2F6F786E120D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff83d0a000 -     0x7fff83d0aff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff83d0b000 -     0x7fff83d57fff  libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
        0x7fff83d58000 -     0x7fff83d5cff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff83d5d000 -     0x7fff83d62fff  libGFXShared.dylib ??? (???) <6BBC351E-40B3-F4EB-2F35-05BDE52AF87E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff83d63000 -     0x7fff83df3fff  com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff83df4000 -     0x7fff83e79ff7  com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Version

  • Using JCheckBox, JButton and JTextArea with JDBC

    Hello shlumph and SoulTech2012.
    thanks for the reply. I�m wondering do any of you have links to web pages that include tutorials and source code on using JCheckBox, JButton and JTextArea with JDBC. would any of you who have experience with using JCheckBox, JButton, JTextArea and JDBC together be able to give me a few tips on how to select certain data from a table using JCheckBox, JButton and display the data in a JTextArea? examples of such data could be CD/DVD/Game data - i want users of my video library system to be able to view CD/DVD/Game information by name, age category, type and year. Users should be able to click on a check box (e.g. view by name, age category, type or year) and press a button. What would happen then is that data from the Product table would appear in the text area (which could be placed beneath the check box + button inside a frame and/or panel).
    Thank you very much for your help.

    Quit triple posting and cross posting your questions all over the forum. You already have a posting in this forum on this topic and another posting in the Swing forum and another posting in the Programming forum.

  • Sizing issues JButton and JTextField

    Hi,
    I am new to swing and could use a little guidance on the placement of JButtons and JTextFields on a component. I have tried the setSize method and it doesn't work so I think it has to do with the layout possibly. I need to know how I can resize the testMe button and enlarge the JTextFields. Here is my code.
    I would appreciate any other suggestions as well.
    Thanks,
    Steve
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    class TestButton {
        public static void main(String[] arguments) {
            JFrame frame = new Interface();
            frame.show();
    class Interface extends JFrame {
         private dataPanel screenvar;
         private JTextArea msgout;
         Interface () {
              super("This is a JFrame");
            setSize(600, 200);  // width, height
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JPanel pane = new JPanel();
              // create empty space
              pane.setBorder(BorderFactory.createEmptyBorder(30, 30, 10, 30)); //top, left, bottom, right
              // declare components
              msgout = new JTextArea( 8, 40 );
              dataPanel screenvar = new dataPanel();
              buttonPanel testMe = new buttonPanel(screenvar, msgout);
              // end declare components
            GridLayout grid = new GridLayout(1, 4, 5, 15); // row, col, hgap, vgap
            pane.setLayout(grid);
              pane.add(testMe);
              pane.add(msgout);
                 pane.add( new JScrollPane(msgout));
              pane.add(screenvar);
              msgout.append("Successful");
              setContentPane(pane);
    //          pack();
              setVisible(true);
    class databaseConnection {
    class updateDataFields implements ActionListener {     // 400
         private dataPanel abc;
         private JTextArea msg;
         public updateDataFields(dataPanel xyz, JTextArea msgout) {     // 100
              abc = xyz;
              msg = msgout;
         }     // 100
         public void actionPerformed(ActionEvent evt) {     // 200
              String command = evt.getActionCommand();
                   if (command.equals("TestMe")){     // 300
                        msg.append("\nSuccessful");
                        abc.right01.setText("1000");
                        abc.left02.setText("Hi!");
                        abc.right03.setText("123456");
                   }     // 300
         }     // 200
    }     // 400
    class dataPanel extends JPanel {     // Similar to DataPanel in Duke's Bakery
         JLabel left1, left2, left3, right1, right2, right3;
         JTextField left01, left02, left03, right01, right02, right03;
        public dataPanel () {     // 1
              GridLayout grid = new GridLayout(3, 2, 5, 15); // row, col, hgap, vgap
              setLayout(grid);                    // different than panex.setLayout(xgrid);
              left1 = new JLabel("Left1");
              add(left1);
              left01 = new JTextField(0);
              add(left01);
              right1 = new JLabel("Right1");
              add(right1);
              right01 = new JTextField(0);
              add(right01);
              left2 = new JLabel("Left2");
              add(left2);
              left02 = new JTextField(0);
              add(left02);
              right2 = new JLabel("Right2");
              add(right2);
              right02 = new JTextField(0);
              add(right02);
              left3 = new JLabel("Left3");
              add(left3);
              left03 = new JTextField(0);
              add(left03);
              right3 = new JLabel("Right3");
              add(right3);
              right03 = new JTextField(0);
              add(right03);
    class buttonPanel extends JPanel {     // 200   Similar to ButtonPanel in Duke's Bakery
         public buttonPanel(dataPanel xyz, JTextArea msgout) {     // 100
              GridLayout actionGrid = new GridLayout(1, 1, 5, 15); // row, col, hgap, vgap
              setLayout(actionGrid);                    // different than panex.setLayout(xgrid);
              JButton buttonTest = new JButton("TestMe");
              buttonTest.setSize(5,5);
              buttonTest.addActionListener( new updateDataFields( xyz, msgout ));
              add(buttonTest);
         }     // 100
    }     // 200

    Nope, doesn't work. Does the fact that the JButton is part of GridLayout have any affect on this resizing issue?
    Thanks for your help, I appreciate it.
    Steve

  • JButton and JComboBox problems!!!

    I have a program that has a bunch of different panels, and each of those has panels in it and soforth. Several levels down the line I add a JPanel that has a JComboBox, some JButtons and a JTextField. The textfield works fine: you can type in text, etc. However, I cannot click the JButtons (when you mouse over them, they change color appropriately, but clicking does nothing visually, and the ActionListener does not catch anything). In addition, when clicked, the JComboBox displays in a totally inappropriate area!!! (see screenshot below)
    http://www.duke.edu/~yv2/JComboBox.JPG <-- SCREENSHOT
    Any ideas?

    However, I cannot click the JButtons (when you mouse
    over them, they change color appropriately, but
    clicking does nothing visually, and the
    ActionListener does not catch anything).Make sure you have added the ActionListener to the JButton, and provide implementation for the actionPerformed() method.

  • JButtons and Icons

    Hi,
    I'd like to know how you can display a background image on a JButton, so the button is completely filled by the imaged. I've tried icons but they will only display next to the text...I've also tried extending JButton but can't get it to work...I have to use a JButton or other lightweight component. Anyone know how this is done?
    Regards,
    Falk

    Here's a simple example of extending JButton and rendering an Image into it.
    -Brian
    import java.awt.Graphics;
    import java.awt.Image;
    import javax.swing.JButton;
    * A JButton that contains an image.
    public class ImageButton extends JButton {
            private Image theImage;
             * Constructor.
             * @param anImage An instance of Image to be drawn in the button
            public ImageButton(Image anImage) {
                    theImage = anImage;
             * Render the image on the button.
            public void paintComponent(Graphics g) {
                    super.paintComponent(g);
                    if (theImage != null)
                          g.drawImage(theImage, 0, 0, null);
            public void setImage(Image anImage) {
                    theImage = anImage;
            public Image getImage() {
                    return theImage;
    }

  • JButtons and JTextfields conflicting

    Hey again,
    I have a JPanel which contains a JTextfield, a JButton and a JLabel.
    Basically, the user sticks a word in the JTextfield, presses enter, and the word gets displayed by the JLabel.
    At the moment I have the Jpanel listening for events from both the JTextField and the JButton, which means that clicking the button generates a getActionCommand()and the text on the JButton gets stuck on the JLabel- as if the word had been entered in the JTextField.
    It's easy enough to get something else to listen to the button to get round this, but I just wondered if there's a way of allowing the JPanel to listen to them both without having this conflict (just so that it's easier for me to keep track of everything!)
    Any suggestions muchly appreciated !!

    I just saw your posting date and could not help noticing that you posted this message in January. But I hope others can benefit from our feedbacks. First of all, you do not need to add a listener to a JPanel. You could add listeners to your other components and add them all to the panel.
    And in your textField you need to add actionListener and tell the label to setText the text it receives from the textField. Make sure that your components do not listener to only one actionListener.
    The following should be in your actionPerformed method:
    String string = textField.getText();
    label.setText(string);//the text from the textField.
    Hope this helps
    [email protected]

  • Java 3d applets and browsers

    i'm looking into putting 3d content on the web.
    i was thinking of using the 3d api to create an applet which showed a 3d product object which the user could then rotate and which i could load .wml objects (or some3d format) into the applet.
    i know this is possible.
    but i've read somewhere that in order for the user to use it they must have jre 1.2 and the java 3d extension installed. because java 3d needs java 1.2 VM to run (which i'mled to believe most browsers dont support).
    my understanding is that most browsers at most support 1.1 vm which means that if i went ahead i would disenfranchise a large part of my audience (which i am not prepared to do)
    the whole reason i decided to go through the java route was because i wanted 3d content on the web without having to have the user download a player in order to view it.
    so my question is, assuming what i believe to be true is correct. is it possible to write the sort of 3d applet i want without using the 3d api, and thereby keeping my applet to 1.1 spec and therefore keep my audience?
    i'm basically looking for a workaround. i want 3d content, i dont want the user to have to use a player.
    any means of doing this i will do
    java is'nt really my background i'm just having a bash to solve a problem. so excuse my ignorance if i've written crap
    any help would be gratefully received
    cheers
    if you wish you can email me direct at [email protected]

    The JRE 1.1 is very common because M$ uses this ancient version. But browserls like Opera and Netscape come together with newer versions of the JRE, at least 1.2 is used here.
    I think there is no way to use J3D together with the JRE 1.1 - and it is not recommended to use this much too old java version generally.

  • JRE versions and Browsers and Applets

    Is there a way to assign a particular JRE version to a browser session through JavaScript or VBScript programatically so that I can run applets from different sources which need different JREs?
    Basically I will have 2 links/buttons which will call two separate javascript methods to open two different browser windows to run two different applets running under different JREs
    However when I start IE each 'session' of IE is assigned to one JRE, any way to overcome this?
    TIA,
    Raj

    Martin thanks for your inputs
    I am sourcing html pages from multiple sites and the html/applet tag is generated by those websites.
    They do have the applet tag pointing to proper class-id of the java plugin.
    However, the problem is with IE one family(session) of browsers are attached to one version of JRE plugin.
    Here 'session' means: you open a browser and from within that browser you do go from a link or javascript etc. to another browser they are in same 'session'
    I am working on dynamically setting JRE plugin version to different browsers.
    Not sure I made it clear or confusing : )
    Thanks

  • Applets and Browsers

    Does anyone know why a very simple applet works correctly with applet viewer, but does not seem to do anything with Internet Explorer 5.0 or FrontPage 2000? Here a simple applet and html that I am using.
    //Applet Template
    import javax.swing.*; //has .JApplet
    import java.awt.Graphics;
    public class BrowserTest1 extends JApplet {
         public void paint(Graphics g)
              g.drawString("This is a test applet", 10,10);
    // html file shown below
    <HTML>
    <HEAD>
    <TITLE>
    APPLET TEST PAGE
    </TITLE>
    </HEAD>
    <BODY>
    <APPLET code="BrowserTest1.class" width=500 height="250">
    </APPLET>
    Applet should appear above
    </BODY>
    </HTML>

    I think questions like yours have been answered to many times. In case you haven't noticed, there is a search button...
    As a "quick" hint, you are using a Swing applet. For that kind of applets, there are special speps to follow...

  • JButtons and Applets

    I am writing an applet that uses swing components. It seems to work except for one thing. The JButtons that I am using do not appear in the browser or appletviewer unless the user mouses over it. Otherwise, they work, Is there a property that needs to be set or a method that needs to be called to make the JButtons appear when the applet is loaded?

    Hi, I'm new to java, but I read in my book to do this.
    Put this in your main.
    applicationWindow.show();
    that causes all the GUI components attached to the window to be painted.
    applicationWindow is what you name your JFrame unless you're using something different like JPanel etc... For example:
    public static void main( String args[] ) {<br>
    JFrame applicationWindow = new JFrame;<br>
    Does this help?

  • How to create an array of JButtons and How to implment it ...

    This is what i want to do - I want to create an array of JButtons that has 8 rows of 8 buttons, could someone help me with this (im creating a checkers board) all i need is the array of buttons and them in 8 rows of 8 buttons .... im pretty confident in the way of making them do what i want but need help getting it up and running .... please note it is to be done in the swing environment and not in a applet or anything - ie in a JPanel and a JFrame .... any help would be GREATLY appreciated.

    U can try this
            JButton b[][] = new Button[8][8];
         setLayout(new YourLayout());
         for(int i =0; i<8; i++)
              for(int j =0; j<8; j++)
                   b[i][j] = new Button("Test");
                   b[i][j].addActionListener(new YourAction());
                   add(b[i][j]);
         }               

Maybe you are looking for

  • Appletv connected by dvi to old tv gets no audio

    I realise my old TV - hd ready and all is not great for the AppleTV2 but its all i got. It connects via hdmi to dvi cable but no sound. what next.. i can get use the optical audio out from teh appletv2 to the tv but i have no optical audio in!! a con

  • EFFECTS OF AFTER EFFECTS

    Adobes After effects is something which has been my favourite when it comes to creating motion graphics in the process of film making. Creativity is onething which gets stucked in my mind whenever i think of graphics. Based upon my knowledge and the

  • Non-western input and question marks

    whenever i try to input some non-western characters into flash input box all i see are ???? instead of characters. Is it fixable?

  • Trasnport Request Problem

    Hi Experts, I have one query regarding function group. Suppose in X function group I have A, B & C. function module. I have created new FM as D & store that FM in FG X under transport request ABC101. At the same time another developer is changing the

  • To freez PO Doc date  In ME21n

    Hi expert , My Requirement is , i want to freez PO Doc date in Tcode ME21n Only show current date  while creating a new PO . Means no one could make the PO in previous or future date from current date . Date should come just like sy-date but not in c