Layout of panels

Hi
I've just started to use data modeler today (ver2). The layout of the panels started off with the Browser on the left and th design panel to the right.
Something happend (I don't know what), but the Brower panel is on the top and the design panel is on the bottom.
How can I change it back to the origional layout.
Thanks
Brendan

Hi Brendan,
it's standard docking behavior - drag browser window to the left and to center and you'll see blue rectangle that shows possible position for that window.
Philip

Similar Messages

  • Multi Page - Multi Layout  - Vertical panels per Page- Effect

    Hi
    I need to create a report which is having 4 pages - In the layout itself I need to design such way , first full page will be text -second page and third page will be with repeating frame . Fourth page will be with text.
    Example in Emp Table for each dept i need to print like below
    MY query is select empno, ename, job, dept from emp ( with group above Dept no, Job)
    And Lay out design as below :
    First Page - Only Dept no - with other predefined texts.
    Second Page & Third page - data will be printed (fetched) from repeating frame.
    Fourth page - Only Dept no - with other predefined texts.
    I need above report for all dept in emp table
    So i changed the Vertical panels per page of the reports main section to 4 . and size to 36 (4*9), but when I runt the report getting error
    REP-1814-Report Cannot be formatted,Object Horizontally and vertically can never fit witing R_G_JOB.
    Any help to fix this issue.
    Thanks in Advance .....
    Edited by: O.Developer on Feb 15, 2013 2:45 AM

    Hi
    Thanks for your suggestion.
    However we have conluded the answer with my manager' help.
    Here is how :
    After spending many hours, finally we didi as below :
    Develop Data model with relevent query.
    Develop report laoyout using reportg wizard with 'No Template'(do not make manual layout).
    Now select the very first outer frame and extend this frame to three or four pages as per requirement.
    (Do not change any other layout coordinae values)
    Now run the report, the report will give expected output.
    -----------------

  • Insert layout 'collapsible panel groups' on DW Spry common view

    Hello,
    I am using CS4 for Windows and frequently use the 'collapsible panel groups'.  The only way I can use this at the moment is when in code, and pasting the <div id="CollapsiblePanelGroup" class="CollapsiblePanelGroup">  but I often miss out one of the divs which screws with my life.
    At the moment all I have on the insert menu is Menu Bar / Tabbed Panel / Accordian / Collapsible Panel .. and on the 'Spry common tab', the addition of Spry Tooltip.
    Is there a way to add an option for 'collapsible panel groups' to the insert menu (and even the spry common use tab) so it includes all the necessary code and asks you how many panels you want, etc, etc?
    Thanks!

    No
    Unless you know code DW extensions, but thats a whole different subject

  • GridBagLayout and Panel Border problem

    I have 3 panels like
    A
    B
    C
    and the C panel has a Mouse Listener that on a mouseEntered creates a border around the same panel and on a mouseExited clears that border.
    When this border is created the A and B panels go up a little bit .. they move alone when the border is created.
    Is there any way to fix this problem? Is there any way to get the panels static?
    the code is close to the following:
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseEvent;
    import javax.swing.BorderFactory;
    import javax.swing.border.Border;
    import javax.swing.border.TitledBorder;
    import java.awt.event.*;
    import java.text.NumberFormat;
    public class Game extends JFrame implements MouseListener
    JPanel game, options, top, down, middle;
    NumberFormat nf;
    public Game() {
    super("Game");
    nf = NumberFormat.getPercentInstance();
    nf.setMaximumFractionDigits(1);
    JPanel center = new JPanel(new GridBagLayout());
    GridBagConstraints gbc = new GridBagConstraints();
    gbc.fill = gbc.BOTH;
    gbc.weighty = 1.0;
    gbc.weightx = 0.8;
    center.add(getGamePanel(), gbc);
    gbc.weightx = 0.104;
    center.add(getOptionsPanel(), gbc);
    Container cp = getContentPane();
    // use the JFrame default BorderLayout
    cp.add(center); // default center section
    this.setDefaultCloseOperation(EXIT_ON_CLOSE);
    this.setSize(700,600);
    // this.setResizable(false);
    setLocationRelativeTo(null);
    setVisible(true);
    addComponentListener(new ComponentAdapter()
    public void componentResized(ComponentEvent e)
    showSizeInfo();
    showSizeInfo();
    private void showSizeInfo()
    Dimension d = getContentPane().getSize();
    double totalWidth = game.getWidth() + options.getWidth();
    double gamePercent = game.getWidth() / totalWidth;
    double optionsPercent = options.getWidth() / totalWidth;
    double totalHeight = top.getHeight() + middle.getHeight() + down.getHeight();
    double topPercent = top.getHeight() / totalHeight;
    double middlePercent = middle.getHeight() / totalHeight;
    double downPercent = down.getHeight() / totalHeight;
    System.out.println("content size = " + d.width + ", " + d.height + "\n" +
    "game width = " + nf.format(gamePercent) + "\n" +
    "options width = " + nf.format(optionsPercent) + "\n" +
    "top height = " + nf.format(topPercent) + "\n" +
    "middle height = " + nf.format(middlePercent) + "\n" +
    "down height = " + nf.format(downPercent) + "\n");
    private JPanel getGamePanel()
    // init components
    top = new JPanel(new BorderLayout());
    top.setBackground(Color.red);
    top.add(new JLabel("top panel", JLabel.CENTER));
    middle = new JPanel(new BorderLayout());
    middle.setBackground(Color.green.darker());
    middle.add(new JLabel("middle panel", JLabel.CENTER));
    down = new JPanel(new BorderLayout());
    down.setBackground(Color.blue);
    down.add(new JLabel("down panel", JLabel.CENTER));
    // layout game panel
    game = new JPanel(new GridBagLayout());
    GridBagConstraints gbc = new GridBagConstraints();
    gbc.weightx = 1.0;
    gbc.fill = gbc.BOTH;
    gbc.gridwidth = gbc.REMAINDER;
    gbc.weighty = 0.2;
    game.add(top, gbc);
    gbc.weighty = 0.425;
    game.add(middle, gbc);
    gbc.weighty = 0.2;
    game.add(down, gbc);
    down.addMouseListener(this);
    return game;
    private JPanel getOptionsPanel()
    options = new JPanel(new BorderLayout());
    options.setBackground(Color.pink);
    options.add(new JLabel("options panel", JLabel.CENTER));
    return options;
    // mouse listener events
         public void mouseClicked( MouseEvent e ) {
    System.out.println("pressed");
         public void mousePressed( MouseEvent e ) {
         public void mouseReleased( MouseEvent e ) {
         public void mouseEntered( MouseEvent e ) {
    Border redline = BorderFactory.createLineBorder(Color.red);
    JPanel x = (JPanel) e.getSource();
    x.setBorder(redline);
         public void mouseExited( MouseEvent e ){
    JPanel x = (JPanel) e.getSource();
    x.setBorder(null);
    public static void main(String[] args ) {
    Game exe = new Game();
    exe.show();
    }

    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.event.*;
    import java.text.NumberFormat;
    public class Game extends JFrame implements MouseListener{
      JPanel game, options, top, down, middle;
      NumberFormat nf;
      public Game() {
        super("Game");
        nf = NumberFormat.getPercentInstance();
        nf.setMaximumFractionDigits(1);
        JPanel center = new JPanel(new GridBagLayout());
        GridBagConstraints gbc = new GridBagConstraints();
        gbc.fill = gbc.BOTH;
        gbc.weighty = 1.0;
        gbc.weightx = 0.8;
        center.add(getGamePanel(), gbc);
        gbc.weightx = 0.104;
        center.add(getOptionsPanel(), gbc);
        Container cp = getContentPane();
        // use the JFrame default BorderLayout
        cp.add(center); // default center section
        this.setDefaultCloseOperation(EXIT_ON_CLOSE);
        this.setSize(700,600);
        // this.setResizable(false);
        setLocationRelativeTo(null);
        setVisible(true);
        addComponentListener(new ComponentAdapter(){
            public void componentResized(ComponentEvent e){
            showSizeInfo();
        showSizeInfo();
      private void showSizeInfo(){
        Dimension d = getContentPane().getSize();
        double totalWidth = game.getWidth() + options.getWidth();
        double gamePercent = game.getWidth() / totalWidth;
        double optionsPercent = options.getWidth() / totalWidth;
        double totalHeight = top.getHeight() + middle.getHeight() + down.getHeight();
        double topPercent = top.getHeight() / totalHeight;
        double middlePercent = middle.getHeight() / totalHeight;
        double downPercent = down.getHeight() / totalHeight;
        System.out.println("content size = " + d.width + ", " + d.height + "\n" +
            "game width = " + nf.format(gamePercent) + "\n" +
            "options width = " + nf.format(optionsPercent) + "\n" +
            "top height = " + nf.format(topPercent) + "\n" +
            "middle height = " + nf.format(middlePercent) + "\n" +
            "down height = " + nf.format(downPercent) + "\n");
      private JPanel getGamePanel(){
        // init components
        top = new JPanel(new BorderLayout());
        top.setBackground(Color.red);
        top.add(new JLabel("top panel", JLabel.CENTER));
        middle = new JPanel(new BorderLayout());
        middle.setBackground(Color.green.darker());
        middle.add(new JLabel("middle panel", JLabel.CENTER));
        down = new JPanel(new BorderLayout());
        down.setBackground(Color.blue);
        down.add(new JLabel("down panel", JLabel.CENTER));
        // layout game panel
        game = new JPanel(new GridBagLayout());
        GridBagConstraints gbc = new GridBagConstraints();
        gbc.weightx = 1.0;
        gbc.fill = gbc.BOTH;
        gbc.gridwidth = gbc.REMAINDER;
        gbc.weighty = 0.2;
        game.add(top, gbc);
        gbc.weighty = 0.425;
        game.add(middle, gbc);
        gbc.weighty = 0.2;
        game.add(down, gbc);
        down.addMouseListener(this);
        return game;
      private JPanel getOptionsPanel(){
        options = new JPanel(new BorderLayout());
        options.setBackground(Color.pink);
        options.add(new JLabel("options panel", JLabel.CENTER));
        return options;
      public void mouseClicked( MouseEvent e ) {
        System.out.println("pressed");
      public void mousePressed( MouseEvent e ) {
      public void mouseReleased( MouseEvent e ) {
      public void mouseEntered( MouseEvent e ) {
        Border redline = new CalmLineBorder(Color.red);
        JPanel x = (JPanel) e.getSource();
        x.setBorder(redline);
      public void mouseExited( MouseEvent e ){
        JPanel x = (JPanel) e.getSource();
        x.setBorder(null);
      public static void main(String[] args ) {
        Game exe = new Game();
        exe.setVisible(true);
    class CalmLineBorder extends LineBorder{
      public CalmLineBorder(Color c){
        super(c);
      public CalmLineBorder(Color c, int thick){
        super(c, thick);
      public CalmLineBorder(Color c, int thick, boolean round){
        super(c, thick, round);
      public Insets getBorderInsets(Component comp){
        return new Insets(0, 0, 0, 0);
    }

  • Gridbag layout positions

    Hello, I am creating a gui with various swing objects. I put a grouping of various objects within some panels as to allow for simpler layout. The problem however is spaning a jpanel over 2 rows.
    basically i want one panel on the left that spans 2 rows, and two panels that span one row each but are placed horizontally to the first panel. followed by 3 panels places horizontally on a 3rd row. when i try to set gridheigh=2 i get weirdness
    package javaiq3; 
    /** Iq3GUI.java
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Iq3GUI extends JFrame implements ActionListener{
    /* main window essential objects */
      protected JFrame frame;  // main window
      private JPanel panel;  // content panel for main window
      private GridBagLayout gridbag = new GridBagLayout(); // layout object for main window
       * constructor
       * @param title Main window title
      public Iq3GUI(String title){
        //initializes the main window, its layout and panels
        frame = new JFrame(title); // initializes main window
        frame.addWindowListener(new WindowAdapter() { // window listener
          // exits program when window is closed
          public void windowClosing(WindowEvent e) {System.exit(0);}
        GridBagConstraints c = new GridBagConstraints(); // constraints
        GridBagConstraints subc = new GridBagConstraints(); // constraints
        panel = new JPanel();
        panel.setLayout(gridbag);
        setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
    /**** menu bar ****/
        JMenuBar menuBar = new JMenuBar();
        frame.setJMenuBar(menuBar);
        JMenu menu = new JMenu("File");
        menu.setMnemonic(KeyEvent.VK_F);
        menu.getAccessibleContext().setAccessibleDescription("File menu");
        menuBar.add(menu);
    /**** end: menu bar ****/
    /**** type radio buttons ****/
        JRadioButton[] typeRButton = new JRadioButton[2];
        typeRButton[0]=new JRadioButton("Life");
        typeRButton[1]=new JRadioButton("Crit");
        JPanel typeRButtonPanel = new JPanel(); // panel for radio buttons
        typeRButtonPanel.setLayout(new BorderLayout());
        typeRButtonPanel.setBorder(BorderFactory.createTitledBorder("Type:")); // sets border
        ButtonGroup typeGroup = new ButtonGroup(); // radio button group
        for(int x=0;x<typeRButton.length;x++){ // groups radio buttons together
            typeGroup.add(typeRButton[x]);
        typeRButtonPanel.add(typeRButton[0],BorderLayout.CENTER); // adds them to panel
        typeRButtonPanel.add(typeRButton[1],BorderLayout.SOUTH);
        c.insets = new Insets(15,15,0,0);
        c.gridx=0; c.gridy=0; c.ipady=0; c.gridwidth=1; gridbag.setConstraints(typeRButtonPanel, c);
        panel.add(typeRButtonPanel); // adds radio button panel to main panel
    /**** end: type radio buttons ****/
    /**** company combo box ****/
        JComboBox companyComboBox = new JComboBox();
        JPanel companyComboBoxPanel = new JPanel();
        companyComboBox.setPreferredSize(new Dimension(300,18));
        companyComboBoxPanel.setLayout(gridbag);
        subc.insets = new Insets(-2,5,2,5); gridbag.setConstraints(companyComboBox, subc);
        companyComboBoxPanel.setBorder(BorderFactory.createTitledBorder("Company:"));
        companyComboBoxPanel.add(companyComboBox);
        c.insets = new Insets(0,0,0,0);
        c.gridx=1; c.gridy=0; c.ipadx=0; gridbag.setConstraints(companyComboBoxPanel, c);
        panel.add(companyComboBoxPanel);
    /****  end: company combo box ****/
    /**** product combo box ****/
        JComboBox productComboBox = new JComboBox();
        JPanel productComboBoxPanel = new JPanel();
        productComboBox.setPreferredSize(new Dimension(300,18));
        productComboBoxPanel.setLayout(gridbag);
        subc.insets = new Insets(-2,5,2,5); gridbag.setConstraints(productComboBox, subc);
        productComboBoxPanel.setBorder(BorderFactory.createTitledBorder("Product:"));
        productComboBoxPanel.add(productComboBox);
        c.insets = new Insets(0,0,0,0);
        c.gridx=1; c.gridy=2; c.ipady=0; gridbag.setConstraints(productComboBoxPanel, c);
        panel.add(productComboBoxPanel);
    /****  end: product combo box ****/
    /**** type sex radio buttons ****/
        JRadioButton[] sexRButton = new JRadioButton[2];
        sexRButton[0]=new JRadioButton("Male");
        sexRButton[1]=new JRadioButton("Female");
        JPanel sexRButtonPanel = new JPanel(); // panel for radio buttons
        sexRButtonPanel.setLayout(new BorderLayout());
        sexRButtonPanel.setBorder(BorderFactory.createTitledBorder("Sex:")); // sets border
        ButtonGroup sexGroup = new ButtonGroup(); // radio button group
        for(int x=0;x<sexRButton.length;x++){ // groups radio buttons together
            sexGroup.add(sexRButton[x]);
         sexRButtonPanel.add(sexRButton[0],BorderLayout.CENTER); // adds them to panel
         sexRButtonPanel.add(sexRButton[1],BorderLayout.SOUTH);
         c.gridx=0; c.gridy=3; c.ipady=0; gridbag.setConstraints(sexRButtonPanel, c);
         panel.add(sexRButtonPanel); // adds radio button panel to main panel
    /**** end: sex radio buttons ****/
    /**** smoker check box/combo box ****/
        JCheckBox smokerRButton = new JCheckBox("No");
        JComboBox smokerComboBox = new JComboBox();
        smokerComboBox.setPreferredSize(new Dimension(100,18));
        JPanel smokerPanel = new JPanel();
        smokerPanel.setLayout(new BorderLayout());
        smokerPanel.setBorder(BorderFactory.createTitledBorder("Smoker:"));
        smokerPanel.add(smokerRButton,BorderLayout.CENTER);
        smokerPanel.add(smokerComboBox,BorderLayout.SOUTH);
        c.gridx=1; c.gridy=3; c.ipady=0; gridbag.setConstraints(smokerPanel, c);
        panel.add(smokerPanel);
    /**** end: smoker check box/combo box ****/  
    /**** waiver radio buttons ****/
        JRadioButton[] waiverRButton = new JRadioButton[2];
        waiverRButton[0]=new JRadioButton("Yes");
        waiverRButton[1]=new JRadioButton("No");
        JPanel waiverRButtonPanel = new JPanel(); // panel for radio buttons
        waiverRButtonPanel.setLayout(new BorderLayout());
        waiverRButtonPanel.setBorder(BorderFactory.createTitledBorder("Waiver:")); // sets border
        ButtonGroup waiverGroup = new ButtonGroup(); // radio button group
        for(int x=0;x<waiverRButton.length;x++){ // groups radio buttons together
            waiverGroup.add(waiverRButton[x]);
         waiverRButtonPanel.add(waiverRButton[0],BorderLayout.CENTER); // adds them to panel
         waiverRButtonPanel.add(waiverRButton[1],BorderLayout.SOUTH);
         c.gridx=2; c.gridy=3; c.ipady=0; gridbag.setConstraints(waiverRButtonPanel, c);
         panel.add(waiverRButtonPanel); // adds radio button panel to main panel
    /**** end: type radio buttons ****/
    /**** main gui properties ****/
      // Dimension screenDim = Toolkit.getDefaultToolkit().getScreenSize(); //screen dimensions
      //  Rectangle frameDim = frame.getBounds(); // frame boundries
      //  frame.setLocation((screenDim.width - frameDim.width) / 4,(screenDim.height - frameDim.height) / 4);//sets frame's location to center screen
      //  frame.setSize(600,100);
        frame.setContentPane(panel); frame.pack();
        frame.setVisible(true);
    /**** end: main gui properties ****/
       * setLookAndFeel
       * Sets the look and feel of the application, if it cannot be set to the
       * user defined one, sets the default java
       * @param feel Stores the look and feel string
      public void setLookAndFeel(String feel){
         try { // sets the GUI style to the parameter type
              UIManager.setLookAndFeel(feel);
          } catch (Exception e) {
             try{
               UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
             catch (Exception e2){ // if default java one cannot be set, exits program
                System.err.println(e2.getMessage());
                System.exit(0);
       * errorBox
       * Displays a JDialog box with an ok button, programmer defined message
       * and a warning icon
       * @param message Programmer defined message
      public void errorBox(String message){
        JOptionPane.showMessageDialog(frame,message,"Error",JOptionPane.ERROR_MESSAGE);
        System.exit(0);
    * actionPerformed
    * Performs action sent to by action listener
    * @param e Action object
      public void actionPerformed(ActionEvent e){
        System.out.println("Click");
    * Main
    * Test method
    * @param args Does nothing
    public static void main(String[] args){
        Iq3GUI heh = new Iq3GUI("IQ3");
    }

    Wow. That's some ugly code. You might want to work on coding conventions a bit.
    The reason books provide information in paragraphs is to give the eye a rest and the brain time to process the information (a brain is only 8 MHz -- no kidding). Your code should do the same. If 80% of effort goes into maintaining code, you'll help yourself (and potential coworkers) by coding neatly so that things are easy to understand at a glance without dealing with a lot of visual clutter.
    1) Try to put comments on their own lines instead of whacking them onto the end of a line of code.
    2) Include spaces between code segments that are related tasks -- think of them as "virtual blocks" (since they're not enclosed in braces). Think about the paragraph analogy again. A paragraph groups related sentences. Let your code do the same.
    3) Never, ever jam multiple statements into a single line of code. It's a huge pain in the ass to read. While the compiler doesn't care about whitespace, human beings do.
    4) When working with GridBagLayout, add all your components in the same part of your class file. By doing so, when you need to alter the layout, you don't have to dig through all of your code to find bits and pieces of the layout. Your project is small, but if you do this stuff for a living, you're eventually going to work on gigantic projects. My current project, for example, consists of 20,000 lines of code just for the GUI (and my project isn't even all at big).
    5) Exiting a program without telling the user is laaaaame. I know you're just playing around, but now's the time to get good habits.
    OK, so now that you've sat through the editorial, the quick and dirty answer is that you have to explicitly specify widths and heights in your constrains for each component, otherwise GridBagLayout's behavior becomes hard to predict.
    In your code, you specify gridwidth once and never again. You know that a Constraint object is reusable, right? What you've just told GridBagLayout is "try to make everything the same width." Meanwhile, the layout is trying to respect your preferred sizes.
    Please read the Java Tutorial on GridBagLayout, particularly the suggestion to sketch your layout on a piece of paper ahead of time so that you remember which constraint attributes to change. For safe measure, you might want to specify an entire set of constraints each time you lay out a component so that you won't leave out something important.
    As for the background color, I just fixed it by setting a background for your main panel. Windows look and feel is lame, I guess. I always use the Java look and feel, so I haven't run into your problem before.
    See my modified code below.
    //package javaiq3; 
    /** Iq3GUI.java
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Iq3GUI extends JFrame implements ActionListener
        protected JFrame frame;
        private JPanel panel;
        private GridBagLayout gridbag = new GridBagLayout();
        public Iq3GUI(String title)
            frame = new JFrame(title);
            frame.addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent e)
                    System.exit(0);
            GridBagConstraints c = new GridBagConstraints();
            GridBagConstraints subc = new GridBagConstraints();
            panel = new JPanel();
            panel.setLayout(gridbag);
            panel.setBackground(Color.lightGray);
            setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
            JMenuBar menuBar = new JMenuBar();
            frame.setJMenuBar(menuBar);
            JMenu menu = new JMenu("File");
            menu.setMnemonic(KeyEvent.VK_F);
            menu.getAccessibleContext().setAccessibleDescription("File menu");
            menuBar.add(menu);
            JRadioButton[] typeRButton = new JRadioButton[2];
            typeRButton[0]=new JRadioButton("Life");
            typeRButton[1]=new JRadioButton("Crit");
            JPanel typeRButtonPanel = new JPanel();
            typeRButtonPanel.setLayout(new BorderLayout());
            typeRButtonPanel.setBorder(BorderFactory.createTitledBorder("Type:"));
            ButtonGroup typeGroup = new ButtonGroup();
            for(int x=0;x<typeRButton.length;x++)
                typeGroup.add(typeRButton[x]);
            typeRButtonPanel.add(typeRButton[0],BorderLayout.CENTER);
            typeRButtonPanel.add(typeRButton[1],BorderLayout.SOUTH);
            c.insets = new Insets(15,15,0,0);
            c.gridx=0;
            c.gridy=0;
            c.ipady=0;
            c.gridwidth=1;
            gridbag.setConstraints(typeRButtonPanel,c);
            panel.add(typeRButtonPanel);
            JComboBox companyComboBox = new JComboBox();
            JPanel companyComboBoxPanel = new JPanel();
            companyComboBox.setPreferredSize(new Dimension(300,18));
            companyComboBoxPanel.setLayout(gridbag);
            subc.insets = new Insets(-2,5,2,5);
            gridbag.setConstraints(companyComboBox, subc);
            companyComboBoxPanel.setBorder(BorderFactory.createTitledBorder("Company:"));
            companyComboBoxPanel.add(companyComboBox);
            c.insets = new Insets(0,0,0,0);
            c.gridx=1;
            c.gridy=0;
            c.ipadx=0;
            gridbag.setConstraints(companyComboBoxPanel, c);
            panel.add(companyComboBoxPanel);
            JComboBox productComboBox = new JComboBox();
            JPanel productComboBoxPanel = new JPanel();
            productComboBox.setPreferredSize(new Dimension(300,18));
            productComboBoxPanel.setLayout(gridbag);
            subc.insets = new Insets(-2,5,2,5);
            gridbag.setConstraints(productComboBox, subc);
            productComboBoxPanel.setBorder(BorderFactory.createTitledBorder("Product:"));
            productComboBoxPanel.add(productComboBox);
            c.insets = new Insets(0,0,0,0);
            c.gridx=1; c.gridy=2; c.ipady=0;
            gridbag.setConstraints(productComboBoxPanel, c);
            panel.add(productComboBoxPanel);
            JRadioButton[] sexRButton = new JRadioButton[2];
            sexRButton[0]=new JRadioButton("Male");
            sexRButton[1]=new JRadioButton("Female");
            JPanel sexRButtonPanel = new JPanel();
            sexRButtonPanel.setLayout(new BorderLayout());
            sexRButtonPanel.setBorder(BorderFactory.createTitledBorder("Sex:"));
            ButtonGroup sexGroup = new ButtonGroup();
            for(int x=0;x<sexRButton.length;x++)
                sexGroup.add(sexRButton[x]);
            sexRButtonPanel.add(sexRButton[0],BorderLayout.CENTER);
            sexRButtonPanel.add(sexRButton[1],BorderLayout.SOUTH);
            c.gridx=0;
            c.gridy=3;
            c.ipady=0;
            gridbag.setConstraints(sexRButtonPanel,c);
            panel.add(sexRButtonPanel);
            JCheckBox smokerRButton = new JCheckBox("No");
            JComboBox smokerComboBox = new JComboBox();
            smokerComboBox.setPreferredSize(new Dimension(100,18));
            JPanel smokerPanel = new JPanel();
            smokerPanel.setLayout(new BorderLayout());
            smokerPanel.setBorder(BorderFactory.createTitledBorder("Smoker:"));
            smokerPanel.add(smokerRButton,BorderLayout.CENTER);
            smokerPanel.add(smokerComboBox,BorderLayout.SOUTH);
            c.gridx=1;
            c.gridy=3;
            c.ipady=0;
            gridbag.setConstraints(smokerPanel,c);
            panel.add(smokerPanel);
            JRadioButton[] waiverRButton = new JRadioButton[2];
            waiverRButton[0]=new JRadioButton("Yes");
            waiverRButton[1]=new JRadioButton("No");
            JPanel waiverRButtonPanel = new JPanel();
            waiverRButtonPanel.setLayout(new BorderLayout());
            waiverRButtonPanel.setBorder(BorderFactory.createTitledBorder("Waiver:"));
            ButtonGroup waiverGroup = new ButtonGroup();
            for(int x=0;x<waiverRButton.length;x++)
                waiverGroup.add(waiverRButton[x]);
            waiverRButtonPanel.add(waiverRButton[0],BorderLayout.CENTER);
            waiverRButtonPanel.add(waiverRButton[1],BorderLayout.SOUTH);
            c.gridx=2;
            c.gridy=3;
            c.ipady=0;
            gridbag.setConstraints(waiverRButtonPanel,c);
            c.fill = GridBagConstraints.HORIZONTAL;
            c.gridx = 0;
            c.gridy = 0;
            c.gridwidth = 1;
            c.gridheight = 2;
            //c.weightx = 100;
            //c.weighty = 100;
            c.insets = new Insets(0,0,0,0);
            panel.add(typeRButtonPanel, c);
            c.fill = GridBagConstraints.HORIZONTAL;
            c.gridx = 1;
            c.gridy = 0;
            c.gridwidth = 2;
            c.gridheight = 1;
            //c.weightx = 100;
            //c.weighty = 100;
            c.insets = new Insets(0,0,0,0);
            panel.add(companyComboBoxPanel, c);
            c.fill = GridBagConstraints.HORIZONTAL;
            c.gridx = 1;
            c.gridy = 1;
            c.gridwidth = 2;
            c.gridheight = 1;
            //c.weightx = 100;
            //c.weighty = 100;
            c.insets = new Insets(0,0,0,0);
            panel.add(productComboBoxPanel, c);
            c.fill = GridBagConstraints.HORIZONTAL;
            c.gridx = 0;
            c.gridy = 3;
            c.gridwidth = 1;
            c.gridheight = 2;
            //c.weightx = 100;
            //c.weighty = 100;
            c.insets = new Insets(0,0,0,0);
            panel.add(sexRButtonPanel, c);
            c.fill = GridBagConstraints.HORIZONTAL;
            c.gridx = 1;
            c.gridy = 3;
            c.gridwidth = 1;
            c.gridheight = 2;
            //c.weightx = 100;
            //c.weighty = 100;
            c.insets = new Insets(0,0,0,0);
            panel.add(smokerPanel, c);
            c.fill = GridBagConstraints.HORIZONTAL;
            c.gridx = 2;
            c.gridy = 3;
            c.gridwidth = 1;
            c.gridheight = 2;
            //c.weightx = 100;
            //c.weighty = 100;
            c.insets = new Insets(0,0,0,0);
            panel.add(waiverRButtonPanel, c);
            frame.setContentPane(panel);
            frame.pack();
            frame.setVisible(true);
        public void setLookAndFeel(String feel)
            try
                UIManager.setLookAndFeel(feel);
            catch(Exception e)
                try
                    UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
                catch(Exception e2)
                    System.err.println(e2.getMessage());
                    System.exit(0);
        public void errorBox(String message)
            JOptionPane.showMessageDialog(frame,message,"Error",JOptionPane.ERROR_MESSAGE);
            System.exit(0);
        public void actionPerformed(ActionEvent e)
            System.out.println("Click");
        public static void main(String[] args)
            Iq3GUI heh = new Iq3GUI("IQ3");
    }

  • How to create two front panels

    Hi in my application i am using two Monitors .. 
    so i like to use one monitor for Vision display and control operation (Front panel )
    And another For Motion Control Front panel .. is it possible to do this .. 
    (In this case How to split my Front panel of my Vi ..)

    Hi
    If we use Border Layout, the Panels which are added to the main panel are not displaying properly.
    Solution is to use BoxLayout with AXIS parameter. Statement looks like this:
    mainPanel.setLayout(new BoxLayout(mainPanel, BoxLayout(PAGE_AXIS));
    Thank You for giving Reply,

  • Multiline flow layout question

    I have a panel with BoxLayout that has a panel with flow layout:
    class PanelA{
            private JPanel panel1 = createPanel1();
            private JPanel panel2 = .....
            public PanelA() {
                    setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
                    add(panel1);
                    add(panel2);
            private JPanel createPanel1(){
                       JPanel p = new JPanel ();
                       p.setLayout (new FlowLayout(FlowLayout.LEADING));
    }I want to realize such behavior:
    When I add a label to panel1 and this label can't be shown because panel1 has no free space it should show this label on the next line. I know that flow layout is multiline and I see a new label on the next line if I dodn't add panel2. But I added panel2 and I see only one line of panel1.

    public class FileTablePanel extends JPanel {
        private FileTable fileTable;
        private NavigationBar navigation;
        public FileTablePanel() {
            setLayout(new BoxLayout(this, BoxLayout.Y_AXIS));
            addFileTable();
            addNavigationBar();
        private void addFileTable() {
            fileTable = new FileTable(ClientModel.SINGLETON.getFileTableModel());
            fileTable.getColumnModel().getColumn(0).setPreferredWidth(206);
            fileTable.getColumnModel().getColumn(1).setPreferredWidth(45);
            fileTable.getColumnModel().getColumn(2).setPreferredWidth(55);
            fileTable.getColumnModel().getColumn(3).setPreferredWidth(85);
            fileTable.getSelectionModel().setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
            fileTable.setBorder(BorderFactory.createEmptyBorder(0, 0, 0, 0));
            JScrollPane sp = new JScrollPane(fileTable, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
            sp.setBorder(new EmptyBorder(0, 0, 0, 0));
            setBorder(BorderFactory.createEmptyBorder(0, 0, 0, 0));
            add(sp);
        private void addNavigationBar() {
            navigation = new NavigationBar();
            add(navigation);
        private class NavigationBar extends JPanel {
         public NavigationBar (){
                 FlowLayout layout = new FlowLayout(FlowLayout.LEADING);
                 setLayout(layout);
             * Changes navigation bar when table changes
             * @param e
            public void tableChanged(TableModelEvent e) {
                removeAll();
                fill();
                revalidate();
                repaint();
            private void fill() {
                FileTableModel t = (FileTableModel) fileTable.getModel();
                String[] s = t.getFolderPath();
                //add all links
                for (int i = 0; i < s.length; ++i){
                    CLink link = new CLink(new GoUpAction(times), "", "");
                    link.setText(message);
                    add (link);
    }

  • Stretching Panel Splitters

    Hi,
    I have a template in which I have placed many facet references. I use this template as the base for all my pages.
    I have the layout set up in which I have a facet ref for a left side navigator, a top menu area, and a place for the individual content of each page.
    The content and the left hand navigator are currently in a panel splitter with the left hand navigator taking the first facet, and the content utilizing the second.
    I have the whole thing surrounded by a panelstretchlayout, then a panelgrouplayout = 'scroll', so the whole page will scroll, then a panelgroupLayout='vertical' with a width of 960 and horizontally aligned to the center. Then I stack all of my components and custom facet references inside of that panelGroupLayout. This is where I have the panelSplitter. I would like the contents of this to stretch so that each page can vary in size, depending on how large the "content" area is. I haven't figured out a solution, without setting the height of the panelSplitter.
    Any suggestions? It is important that I have the scroll on the outside, and the fixed width.
    Basic structure:
    *Panel Stretch Layout
    **center
    ***Panel Group Layout (scroll)
    ****Panel Group Layout (horizontal alignment = center, width = '960')
    *****Panel Splitter
    ******first facet (left hand navigator)
    ******second (content)
    *****PanelGroupLayout (used as a 'footer', that is also the same width as everything else)
    Thanks,
    Joel
    Edited by: JRolls on Feb 22, 2011 10:47 AM

    Hi Facehugger,
    Generally, you can use MDS for this, as documented [url http://download.oracle.com/docs/cd/E15523_01/web.1111/b31974/ad_persist.htm#CIHHEHCF]in the Fusion Developers Guide. The panel splitter position works out-of-the-box.
    As luck would have it, I've just finished writing some articles for OTN on this very topic as part of my ADF Development Essentials series - I'm sending them in to be reviewed today or tomorrow, and they should be published relatively quickly.
    Best,
    John

  • Setting z-index upon a panel?

    Hi,
    I am making a custom color picker component. Simply, when the user clicks a color box, color palettet should pops up over all other components.
    This is my color palette panel:
            <s:Panel width="111" height="215" id="colorPalette"
                     y="18"
                     backgroundColor="0x333333"
                     visible="false"
                     includeInLayout="false"
                     skinClass="com.storefront.image_module.uicomponents.HeaderlessPanelSkin"
                    >
                <s:layout>
                    <s:TileLayout paddingTop="5" paddingLeft="5" />
                </s:layout>
            </s:Panel>
    But everytime I set it's visible=true , it goes unerneath of other components. To fix this problem, I tried several ways I can think of but none of them worked.
    What is the best way to make the panel appear over all other components? Im looking for something similar to "z-index" in css

    Thanks for the reply. But temporary reparenting doesn't sound the perfect solution to me as this custom component is to be used by other developers as well.
    Is there any other existing popup component that I can use instead of panel?

  • Box layout help

    i know how to use a box layout on panels but i am having a problem applying box layout on jframe,
    what i do basicaly is extends jframe first and then in the constructor i put setLayout(new BoxLayout(this,BoxLayout.X_AXIS));
    it gives an error that box layout cant be shared...this method works with all other layouts...
    please help me and please dont tell me to go read the sun online tutorials...

    To speak truely. All the j2se default layout manager will be replaced by the default layoutmanager in NetBeans ---group layout manager.
    I suggest you download a NetBeans IDE and start working with the new layout manager.

  • Form Guide - Repeating Area(s) within a Panel

    Hi,
    Just wondering if its possible to have more than one repeating area within the same panel?
    I have been able to create the Panel with a comment at the top (using guide text) followed by my repeating area and finally another comment followed by some fields.
    What I would like to do is after the second comment have the fields in another repeating area, is this possible in Guide Builder?
    Thanks in advance
    James

    There is no default layout of panel that will give you that. You would have to modify a current layoute or crate a new one.

  • ANN: Tab Panel Magic 2 Released

    http://www.projectseven.com/products/tools/tpm2/
    From simply elegant to utterly dramatic, TPM2 can be skinned like a classic movie star or a modern day rock star. Leveraging the power of CSS3, you have at your disposal a treasure chest of rounded corners, linear gradients, drop shadows, inner shadows, and glass effects—all done without using a single image. It's pure CSS3 and purely remarkable. CSS3 is supported in all modern browsers, including IE9. Older browsers will display perfectly lovely tabs, minus the shadows and curves.
    Major Features:
    Cross-browser support
    Automated GUI inside Dreamweaver
    Automatic TPM1 to TPM2 Conversion Utility
    Search engine friendly
    Accessible
    iPhone, iPod, and iPad support
    3 optional animation methods
    12 customizable CSS-based skins
    CSS3 Shadow, Curves, and Gradients
    Support for multi-state images
    Trigger actions: Click or MouseOver
    Auto Play and Random Panel Options
    Help system, plus PDF user guide
    Free technical support
    Optional Tabs Scroller provides scroll controls when there are more tabs than will fit your space
    Programmed by PVII for a completely dedicated, efficient, and powerful solution.
    Upgrade pricing available for TPM1 users.

    Al
    The product looks great, however you might want to redo the
    sound on the
    video. Even with mu speakers and its setting cranked up it
    was difficult to
    hear.
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "Al Sparber- PVII" <[email protected]> wrote in message
    news:e78nid$1g$[email protected]..
    >
    http://www.projectseven.com/products/tools/tabpanel/demo/
    >
    > Tab Panel Magic automates the process of building tabbed
    user interfaces
    > (UIs) - web page elements that allow you to display
    multiple panels of
    > content with access to each panel controlled by
    CSS-styled tabs. Tab
    > Panels can be inserted into CSS layouts or table
    layouts. Panels can be
    > tucked snugly into sidebars or can span an entire page.
    >
    > $60
    >
    > --
    > Al Sparber - PVII
    >
    http://www.projectseven.com
    > Popup Menus | Image Galleries | CSS Tutorials &
    Templates
    >
    > Newsgroup: news://forums.projectseven.com/pviiwebdev/
    > CSS Newsgroup: news://forums.projectseven.com/css/
    > DW Newsgroup:
    news://forums.projectseven.com/dreamweaver/
    >
    >
    >
    >
    >
    >

  • [Shortcuts] Hide/Show standart panel

    Hello.
    Default in Dreamweaver used Ctrl+Shift shortcut for Hide/Show
    standart panel.
    But I use this shortcut for the keyboard layout switching.
    And I need standart panel.
    So when I press Ctrl+Shift for swith keyboard layout standart
    panel hidding.
    How can I change this setting?
    I can't found setting for this shortcut in Edit->Keyboard
    Shortcuts...
    With toolbars.xml the same result.
    Please help me to decide this problem, becouse I have
    discomfort.

    Please help me to decide this problem, or say that it's
    unsoluble.

  • ANN: Tab Panel Magic Released

    http://www.projectseven.com/products/tools/tabpanel/demo/
    Tab Panel Magic automates the process of building tabbed user
    interfaces
    (UIs) - web page elements that allow you to display multiple
    panels of
    content with access to each panel controlled by CSS-styled
    tabs. Tab
    Panels can be inserted into CSS layouts or table layouts.
    Panels can be
    tucked snugly into sidebars or can span an entire page.
    $60
    Al Sparber - PVII
    http://www.projectseven.com
    Popup Menus | Image Galleries | CSS Tutorials & Templates
    Newsgroup: news://forums.projectseven.com/pviiwebdev/
    CSS Newsgroup: news://forums.projectseven.com/css/
    DW Newsgroup: news://forums.projectseven.com/dreamweaver/

    Al
    The product looks great, however you might want to redo the
    sound on the
    video. Even with mu speakers and its setting cranked up it
    was difficult to
    hear.
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "Al Sparber- PVII" <[email protected]> wrote in message
    news:e78nid$1g$[email protected]..
    >
    http://www.projectseven.com/products/tools/tabpanel/demo/
    >
    > Tab Panel Magic automates the process of building tabbed
    user interfaces
    > (UIs) - web page elements that allow you to display
    multiple panels of
    > content with access to each panel controlled by
    CSS-styled tabs. Tab
    > Panels can be inserted into CSS layouts or table
    layouts. Panels can be
    > tucked snugly into sidebars or can span an entire page.
    >
    > $60
    >
    > --
    > Al Sparber - PVII
    >
    http://www.projectseven.com
    > Popup Menus | Image Galleries | CSS Tutorials &
    Templates
    >
    > Newsgroup: news://forums.projectseven.com/pviiwebdev/
    > CSS Newsgroup: news://forums.projectseven.com/css/
    > DW Newsgroup:
    news://forums.projectseven.com/dreamweaver/
    >
    >
    >
    >
    >
    >

  • My Indesign CC crashes every time I open a CS6 file on it!!!

    My Indesign CC crashes every time I open a CS6 file on it. I have tried everything, a clean install using the clean tool on my system, saving the CS6 file as an .idml on CS6---but whenever I try to open files on Indesign CC, the program crashes!
    I am using a Mac OSX Lion on 2010 Macbook Pro 15in. with 8gb RAM.
    My Indesign CC is completely useless without being able to open my CS6 files, please help!
    Crash report below:
    Process:         Adobe InDesign CC [15107]
    Path:            /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
    Identifier:      com.adobe.InDesign
    Version:         9.0.0.244 (9000)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [197]
    User ID:         501
    Date/Time:       2013-10-12 07:10:05.364 +0800
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Interval Since Last Report:          34505 sec
    Crashes Since Last Report:           11398
    Per-App Interval Since Last Report:  170 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      D4831B50-9C57-8265-8CED-515C2F837F9C
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000032d143b6c
    VM Regions Near 0x32d143b6c:
        __LINKEDIT             0000000201b74000-0000000201be3000 [  444K] r--/rwx SM=COW  /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    -->
        STACK GUARD            00007fff5bc00000-00007fff5f400000 [ 56.0M] ---/rwx SM=NUL  stack guard for thread 0
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.AGM                           0x0000000101e9c2ae 0x101b6a000 + 3351214
    1   com.adobe.AGM                           0x0000000101e9ce4f 0x101b6a000 + 3354191
    2   com.adobe.AGM                           0x0000000101ef8ceb 0x101b6a000 + 3730667
    3   com.adobe.AGM                           0x0000000101f0a627 0x101b6a000 + 3802663
    4   com.adobe.AGM                           0x0000000101f0b6ef 0x101b6a000 + 3806959
    5   com.adobe.AGM                           0x0000000101f0e111 0x101b6a000 + 3817745
    6   com.adobe.AGM                           0x0000000101b9ff6b 0x101b6a000 + 221035
    7   com.adobe.AGM                           0x0000000101b9ff6b 0x101b6a000 + 221035
    8   com.adobe.AGM                           0x0000000101db70dc 0x101b6a000 + 2412764
    9   com.adobe.AGM                           0x0000000101b9ff6b 0x101b6a000 + 221035
    10  com.adobe.AGM                           0x0000000101db70dc 0x101b6a000 + 2412764
    11  com.adobe.AGM                           0x0000000101d848e9 0x101b6a000 + 2205929
    12  com.adobe.AGM                           0x0000000101d614af 0x101b6a000 + 2061487
    13  com.adobe.InDesign.AppFramework          0x000000010ed0dbf5 0x10ece2000 + 179189
    14  PublicLib.dylib                         0x0000000101153456 PathPageItem::Fill(IGraphicsPort*) + 406
    15  PublicLib.dylib                         0x000000010119ea80 CGraphicFrameShape::DrawShape_Fill(GraphicsData*, int) + 320
    16  PublicLib.dylib                         0x000000010119e87c CGraphicFrameShape::DrawShape(GraphicsData*, int) + 76
    17  PublicLib.dylib                         0x00000001011a1991 CShape::ProcessDrawShape(GraphicsData*, int) + 273
    18  PublicLib.dylib                         0x00000001011a284c CShape::DrawHierarchy(GraphicsData*, int) + 396
    19  PublicLib.dylib                         0x000000010119f2c0 CGraphicFrameShape::DrawShape_Hierarchy(GraphicsData*, int) + 1920
    20  PublicLib.dylib                         0x000000010119e8b3 CGraphicFrameShape::DrawShape(GraphicsData*, int) + 131
    21  PublicLib.dylib                         0x00000001011a1991 CShape::ProcessDrawShape(GraphicsData*, int) + 273
    22  com.adobe.InDesign.Group                0x000000011191dade 0x11191a000 + 15070
    23  com.adobe.InDesign.Generic Page Item          0x00000001114c4798 0x111495000 + 194456
    24  com.adobe.InDesign.Group                0x000000011191d994 0x11191a000 + 14740
    25  com.adobe.InDesign.Group                0x000000011191d014 0x11191a000 + 12308
    26  PublicLib.dylib                         0x00000001011a1991 CShape::ProcessDrawShape(GraphicsData*, int) + 273
    27  com.adobe.InDesign.Layer                0x0000000112374cf1 0x11236f000 + 23793
    28  com.adobe.InDesign.Generic Page Item          0x00000001114c4798 0x111495000 + 194456
    29  com.adobe.InDesign.Layer                0x0000000112374ba9 0x11236f000 + 23465
    30  com.adobe.InDesign.Layer                0x000000011237454c 0x11236f000 + 21836
    31  com.adobe.InDesign.Spread               0x00000001149236a9 0x11491b000 + 34473
    32  com.adobe.InDesign.Spread               0x000000011492173d 0x11491b000 + 26429
    33  com.adobe.InDesign.Spread               0x000000011491ede9 0x11491b000 + 15849
    34  com.adobe.InDesign.AppFramework          0x000000010ed11edf 0x10ece2000 + 196319
    35  com.adobe.InDesign.Layout UI            0x0000000112505e9f 0x1123af000 + 1404575
    36  com.adobe.InDesign.Layout UI            0x0000000112503a2b 0x1123af000 + 1395243
    37  com.adobe.InDesign.Layout UI            0x000000011250249a 0x1123af000 + 1389722
    38  com.adobe.InDesign.Layout UI            0x0000000112502046 0x1123af000 + 1388614
    39  com.adobe.InDesign.Layout UI            0x00000001125070ad 0x1123af000 + 1409197
    40  DV_WidgetBinLib.dylib                   0x000000010004097f 0x100037000 + 39295
    41  com.adobe.dvaui.framework               0x0000000100bb380c dvaui::ui::UI_Node::UI_DrawSelf(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 332
    42  com.adobe.dvaui.framework               0x0000000100bb3c15 dvaui::ui::UI_Node::UI_DrawAndCache(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 901
    43  com.adobe.dvaui.framework               0x0000000100bb3f38 dvaui::ui::UI_Node::UI_DispatchDrawToChild(dvaui::ui::UI_Node const*, dvaui::drawbot::Drawbot*) + 296
    44  com.adobe.dvaui.framework               0x0000000100bb26cb dvaui::ui::UI_Node::UI_Draw(dvaui::drawbot::Drawbot*) const + 43
    45  com.adobe.dvaui.framework               0x0000000100bb380c dvaui::ui::UI_Node::UI_DrawSelf(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 332
    46  com.adobe.dvaui.framework               0x0000000100bb3c15 dvaui::ui::UI_Node::UI_DrawAndCache(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 901
    47  com.adobe.dvaui.framework               0x0000000100bb3f38 dvaui::ui::UI_Node::UI_DispatchDrawToChild(dvaui::ui::UI_Node const*, dvaui::drawbot::Drawbot*) + 296
    48  com.adobe.dvaui.framework               0x0000000100bb26cb dvaui::ui::UI_Node::UI_Draw(dvaui::drawbot::Drawbot*) const + 43
    49  com.adobe.dvaui.framework               0x0000000100bb380c dvaui::ui::UI_Node::UI_DrawSelf(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 332
    50  com.adobe.dvaui.framework               0x0000000100bb3c15 dvaui::ui::UI_Node::UI_DrawAndCache(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 901
    51  com.adobe.dvaui.framework               0x0000000100bb3f38 dvaui::ui::UI_Node::UI_DispatchDrawToChild(dvaui::ui::UI_Node const*, dvaui::drawbot::Drawbot*) + 296
    52  com.adobe.dvaui.framework               0x0000000100bb26cb dvaui::ui::UI_Node::UI_Draw(dvaui::drawbot::Drawbot*) const + 43
    53  com.adobe.dvaui.framework               0x0000000100bb380c dvaui::ui::UI_Node::UI_DrawSelf(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 332
    54  com.adobe.dvaui.framework               0x0000000100bb3c15 dvaui::ui::UI_Node::UI_DrawAndCache(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 901
    55  com.adobe.dvaui.framework               0x0000000100bb3f38 dvaui::ui::UI_Node::UI_DispatchDrawToChild(dvaui::ui::UI_Node const*, dvaui::drawbot::Drawbot*) + 296
    56  com.adobe.dvaui.framework               0x0000000100bb37c4 dvaui::ui::UI_Node::UI_DrawSelf(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 260
    57  com.adobe.dvaui.framework               0x0000000100bb3c15 dvaui::ui::UI_Node::UI_DrawAndCache(dvaui::drawbot::Drawbot*, bool, dvaui::drawbot::ColorRGBA const*) const + 901
    58  com.adobe.dvaui.framework               0x0000000100bb432c dvaui::ui::UI_Node::UI_DispatchDrawFromRoot(dvaui::drawbot::ColorRGBA const&, dvaui::drawbot::Drawbot*, bool) const + 348
    59  com.adobe.InDesign.Application UI          0x000000010f0294b2 0x10eefa000 + 1242290
    60  com.adobe.dvaui.framework               0x0000000100c42586 void dvaui::drawbot::InvokeDrawbotFromRegionT<dvaui::ui::OS_View, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*>, NSView*>(dvaui::ui::OS_View const&, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*> const&, dvaui::drawbot::SupplierInterface const&, NSView*, __HIShape const*, dvaui::drawbot::SurfaceInterface*, bool) + 198
    61  com.adobe.dvaui.framework               0x0000000100c3ef6c void dvaui::drawbot::InvokeDrawbot<dvaui::ui::OS_View, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*>, NSView*>(dvaui::ui::OS_View const&, std::const_mem_fun1_ref_t<void, dvaui::ui::OS_View, dvaui::drawbot::Drawbot*> const&, dvaui::drawbot::SupplierInterface const&, NSView*, __HIShape const*, dvaui::drawbot::SurfaceInterface*, std::vector<dvacore::geom::RectT<int>, std::allocator<dvacore::geom::RectT<int> > >*, bool) + 364
    62  com.adobe.dvaui.framework               0x0000000100c2ed42 dvaui::ui::OS_View::UI_HandlePlatformDrawEvent(dvaui::drawbot::SurfaceInterface*) + 402
    63  com.adobe.dvacore.framework             0x000000010065f3e4 int dvacore::config::ErrorManager::ExecuteFunction<void>(boost::function0<void>*, void*) + 68
    64  com.adobe.InDesign.Application UI          0x000000010f027872 0x10eefa000 + 1235058
    65  com.adobe.dvacore.framework             0x000000010065f47c void dvacore::config::ErrorManager::ExecuteFunctionWithTopLevelExceptionHandler<void>(boost::f unction0<void>, bool*) + 140
    66  com.adobe.dvacore.framework             0x0000000100660fed void dvacore::config::ExecuteTopLevelFunction<void>(boost::function0<void>, bool*) + 125
    67  com.adobe.dvaui.framework               0x0000000100c39176 dvaui::ui::OS_NodeTimerData::RemoveTimer() + 25926
    68  com.apple.AppKit                        0x00007fff886bf064 -[NSView _drawRect:clip:] + 4217
    69  com.apple.AppKit                        0x00007fff886bd6c1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    70  com.apple.AppKit                        0x00007fff886bdad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    71  com.apple.AppKit                        0x00007fff886bdad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    72  com.apple.AppKit                        0x00007fff886bdad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    73  com.apple.AppKit                        0x00007fff886bdad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    74  com.apple.AppKit                        0x00007fff886bdad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    75  com.apple.AppKit                        0x00007fff886bdad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    76  com.apple.AppKit                        0x00007fff886bb6f2 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 817
    77  com.apple.AppKit                        0x00007fff886bb143 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topVi ew:] + 314
    78  com.apple.AppKit                        0x00007fff886b6d6d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    79  com.apple.AppKit                        0x00007fff88680c93 -[NSView displayIfNeeded] + 1830
    80  com.apple.AppKit                        0x00007fff8873da18 -[NSWindow _reallyDoOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 1377
    81  com.apple.AppKit                        0x00007fff8873d038 -[NSWindow _doOrderWindow:relativeTo:findKey:forCounter:force:isModal:] + 940
    82  com.apple.AppKit                        0x00007fff8873cc1f -[NSWindow orderWindow:relativeTo:] + 159
    83  com.apple.AppKit                        0x00007fff887356dc -[NSWindow makeKeyAndOrderFront:] + 48
    84  com.adobe.owl                           0x0000000100477c50 0x100433000 + 281680
    85  com.adobe.owl                           0x00000001004c248b 0x100433000 + 586891
    86  com.adobe.owl                           0x0000000100484131 0x100433000 + 332081
    87  com.adobe.owl                           0x0000000100483b1a 0x100433000 + 330522
    88  com.adobe.owl                           0x0000000100484b70 0x100433000 + 334704
    89  com.adobe.owl                           0x000000010045a6e2 0x100433000 + 161506
    90  com.adobe.owl                           0x0000000100471ac6 0x100433000 + 256710
    91  com.adobe.owl                           0x000000010047e6c3 0x100433000 + 308931
    92  com.adobe.owl                           0x000000010047dc99 OWLWidgetShow + 491
    93  WidgetBinLib.dylib                      0x00000001002f32ac DocumentPresentation::MakeActive() + 76
    94  com.adobe.InDesign.Layout UI            0x00000001124bc753 0x1123af000 + 1103699
    95  com.adobe.InDesign.Layout UI            0x00000001124bbfd4 0x1123af000 + 1101780
    96  PublicLib.dylib                         0x00000001010d4481 Command::DoImmediate(short) + 33
    97  com.adobe.InDesign.Utilities            0x0000000115d8b47c 0x115d8a000 + 5244
    98  com.adobe.InDesign.Utilities            0x0000000115d8b605 0x115d8a000 + 5637
    99  com.adobe.InDesign.AppFramework          0x000000010eced26f 0x10ece2000 + 45679
    100 PublicLib.dylib                         0x00000001010d3740 CmdUtils::ProcessCommand(ICommand*) + 64
    101 com.adobe.InDesign.Import Export UI          0x0000000111ea7dae 0x111ea0000 + 32174
    102 PublicLib.dylib                         0x00000001010d4481 Command::DoImmediate(short) + 33
    103 com.adobe.InDesign.Utilities            0x0000000115d8b47c 0x115d8a000 + 5244
    104 com.adobe.InDesign.Utilities            0x0000000115d8b605 0x115d8a000 + 5637
    105 com.adobe.InDesign.AppFramework          0x000000010eced26f 0x10ece2000 + 45679
    106 PublicLib.dylib                         0x00000001010d3740 CmdUtils::ProcessCommand(ICommand*) + 64
    107 com.adobe.InDesign.Document Actions          0x000000011057ffb9 0x11056b000 + 85945
    108 com.adobe.InDesign.Document Framework          0x00000001106c8f43 0x11059e000 + 1224515
    109 com.adobe.InDesign.AppFramework          0x000000010ed3ba2a 0x10ece2000 + 367146
    110 com.adobe.InDesign.AppFramework          0x000000010ed3633e 0x10ece2000 + 344894
    111 com.adobe.InDesign.AppFramework          0x000000010ed358e5 0x10ece2000 + 342245
    112 PublicLib.dylib                         0x00000001011cc69a CScriptProvider::HandleMethodOnObjects(IDType<ScriptID_tag>, IScriptRequestData*, adobe::version_1::vector<InterfacePtr<IScript>, adobe::version_1::capture_allocator<InterfacePtr<IScript> > > const&) + 458
    113 com.adobe.InDesign.Scripting            0x0000000114616724 0x1145eb000 + 177956
    114 com.adobe.InDesign.Scripting            0x0000000114613738 0x1145eb000 + 165688
    115 com.adobe.InDesign.Scripting            0x0000000114613d50 0x1145eb000 + 167248
    116 com.adobe.InDesign.Support for AppleScript          0x0000000114b30063 0x114b00000 + 196707
    117 com.adobe.InDesign.Support for AppleScript          0x0000000114b2d75a 0x114b00000 + 186202
    118 com.adobe.InDesign.Support for AppleScript          0x0000000114b2cae2 0x114b00000 + 183010
    119 com.adobe.InDesign.Support for AppleScript          0x0000000114b0151c 0x114b00000 + 5404
    120 com.apple.AE                            0x00007fff8b482078 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 307
    121 com.apple.AE                            0x00007fff8b481ed9 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 37
    122 com.apple.AE                            0x00007fff8b481d99 aeProcessAppleEvent + 318
    123 com.apple.HIToolbox                     0x00007fff850ad709 AEProcessAppleEvent + 100
    124 com.apple.AppKit                        0x00007fff8867d836 _DPSNextEvent + 1456
    125 com.apple.AppKit                        0x00007fff8867cdf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    126 com.apple.AppKit                        0x00007fff886741a3 -[NSApplication run] + 517
    127 com.adobe.exo.framework                 0x00000001028a7e98 exo::app::OS_AppBase::RunEventLoop() + 56
    128 com.adobe.InDesign.AppFramework          0x000000010edefff3 0x10ece2000 + 1105907
    129 com.adobe.InDesign.AppFramework          0x000000010edef182 0x10ece2000 + 1102210
    130 com.adobe.InDesign                      0x0000000100001dbc main + 412
    131 com.adobe.InDesign                      0x0000000100001bb4 start + 52
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8bef4d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8c024dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8c0249ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8bef40fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86168ff3 _pthread_cond_wait + 927
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c0e3406 TSWaitOnConditionTimedRelative + 163
    3   com.apple.CoreServices.CarbonCore          0x00007fff8c045a98 MPWaitOnQueue + 252
    4   PMRuntime.dylib                         0x000000010165ebe1 0x10165d000 + 7137
    5   com.apple.CoreServices.CarbonCore          0x00007fff8c0ba7e0 PrivateMPEntryPoint + 58
    6   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    7   libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8bef2686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff8bef1c42 mach_msg + 70
    2   com.apple.CoreServices.CarbonCore          0x00007fff8c0e03dd TS_exception_listener_thread + 67
    3   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    4   libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff8bef40fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86168fb9 _pthread_cond_wait + 869
    2   com.adobe.InDesign.AppFramework          0x000000010eddaf22 0x10ece2000 + 1019682
    3   com.adobe.InDesign.AppFramework          0x000000010edda517 0x10ece2000 + 1017111
    4   com.adobe.InDesign.AppFramework          0x000000010edd7a97 0x10ece2000 + 1006231
    5   com.adobe.InDesign.AppFramework          0x000000010eddbabd 0x10ece2000 + 1022653
    6   com.adobe.InDesign.AppFramework          0x000000010eddba43 0x10ece2000 + 1022531
    7   com.adobe.InDesign.AppFramework          0x000000010eddba02 0x10ece2000 + 1022466
    8   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    9   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff8bef40fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86168fb9 _pthread_cond_wait + 869
    2   com.adobe.InDesign.AppFramework          0x000000010eddaf22 0x10ece2000 + 1019682
    3   com.adobe.InDesign.AppFramework          0x000000010edda38d 0x10ece2000 + 1016717
    4   com.adobe.InDesign.AppFramework          0x000000010edd7a97 0x10ece2000 + 1006231
    5   com.adobe.InDesign.AppFramework          0x000000010eddbabd 0x10ece2000 + 1022653
    6   com.adobe.InDesign.AppFramework          0x000000010eddba43 0x10ece2000 + 1022531
    7   com.adobe.InDesign.AppFramework          0x000000010eddba02 0x10ece2000 + 1022466
    8   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    9   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff8bef4386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff861ee7c8 nanosleep + 163
    2   com.adobe.InDesign.Support for JavaScript          0x0000000114bc0818 0x114b6d000 + 342040
    3   com.adobe.InDesign.Support for JavaScript          0x0000000114ba7a3e 0x114b6d000 + 240190
    4   com.adobe.InDesign.Support for JavaScript          0x0000000114bc03d5 0x114b6d000 + 340949
    5   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff8bef42aa __recvfrom + 10
    1   ServiceManager-Launcher.dylib           0x000000010a37f231 0x10a367000 + 98865
    2   ServiceManager-Launcher.dylib           0x000000010a37e5d6 0x10a367000 + 95702
    3   ServiceManager-Launcher.dylib           0x000000010a37d678 0x10a367000 + 91768
    4   ServiceManager-Launcher.dylib           0x000000010a37d6e6 0x10a367000 + 91878
    5   ServiceManager-Launcher.dylib           0x000000010a3782e4 0x10a367000 + 70372
    6   ServiceManager-Launcher.dylib           0x000000010a378cfe 0x10a367000 + 72958
    7   ServiceManager-Launcher.dylib           0x000000010a378c0b 0x10a367000 + 72715
    8   ServiceManager-Launcher.dylib           0x000000010a37c36e 0x10a367000 + 86894
    9   ServiceManager-Launcher.dylib           0x000000010a37c4b2 0x10a367000 + 87218
    10  ServiceManager-Launcher.dylib           0x000000010a37c26d 0x10a367000 + 86637
    11  ServiceManager-Launcher.dylib           0x000000010a37c1e6 0x10a367000 + 86502
    12  ServiceManager-Launcher.dylib           0x000000010a36a916 0x10a367000 + 14614
    13  ServiceManager-Launcher.dylib           0x000000010a36eb05 0x10a367000 + 31493
    14  ServiceManager-Launcher.dylib           0x000000010a37ce46 0x10a367000 + 89670
    15  ServiceManager-Launcher.dylib           0x000000010a37eef3 0x10a367000 + 98035
    16  libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    17  libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 8:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff8bef40fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86168fb9 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000012275144b 0x12270c000 + 283723
    3   MultiProcessor Support                  0x0000000122751303 0x12270c000 + 283395
    4   MultiProcessor Support                  0x0000000122771394 0x12270c000 + 414612
    5   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 9:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff8bef40fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86168fb9 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000012275144b 0x12270c000 + 283723
    3   MultiProcessor Support                  0x0000000122751303 0x12270c000 + 283395
    4   MultiProcessor Support                  0x0000000122771394 0x12270c000 + 414612
    5   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 10:: MPSupport Worker
    0   libsystem_kernel.dylib                  0x00007fff8bef40fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86168fb9 _pthread_cond_wait + 869
    2   MultiProcessor Support                  0x000000012275144b 0x12270c000 + 283723
    3   MultiProcessor Support                  0x0000000122751303 0x12270c000 + 283395
    4   MultiProcessor Support                  0x0000000122771394 0x12270c000 + 414612
    5   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff8bef40fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff86168fb9 _pthread_cond_wait + 869
    2   com.adobe.InDesign.AppFramework          0x000000010eddaf22 0x10ece2000 + 1019682
    3   com.adobe.InDesign.AppFramework          0x000000010edda5c8 0x10ece2000 + 1017288
    4   com.adobe.InDesign.AppFramework          0x000000010edd7a97 0x10ece2000 + 1006231
    5   com.adobe.InDesign.AppFramework          0x000000010eddbabd 0x10ece2000 + 1022653
    6   com.adobe.InDesign.AppFramework          0x000000010eddba43 0x10ece2000 + 1022531
    7   com.adobe.InDesign.AppFramework          0x000000010eddba02 0x10ece2000 + 1022466
    8   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    9   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff8bef46d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86166f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86166ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff86151191 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff8bef4386 __semwait_signal + 10
    1   libsystem_c.dylib                       0x00007fff861ee7c8 nanosleep + 163
    2   PMRuntime.dylib                         0x0000000101662856 IDThreading::Sleep(unsigned int) + 54
    3   com.adobe.InDesign.Application UI          0x000000010ef07fe8 0x10eefa000 + 57320
    4   com.adobe.boost_threads.framework          0x00000001010736d4 boost::thread::start_thread() + 436
    5   libsystem_c.dylib                       0x00007fff86164772 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff861511a1 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff8bef46d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff86166f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff86166ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff86151191 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000007fffffff  rbx: 0x000000012a986500  rcx: 0x000000012d143b70  rdx: 0x0000000000000000
      rdi: 0x000000012a986540  rsi: 0x0000000000000000  rbp: 0x00007fff5fbf4a30  rsp: 0x00007fff5fbf4980
       r8: 0x000000012a986540   r9: 0x0000000000000000  r10: 0x000000012a986660  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x000000012216c2d4  r14: 0x0000000101e9c524  r15: 0x0000000000000000
      rip: 0x0000000101e9c2ae  rfl: 0x0000000000010247  cr2: 0x000000032d143b6c
    Logical CPU: 0
    Binary Images:
           0x100000000 -        0x100005fff +com.adobe.InDesign (9.0.0.244 - 9000) <2F683D4B-A144-3E91-A0CA-3F9B6B1DA676> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC
           0x10000c000 -        0x10000eff7 +com.adobe.InDesign.InDesignModelAndUI (9.0 - 0) <7EAF82B5-D2A0-3E46-96B1-61E4A9D819C9> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModelAndUI.framework/Versions/A/InDesignModelAndUI
           0x100014000 -        0x10001cfff +com.adobe.coretech.adobesplashkit (AdobeSplashKit Version 1.0 - 1.0) <65BFDA83-4121-3D12-9BBE-9F4FF1DB3D6A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSplashKit
           0x100025000 -        0x10002ffff +ASLSupportLib.dylib (1) <37C5A821-5118-3BCF-AC5E-F9C4FAE123A8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ASLSupportLib.dylib
           0x100037000 -        0x10012bff7 +DV_WidgetBinLib.dylib (1) <6A40E798-D47A-3959-A04E-9361B010FAE3> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DV_WidgetBinLib.dylib
           0x1001bf000 -        0x100204ff7 +TextPanelLib.dylib (1) <F06B61DF-F7D5-37AA-B1F5-BB5FA3737E62> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/TextPanelLib.dylib
           0x100221000 -        0x100382fff +WidgetBinLib.dylib (1) <7D51BAC1-7061-36C1-8C0E-CBF411371A56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/WidgetBinLib.dylib
           0x100433000 -        0x1005fcff7 +com.adobe.owl (AdobeOwl version 5.0.13 - 5.0.13) <E9BEFE93-8AB5-3EF9-B59E-69208015C7FA> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x10063f000 -        0x100883ff7 +com.adobe.dvacore.framework (7.0.849323 - 7.0.849323.0) <63BF29D6-62ED-3026-B93D-96CC42F4CF9E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore
           0x10094a000 -        0x100dd7ff7 +com.adobe.dvaui.framework (7.0.849323 - 7.0.849323.0) <6C4C227F-A5D6-3B4D-AD39-4B3C97D32440> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui
           0x10106d000 -        0x10106dfff +com.adobe.InDesign.InDesignModel (9.0 - 0) <5A3F239E-E40A-3876-8DD9-0E5AEDB58098> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
           0x101072000 -        0x101080fff +com.adobe.boost_threads.framework (7.0.847203 - 7.0.847203.0) <A0AE19A9-2B8E-310A-8AC1-0E2E026E7A40> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads
           0x101096000 -        0x10109cff7 +com.adobe.boost_date_time.framework (7.0.847203 - 7.0.847203.0) <F30F59C3-41C0-3DB1-899A-E2491EA25263> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time
           0x1010ab000 -        0x101513fff +PublicLib.dylib (1) <9C2969EC-46E7-3AC9-ADDE-45951D87A220> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PublicLib.dylib
           0x10165d000 -        0x101667fff +PMRuntime.dylib (1) <E2DF4211-4A31-32BB-87F5-F0ADFFBFACE8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/PMRuntime.dylib
           0x101670000 -        0x101687ff7 +com.adobe.AFL (AdobeAFL 1.5.0 - 1.5) <1C46F2BE-2E4D-3E25-ACDF-85E2962B92DF> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
           0x101696000 -        0x1019a6ff7 +com.adobe.CoolType (AdobeCoolType 5.13.00.30830 - 5.13.00.30830) <BBF1FCF6-523A-3E24-967A-10EA909DF89B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1019ee000 -        0x101a0bfff +com.adobe.BIB (AdobeBIB 1.2.03.30830 - 1.2.03.30830) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x101a13000 -        0x101b57fff +com.adobe.ACE (AdobeACE 2.20.02.30830 - 2.20.02.30830) <73C9699B-5EDC-3FDC-82FF-738C99AA840F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x101b6a000 -        0x10213bfff +com.adobe.AGM (AdobeAGM 4.30.19.30830 - 4.30.19.30830) <9062D763-4040-3F8C-8FF3-23876F112FB8> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x1021d8000 -        0x102215fff +com.adobe.ARE (AdobeARE 1.5.02.30830 - 1.5.02.30830) <73174C59-1DDC-3416-A0AD-4D70930ABA60> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
           0x10221d000 -        0x102243fff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x10224b000 -        0x1027e4fff +com.adobe.MPS (AdobeMPS 5.8.1.30604 - 5.8.1.30604) <70CBC6A8-2740-37AB-964E-484096A1BF8A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x102861000 -        0x10287eff7 +com.adobe.dvaflashview.framework (7.0.849323 - 7.0.849323.0) <727F09EC-0D75-3C41-8553-54585B9408BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview
           0x102895000 -        0x102899ff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x1028a0000 -        0x102962fff +com.adobe.exo.framework (7.0.849323 - 7.0.849323.0) <60261EFB-3EF3-3201-9BE7-3CC7235B523B> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/exo.framework/Versions/A/exo
           0x1029ff000 -        0x102aadfff +com.adobe.dvaworkspace.framework (7.0.849323 - 7.0.849323.0) <412D9508-51FD-34D9-8B3E-FE9BD1EAC107> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace
           0x102b30000 -        0x1031adfcf +com.adobe.PlugPlug (4.0.0.172 - 4.0.0.172) <1B15941F-D885-3AC5-880F-D513DA868B00> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
           0x103494000 -        0x1034c0ff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbb.dylib
           0x1034db000 -        0x1034fafe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10351f000 -        0x104264fff +com.adobe.ICUData (4.0 - 3.61) <01D90725-4B10-312C-9546-9C0CCCA1B7BB> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib
           0x104278000 -        0x1043a9ff7 +com.adobe.ICUInternationalization (4.0 - 3.61) <CD4AD967-00CD-3979-8F82-1166E2058FA6> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40.0 .dylib
           0x1043fd000 -        0x1044f3ff7 +com.adobe.ICUUnicode (4.0 - 3.61) <2352E6C8-3431-3A99-92B9-382E85A018AC> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib
           0x10452b000 -        0x104659fff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1046b4000 -        0x1047a3fff +com.adobe.amtlib (7.0.0.169 - 7.0.0.169) <A9A9F814-FF1F-3182-992C-395E5BC52481> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x1047b6000 -        0x1047b8fff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x1047be000 -        0x104875ff7 +com.adobe.boost_regex.framework (7.0.847203 - 7.0.847203.0) <F1C659D9-D3E8-3ACE-8368-9161529A6A66> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex
           0x1048df000 -        0x10494eff7 +com.adobe.adobe_caps (adobe_caps 7.0.0.21 - 7.0.0.21) <CE3C6356-9EE2-3B88-8261-8612A0743F56> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
           0x104959000 -        0x104964fff +com.adobe.boost_signals.framework (7.0.847203 - 7.0.847203.0) <E0B3BB47-4294-3D65-8979-29B2D6C5DD2E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals
           0x104973000 -        0x104977fff +com.adobe.boost_system.framework (7.0.847203 - 7.0.847203.0) <70F73B9F-8416-37BF-9294-086AE475B743> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system
           0x10497d000 -        0x104a1efff +com.adobe.ICUConverter (4.0 - 3.61) <46764474-111C-3B13-AF62-002B71877405> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib
           0x104a3e000 -        0x104aa0ff7 +DataBaseLib.dylib (1) <F2D6864D-0813-3833-96A5-9D256A00375D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DataBaseLib.dylib
           0x104ab4000 -        0x104b20fff +ObjectModelLib.dylib (1) <FDA08F73-D9C2-303E-AB18-564E50554517> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/ObjectModelLib.dylib
           0x104b3d000 -        0x104b61fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.8.0.30807 - 3.8.0.30807) <16FF5E16-19E0-3CE1-A68E-27567234429F> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
           0x10737e000 -        0x10737efff +DTraceSupport.dylib (1) <E54DF20B-C169-68CF-A3F5-0470DEFF1C8A> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/DTraceSupport.dylib
           0x1073a3000 -        0x1073a5ff7  com.apple.textencoding.unicode (2.5 - 2.5) <0518078E-C652-3CFC-A3FB-903C600CE831> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x1073aa000 -        0x1073e9ff7 +com.adobe.InDesign.PNG Import Filter (9.0.0.244 - 0) <FDD9A76B-D1C7-3C19-A4D6-0C470B8F9F3D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Required/PNG Import Filter.InDesignPlugin/PNG Import Filter
           0x1077d3000 -        0x1077dbfff +com.adobe.InDesign.Data Services UI (9.0.0.244 - 0) <7B0D3F37-5CB3-3C80-8C71-6EE35DAF0F57> /Applications/Adobe InDesign CC/*/Data Services UI
           0x1077e5000 -        0x1077edfff +com.adobe.InDesign.Data Services (9.0.0.244 - 0) <FF804F79-F26A-32FD-9ABB-EE71673EF180> /Applications/Adobe InDesign CC/*/Data Services
           0x1077f3000 -        0x1077f5fff +com.adobe.InDesign.SimpleTextImportFilter (9.0.0.244 - 0) <A4823CC0-085B-3106-9A20-6D23E2591F03> /Applications/Adobe InDesign CC/*/SimpleTextImportFilter
           0x108366000 -        0x108375ff7 +com.adobe.InDesign.DTTransform (9.0.0.244 - 0) <C9DD2FAF-BABE-3B7E-AEBA-00306E030DEE> /Applications/Adobe InDesign CC/*/DTTransform
           0x1087b3000 -        0x1087f1fff +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 7.0.1.102 - 7.0.1.102) <75ADE364-1107-3DA7-84A2-26C6874EB881> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotifications
           0x10a367000 -        0x10a393fff +ServiceManager-Launcher.dylib (55) <D5A4D905-A054-3E22-A284-3519895C201B> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
           0x10a4a9000 -        0x10a4cfff7 +com.adobe.InDesign.LILO (9.0.0.244 - 0) <9EBF6F94-9C67-38CE-8498-35AAB356F2B5> /Applications/Adobe InDesign CC/*/LILO
           0x10a4dd000 -        0x10a4e6ff7 +com.adobe.InDesign.PNG Import Filter UI (9.0.0.244 - 0) <3FAFE9A4-D233-3288-8686-515229F7EEB1> /Applications/Adobe InDesign CC/*/PNG Import Filter UI
           0x10a4f1000 -        0x10a4f9ff7 +com.adobe.InDesign.JPEG Export UI (9.0.0.244 - 0) <2F81D85C-3AFC-3BB4-B60F-3B3E3CB5B6FA> /Applications/Adobe InDesign CC/*/JPEG Export UI
           0x10afa1000 -        0x10afdffff +com.adobe.InDesign.Dictionary Editor Dialog (9.0.0.244 - 0) <0D0DD4DC-6894-32DF-B96A-558862891888> /Applications/Adobe InDesign CC/*/Dictionary Editor Dialog
           0x10b420000 -        0x10b47dfff +com.adobe.InDesign.Media Import Filter (9.0.0.244 - 0) <EF3386C3-F980-34EA-9EFF-64910373496F> /Applications/Adobe InDesign CC/*/Media Import Filter
           0x10b490000 -        0x10b4baff7 +com.adobe.InDesign.Sangam Preferences UI (9.0.0.244 - 0) <2C6C6B32-5C33-300A-8AF1-AF545F1C0BD9> /Applications/Adobe InDesign CC/*/Sangam Preferences UI
           0x10b4cd000 -        0x10b4e3ff7 +com.adobe.InDesign.SaveBack (9.0.0.244 - 0) <C839FA45-F1DD-333E-B8FF-5E3CA5B24364> /Applications/Adobe InDesign CC/*/SaveBack
           0x10b4f1000 -        0x10b4f8fff +com.adobe.InDesign.InCopyImport (9.0.0.244 - 0) <DC5E347C-82A8-3A05-B233-E0CBC1CD5C67> /Applications/Adobe InDesign CC/*/InCopyImport
           0x10b840000 -        0x10b91bfff +com.adobe.linguistic.LinguisticManager (7.0.0 - 19061) <FDBCF369-5EFE-33BB-893A-2136EF8D0D6E> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x10b937000 -        0x10ba4cfff +com.adobe.InDesign.EBookExport (9.0.0.244 - 0) <86F6CE82-3182-32F0-A2EC-167B4F7862D6> /Applications/Adobe InDesign CC/*/EBookExport
           0x10ba74000 -        0x10baddfff +com.adobe.AdobeSangam (AdobeSangam 5.65.0.30369 - 5.65.0.30369) <BCD8B3F6-970F-3DEA-A583-7473FDDCA067> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSangam
           0x10bb2b000 -        0x10bb7cfff +com.adobe.InDesign.SangamExport (9.0.0.244 - 0) <0574175B-890E-36BC-B223-32EBEFB50B2F> /Applications/Adobe InDesign CC/*/SangamExport
           0x10bb93000 -        0x10bcd4ff7 +com.adobe.InDesign.SangamServicer-Mapper (9.0.0.244 - 0) <4BAB90F5-52B7-374A-B9B6-7429C66EF9A4> /Applications/Adobe InDesign CC/*/SangamServicer-Mapper
           0x10bcf8000 -        0x10bdcbff7 +com.adobe.InDesign.Tagged Text Attributes (9.0.0.244 - 0) <3A0D3BCF-DDB7-3ECA-8148-C693809B9BC8> /Applications/Adobe InDesign CC/*/Tagged Text Attributes
           0x10bdfa000 -        0x10be06fff +com.adobe.InDesign.Tagged Text Filters UI (9.0.0.244 - 0) <034B439C-F4BF-36D8-8FE5-DEE1807DDBA7> /Applications/Adobe InDesign CC/*/Tagged Text Filters UI
           0x10be11000 -        0x10beb6fff +com.adobe.InDesign.Tagged Text Filters (9.0.0.244 - 0) <A34A0B6C-7D62-31F1-93B9-D1765CBEC93D> /Applications/Adobe InDesign CC/*/Tagged Text Filters
           0x10becb000 -        0x10bed8fff +com.adobe.InDesign.Clipping Path Dialog (9.0.0.244 - 0) <16C1A307-2161-3A90-953D-F321E748615B> /Applications/Adobe InDesign CC/*/Clipping Path Dialog
           0x10beea000 -        0x10bf2eff7 +com.adobe.InDesign.Color Management UI (9.0.0.244 - 0) <D804A9E1-A2B6-37AD-B684-43C8E3CE4936> /Applications/Adobe InDesign CC/*/Color Management UI
           0x10bf3e000 -        0x10bfbaff7 +com.adobe.InDesign.Color Picker Panel (9.0.0.244 - 0) <B90A4418-E4D5-3D38-A487-4DEE7FF39A12> /Applications/Adobe InDesign CC/*/Color Picker Panel
           0x10bfe2000 -        0x10c062ff7 +com.adobe.InDesign.DynamicDocumentsUI (9.0.0.244 - 0) <1BCEA1A3-0146-32B2-8BF7-8ABA0A5CAAEE> /Applications/Adobe InDesign CC/*/DynamicDocumentsUI
           0x10c089000 -        0x10c0a5fff +com.adobe.InDesign.EPS UI (9.0.0.244 - 0) <605EEF62-9504-3D17-944E-C46531B8AE9F> /Applications/Adobe InDesign CC/*/EPS UI
           0x10c0b6000 -        0x10c0c2ff7 +com.adobe.InDesign.Generic Style Editor (9.0.0.244 - 0) <E3407643-34D1-351D-AD4A-FC83D64F1D94> /Applications/Adobe InDesign CC/*/Generic Style Editor
           0x10c0d1000 -        0x10c107fff +com.adobe.InDesign.Gradient Panel (9.0.0.244 - 0) <FEB32D3E-A743-37D7-AD55-0C7BE4C3A7F9> /Applications/Adobe InDesign CC/*/Gradient Panel
           0x10c11e000 -        0x10c1c0fff +com.adobe.InDesign.Graphic Panels (9.0.0.244 - 0) <21F96085-EB7B-3120-8A14-0878423CE0EB> /Applications/Adobe InDesign CC/*/Graphic Panels
           0x10c1e9000 -        0x10c204fff +com.adobe.InDesign.JPEG Export (9.0.0.244 - 0) <388494FD-CC7B-3DE7-95E0-168DB055E05B> /Applications/Adobe InDesign CC/*/JPEG Export
           0x10c216000 -        0x10c267ff7 +com.adobe.InDesign.Output Preview (9.0.0.244 - 0) <95F41A2C-23A1-35E3-997C-AC3E54B8122B> /Applications/Adobe InDesign CC/*/Output Preview
           0x10c281000 -        0x10c298ff7 +com.adobe.InDesign.OutputMiscUI (9.0.0.244 - 0) <BA2B462B-F51B-3F6A-9784-C7E1A829521A> /Applications/Adobe InDesign CC/*/OutputMiscUI
           0x10c2ab000 -        0x10c32cfff +com.adobe.InDesign.PDF UI (9.0.0.244 - 0) <174E4555-5A58-3C01-8ACB-B3EB40200850> /Applications/Adobe InDesign CC/*/PDF UI
           0x10c350000 -        0x10c3bdfff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 14 - 79.151481) <BCDB9366-EDB3-3FEA-854D-3D2C72D48781> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x10c3c8000 -        0x10c3dfff7 +com.adobe.InDesign.Printer Styles (9.0.0.244 - 0) <487F7052-DB11-3A2A-BE31-201DEC20FCEB> /Applications/Adobe InDesign CC/*/Printer Styles
           0x10c3ee000 -        0x10c4d0fff +com.adobe.InDesign.PrintUI (9.0.0.244 - 0) <F827F8F9-91CD-3A6A-836B-A674CA53B9FA> /Applications/Adobe InDesign CC/*/PrintUI
           0x10c4fc000 -        0x10c50eff7 +com.adobe.InDesign.PS Import UI (9.0.0.244 - 0) <0280417C-5563-3598-AA00-684D11F291D2> /Applications/Adobe InDesign CC/*/PS Import UI
           0x10c51d000 -        0x10c540fff +com.adobe.InDesign.Swatch Library Panel (9.0.0.244 - 0) <20A34F07-0480-302C-8438-F356D7451012> /Applications/Adobe InDesign CC/*/Swatch Library Panel
           0x10c54f000 -        0x10c60cff7 +com.adobe.InDesign.Swatches Panel (9.0.0.244 - 0) <E9653217-9232-31D7-8B55-7460A27289E3> /Applications/Adobe InDesign CC/*/Swatches Panel
           0x10c642000 -        0x10c6f1ff7 +com.adobe.InDesign.Transparency UI (9.0.0.244 - 0) <03830CAC-DF7D-3605-9963-4DA645248281> /Applications/Adobe InDesign CC/*/Transparency UI
           0x10c724000 -        0x10c788fff +com.adobe.InDesign.Assignment UI (9.0.0.244 - 0) <C4DC67CA-6464-361D-8F96-AC7383158809> /Applications/Adobe InDesign CC/*/Assignment UI
           0x10c7aa000 -        0x10c7cdfff +com.adobe.InDesign.InCopy Bridge UI (9.0.0.244 - 0) <FA141EE1-E99A-3D03-BE6C-A2E545821E8C> /Applications/Adobe InDesign CC/*/InCopy Bridge UI
           0x10c7db000 -        0x10c81aff7 +com.adobe.InDesign.InCopy Bridge (9.0.0.244 - 0) <D5E4E3B1-A43B-3417-AF70-78C223C798A0> /Applications/Adobe InDesign CC/*/InCopy Bridge
           0x10c82a000 -        0x10c832fff +com.adobe.InDesign.InCopyExport (9.0.0.244 - 0) <81D645C8-B39C-3FFE-9A1D-55D7E7D8F46E> /Applications/Adobe InDesign CC/*/InCopyExport
           0x10c83c000 -        0x10c843ff7 +com.adobe.InDesign.InCopyExportUI (9.0.0.244 - 0) <713F0E2D-1802-36CA-8E10-FF322C3E2259> /Applications/Adobe InDesign CC/*/InCopyExportUI
           0x10c84c000 -        0x10c854fff +com.adobe.InDesign.InCopyWorkflow UI (9.0.0.244 - 0) <B5F00DC3-482D-3FCA-BD7E-67CF432C75A8> /Applications/Adobe InDesign CC/*/InCopyWorkflow UI
           0x10c85f000 -        0x10c8b6ff7 +com.adobe.InDesign.Note (9.0.0.244 - 0) <39574DCB-0795-3067-84CF-0FB12B9E4881> /Applications/Adobe InDesign CC/*/Note
           0x10c8d6000 -        0x10c8e1ff7 +com.adobe.InDesign.NotePref (9.0.0.244 - 0) <95C54A58-F9FD-3374-B600-705525389FF3> /Applications/Adobe InDesign CC/*/NotePref
           0x10c8ef000 -        0x10c8f4ff7 +com.adobe.InDesign.Username UI (9.0.0.244 - 0) <85772C26-BB2E-34BB-B733-E08E4966949A> /Applications/Adobe InDesign CC/*/Username UI
           0x10c8fe000 -        0x10c99fff7 +com.adobe.InDesign.ButtonUI (9.0.0.244 - 0) <E55C1B03-3F82-3971-841B-56EB21F8ED20> /Applications/Adobe InDesign CC/*/ButtonUI
           0x10c9ce000 -        0x10c9f6ff7 +com.adobe.InDesign.MediaUI (9.0.0.244 - 0) <C42F3AD6-9E13-3C9A-BC49-A93F440751C0> /Applications/Adobe InDesign CC/*/MediaUI
           0x10ca0b000 -        0x10ca1bfff +com.adobe.InDesign.Alignment Panel (9.0.0.244 - 0) <4801B0C6-C22C-3384-AB5E-5FCF75DD308D> /Applications/Adobe InDesign CC/*/Alignment Panel
           0x10ca24000 -        0x10ca6bfff +com.adobe.InDesign.Asset Library Panel (9.0.0.244 - 0) <DFD7A06A-9BE0-3FA3-AA41-66A68C0A0957> /Applications/Adobe InDesign CC/*/Asset Library Panel
           0x10ca8f000 -        0x10cafcff7 +com.adobe.InDesign.Asset PubLibrary (9.0.0.244 - 0) <1FB73D92-A75B-39B0-91F8-02AB32E6D0E3> /Applications/Adobe InDesign CC/*/Asset PubLibrary
           0x10cb1a000 -        0x10cb67ff7 +com.adobe.InDesign.Book Panel (9.0.0.244 - 0) <0306739B-78D6-30D6-9705-6DFE711C8EE7> /Applications/Adobe InDesign CC/*/Book Panel
           0x10cb8a000 -        0x10cba6fff +com.adobe.InDesign.Bookmark Panel (9.0.0.244 - 0) <19756A8B-1C5A-320E-A6D2-3D763B15947F> /Applications/Adobe InDesign CC/*/Bookmark Panel
           0x10cbbd000 -        0x10cbf6fff +com.adobe.InDesign.ContentDropper Tool (9.0.0.244 - 0) <DB93021C-DD9A-3CA4-AF06-CC3ECEFA946B> /Applications/Adobe InDesign CC/*/ContentDropper Tool
           0x10cc14000 -        0x10cc5aff7 +com.adobe.InDesign.Control Panel (9.0.0.244 - 0) <AF496EDF-D413-3344-8805-7D9F1DB11DC7> /Applications/Adobe InDesign CC/*/Control Panel
           0x10cc77000 -        0x10cc81fff +com.adobe.InDesign.Create Guides Dialog (9.0.0.244 - 0) <7F35F38E-FA21-3692-82C1-BCE747EE3CEB> /Applications/Adobe InDesign CC/*/Create Guides Dialog
           0x10cc8c000 -        0x10ccc6fff +com.adobe.InDesign.Eyedropper Tool (9.0.0.244 - 0) <A8E7360A-E42A-3790-B998-83398E336316> /Applications/Adobe InDesign CC/*/Eyedropper Tool
           0x10ccdb000 -        0x10cd68fff +com.adobe.InDesign.Hyperlinks Panel (9.0.0.244 - 0) <72C51910-CC5C-3B7D-8331-70195952E7A5> /Applications/Adobe InDesign CC/*/Hyperlinks Panel
           0x10cd8d000 -        0x10ce1dfff +com.adobe.InDesign.Index Panel (9.0.0.244 - 0) <EC33F8C3-4233-3790-B4AF-5AB31B6956FC> /Applications/Adobe InDesign CC/*/Index Panel
           0x10ce3d000 -        0x10ce49ff7  com.apple.carbonframeworktemplate (1.0 - 1.0) <E859A35E-8EC1-3CA9-9758-95EC69D4EC5D> /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/Frameworks/unihan.framework/Versions/A/unihan
           0x10ce54000 -        0x10cebcfff +com.adobe.InDesign.Info Panel (9.0.0.244 - 0) <0BDD7C10-8F5D-3507-B772-EFCBE4AE1ED0> /Applications/Adobe InDesign CC/*/Info Panel
           0x10ced4000 -        0x10cf98fff +com.adobe.InDesign.Knowledge Base (9.0.0.244 - 0) <C979FEE9-EB01-3B48-AC45-EABE15DAF596> /Applications/Adobe InDesign CC/*/Knowledge Base
           0x10cfa2000 -        0x10cff5ff7 +com.adobe.InDesign.Layers Panel (9.0.0.244 - 0) <4BD4C9F5-7EF5-387C-AC72-40014E19D7F5> /Applications/Adobe InDesign CC/*/Layers Panel
           0x10d017000 -        0x10d01cfff +com.adobe.InDesign.Layout Adjustment Panel (9.0.0.244 - 0) <27CE7F02-93CA-348D-BC67-1571721BC4BF> /Applications/Adobe InDesign CC/*/Layout Adjustment Panel
           0x10d025000 -        0x10d044fff +com.adobe.InDesign.Layout Adjustment (9.0.0.244 - 0) <D4DAC346-AE89-3BBE-BF0C-E449E34B4121> /Applications/Adobe InDesign CC/*/Layout Adjustment
           0x10d053000 -        0x10d09fff7 +com.adobe.InDesign.Links UI (9.0.0.244 - 0) <D2BA3E6B-66B8-36BB-B28F-FB41EAC0C74D> /Applications/Adobe InDesign CC/*/Links UI
           0x10d0c1000 -        0x10d166ff7 +com.adobe.InDesign.ObjectStylesUI (9.0.0.244 - 0) <8805D797-3D6A-3231-9E5A-3954B2BC30FD> /Applications/Adobe InDesign CC/*/ObjectStylesUI
           0x10d196000 -        0x10d1bcfff +com.adobe.InDesign.Page Setup Dialog (9.0.0.244 - 0) <4F0302C1-D70D-3B22-AFD6-EA32AE0D393A> /Applications/Adobe InDesign CC/*/Page Setup Dialog
           0x10d1c9000 -        0x10d28dfff +com.adobe.InDesign.Pages Panel (9.0.0.244 - 0) <DE2D5A98-5F85-3311-B09E-9391CE0AFA73> /Applications/Adobe InDesign CC/*/Pages Panel
           0x10d2be000 -        0x10d2cdfff +com.adobe.InDesign.Sections UI (9.0.0.244 - 0) <B7BE35B6-9BA8-33B7-88E1-9CD7E49745C3> /Applications/Adobe InDesign CC/*/Sections UI
           0x10d2d8000 -        0x10d2e2fff +com.adobe.InDesign.StepRepeat (9.0.0.244 - 0) <28502BE1-9A2D-338D-AC27-5CFFC9FC4DD8> /Applications/Adobe InDesign CC/*/StepRepeat
           0x10d2ee000 -        0x10d32dff7 +com.adobe.InDesign.Text Wrap Panel (9.0.0.244 - 0) <3197CB4D-952F-3BF9-A91C-F1490A2BA0A2> /Applications/Adobe InDesign CC/*/Text Wrap Panel
           0x10d346000 -        0x10d388fff +com.adobe.InDesign.TOC UI Dialog (9.0.0.244 - 0) <B330AAE5-4ECF-3687-B25B-A7E1087287EB> /Applications/Adobe InDesign CC/*/TOC UI Dialog
           0x10d3a2000 -        0x10d3deff7 +com.adobe.InDesign.Transform Panel (9.0.0.244 - 0) <916C8883-536E-3E8C-B321-DB90DDC4C072> /Applications/Adobe InDesign CC/*/Transform Panel
           0x10d3f4000 -        0x10d40ffff +com.adobe.InDesign.Image Import UI (9.0.0.244 - 0) <314ED635-384F-3699-8494-A9713519B2E0> /Applications/Adobe InDesign CC/*/Image Import UI
           0x10d421000 -        0x10d437fff +com.adobe.InDesign.Scotch Rules (9.0.0.244 - 0) <67B1F4A9-CAF9-34E0-9C2F-70B47C09A2FB> /Applications/Adobe InDesign CC/*/Scotch Rules
          

    Chris, OK the complete crash log is at http://pastebin.com/tZ7wummp
    Thanks.

Maybe you are looking for