Buttons Color Changed

This may sound like I don't understand button states or whatever, but every time I convert an image to a button and preview the menu the button isn't the color I created it. I open the menu in Photoshop and there are no layers that should be causing this. What is Encore CS3 doing to buttons and how do I edit or stop it? All I want is to have the buttons show up the color I create them not some hue shift that ruins my color scheme.

Hi Ruud,
Yes, i have no doubt watching the tutorial movie would help.
If fact, last night before posting this topic to the forum I did a search and came up with the topic with the link to the movie,
but after downloading the movie Windows Media Player says it is missing an audio codec it needs to play the movie and when clicking the Web Help button the page only tells me WMP is having a problem with the file (not all that helpful).
I thought I'd import it into Premiere but it seems to be an unsupported format.
So for the time being, I'm a bit stuck with the file.
I have a month's membership with Lynda.com and have been watching the Encore CS3 movies but haven't gotten what I need yet.
I am going to continue and most likely something there will click for me.
I had the problem last week and one of the check mark selectors cleared it up, but nothing seems to work on this project.
It seemed to be related to a feature that was kind of like a visited link color change.
Any further help is appreciated,
Don

Similar Messages

  • Flash swf componrnt button color changing by flex script

    i have a swf button created in flash which is used in flex.
    the button has got an arrow which is initially black, now i have to
    change the color of that arrow dynamically. i know flex a little
    bit but dont know flash.
    i have the source - fla - file of the swf too, where there is
    a button symbol - the arrow - in the library, but i dont know how
    to access that symbol from flex and change its properties.
    thanks in advance.

    Small detail:
    because you are embedding the swf as a whole, the datatype of
    content is MovieClip. So with your code you are downcasting the
    datatype to DisplayObjectContainer. The inheritance chain:
    MovieClip -> Sprite -> DisplayObjectContainer ->
    InteractiveObject -> DisplayObject -> EventDispatcher ->
    Object
    Your code works because 'transform' is an inherited public
    property of DisplayObject. But if you needed a method like
    gotoAndPlay() the downcast to DisplayObjectContainer would prevent
    this since gotoAndPlay() is a member of the MovieClip class.

  • How to create a radio button that changes colors

    I'm using Acrobat X and ID CS5 on Mac OS X.
    A couple of years ago someone on the forums explained to me how to create a button that changes color with each click. You can view a sample PDF at https://dl.dropboxusercontent.com/u/52882455/colorcycle.pdf. They gave me the document JS and showed me how to set the properties of the button. I've integrated the button into a particular series of PDF forms and it's worked out very well.
    Now I would like to do the same thing, but using a circle instead of a square. Can anyone tell me the best way to do this? Can I somehow set a radio button to cycle through colors in the same way? I design my forms initially in ID CS5 and then activate and format the fields in Acrobat X. I've tried using circles instead of squares in my ID document, but when I export to an interactive PDF, they're converted to squares.
    Any ideas?

    I understand how to make buttons cycle through colors-- the problem I'm having is that I'm trying to figure out how to make a circular button cycle through colors. When I export my ID document to PDF, my round button maintains it's original appearance, but when I click on it to cycle through the colors, it behaves like a square (see new PDF at https://dl.dropboxusercontent.com/u/52882455/colorcycle2.pdf).
    If I use a radio button, I can get it to cycle through colors, but I don't want it to have a black dot in the middle. Is there a way to format the radio button to not show the black dot when clicked?

  • How to change button colors in a loop?

    I am working on a task that should imitate an elevator. I have two vertical
    rows of round buttons "Up" and "Down" When a circle is selected randomly by
    the program, the circle becomes yellow and the elevator moves to that
    button.
    Here is what I did:
    1. created a class Circle where I save buttons' parameters
    2. saved Circle objects in an array
    3. drew the buttons depending on their parameters
    4. generated a random number, matched it with an array index and assigned
    the object color to yellow.
    Everything is fine except that I can't figure out how to change colors of my
    buttons in a loop.
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class Elevator3 extends JPanel
    private int n = 40;
    private int width = 200;
    private int floors = 10;
    private int interval = 1000;
    private boolean selected = false;
    private Circle[] buttons = new Circle[2*(floors-1)];
    public Elevator3()
    build();
    JFrame frame = new JFrame("Elevator3");
    setBackground(Color.WHITE);
    setFont(new Font("SansSerif", Font.PLAIN, Math.round(n/3)));
    frame.getContentPane().add(this);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(width, n*(floors+2) );
    frame.setVisible(true);
    public void build()
    Random r = new Random();
    int buttonPick;
    int timeUntilNextButton = r.nextInt(interval);
    for (int k =0; ; k++)
    if (timeUntilNextButton-- ==0)
    buttonPick = r.nextInt(2*(floors-1));
    //populate my buttons array here - how??
    timeUntilNextButton = r.nextInt(interval);
    //adding "Down" buttons
    for (int i=1, count=0; i < floors; i++, count++)
    if (count == buttonPick)
    selected = true;
    else
    selected = false;
    buttons[count]= new Circle(n*2, n*i, selected, Math.round(n/2));
    //build an array of "Up" circles
    for (int i=2, count=floors-1; i < floors+1; i++, count++)
    if (count == buttonPick)
    selected = true;
    else
    selected = false;
    buttons[count]= new Circle(n, n*i, selected, Math.round(n/2));
    public static void main(String[] args)
    new Elevator3();
    protected void paintComponent(Graphics g)
    super.paintComponent(g);
    //draw buttons
    for (int i=0; i < buttons.length; i++)
    g.setColor(buttons.getColor());
    g.fillOval(buttons[i].getX(), buttons[i].getY(), buttons[i].getWidth(), buttons[i].getWidth());
    class Circle
    private int x;
    private int y;
    private Color c;
    private boolean pressed;
    private int width;
    public Circle(int xCoordinate, int yCoordinate, boolean selected, int diameter)
    x = xCoordinate;
    y = yCoordinate;
    pressed = selected;
    width = diameter;
    if (pressed)
    c = Color.YELLOW;
    else
    c = Color.LIGHT_GRAY;
    public Color getColor()
    return c;
    public int getX()
    return x;
    public int getY()
    return y;
    public int getWidth()
    return width;

    hi,
    am sorry, i couldn't make out what exactly the problem, but as ur subject line says...
    may be the code give below will help you to change button colors in a loop..
              for(int i = 0; i < button.length; i++){
                   int color1 = (int)(250*Math.random());
                   int color2 = (int)(250*Math.random());
                   int color3 = (int)(250*Math.random());
                   Color c = new Color(color1,color2,color3);
                   button[i] = new JButton("button name");
                   button.addActionListener(this);
                   //to check the r, g, b combination.
                   //System.out.println(c);
                   button[i].setBackground(c);
                   button[i].setForeground(Color.white);
    //adding into the panel
                   panel.add(button[i]);
    hope this would help you.

  • Change pressed button Color

    Hi,
    I want to change my pressed button Color and I haven't been able to find a way, I tried creating my own button and add a listener when it is pressed and then change its background color but it doesn't work! it works for enter and exit but not for pressed and released.
    any one has an idea?
    thanks
    Here's my code:
    package components;
    import javax.swing.*;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseAdapter;
    import java.awt.*;
    * JButton con una nueva propiedad de Color presionado
    * @author Ana Mar�a Franco
    * @version 1.0
    public class PressedColorButton extends JButton
        // Atributos ************************************************************************
        private Color unpressedButtonColor;
        private Color pressedButtonColor;
        // Constructores ********************************************************************
        public PressedColorButton()
            super();
            this.addMouseListener(new PressedColorButton_this_mouseAdapter(this));
        // M�todos **************************************************************************
         * Obtiene el color sin presionar
         * @return Color
        public Color getUnpressedButtonColor()
            return this.unpressedButtonColor;
         * Define el color sin presionar
         * @param nuevoColor Color
        public void setUnpressedButtonColor(Color nuevoColor)
            this.unpressedButtonColor = nuevoColor;
         * Obtiene el color presionado
         * @return Color
        public Color getPressedButtonColor()
            return this.pressedButtonColor;
         * Define el color presionado
         * @param nuevoColor Color
        public void setPressedButtonColor(Color nuevoColor)
            this.pressedButtonColor = nuevoColor;
        public void this_mouseExited(MouseEvent e)
            this.setBackground(unpressedButtonColor);
        public void this_mousePressed(MouseEvent e)
            this.setBackground(pressedButtonColor);
        public void this_mouseReleased(MouseEvent e)
            this.setBackground(unpressedButtonColor);
        public void this_mouseEntered(MouseEvent e)
            this.setBackground(pressedButtonColor);
    // Escuchadores *************************************************************************
    class PressedColorButton_this_mouseAdapter extends MouseAdapter
        private PressedColorButton adaptee;
        PressedColorButton_this_mouseAdapter(PressedColorButton adaptee)
            this.adaptee = adaptee;
        public void mouseExited(MouseEvent e)
            adaptee.this_mouseExited(e);
        public void mousePressed(MouseEvent e)
            adaptee.this_mousePressed(e);
        public void mouseReleased(MouseEvent e)
            adaptee.this_mouseReleased(e);
        public void mouseEntered(MouseEvent e)
            adaptee.this_mouseEntered(e);
    }

    Swing related questions should be posted in the Swing forum. Try setting the following properties on the button:
    setContentAreaFilled( false );
    setOpaque(true);

  • Is there any way to change the color of the Firefox 4 menu button away from orange? It attracts my attention and as far as I can tell personas change everything but the menu button color.

    Is there any way to change the color of the Firefox 4 menu button away from orange? It attracts my attention and as far as I can tell personas change everything but the menu button color.

    You can change it with the App Button Color extension - https://addons.mozilla.org/firefox/addon/app-button-color

  • I need to create buttons in which the color changes, and stays on after you release the button

    I need to create buttons in which the color changes, and stays on after you release the button. The hard part is the buttons must change independently of each other.
    To get an idea of some of things I’ve tried I’ve tried making the movie with two frames.
    When I click the button it switched to the new frame which would show a movie clip,
    Unfortunately all buttons would change color together and don’t see how to make it so that they change independently.

    you must use movieclip buttons and code for their frame changes.

  • Change button color

    i have a group of buttons and when each one is clicked its color should change. when another button is clicked the color of previous button should change back to normal..plz help..thanks in advance

    Hi Srivatsa,
    You can do the same for chnanging your button icons if you have only tow icons to display ....one is default icon and the other one is the icon which you wnat to display when the button is clicked...
    Check the below code:
    Just replace the image path in the embed variable with your image path and check...
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Script>
      <![CDATA[
       private var previousButtonClicked:Button;
       [Embed("assets/Rose20Icon.jpg") ]
             [Bindable]private var buttonIcon:Class;
             [Embed("assets/arrowIcon.JPG") ]
             [Bindable]private var buttonIconDefault:Class;
       private function buttonClickHandler(event:MouseEvent):void
        if(previousButtonClicked)
         previousButtonClicked.setStyle("icon",buttonIconDefault);
        previousButtonClicked = event.currentTarget as Button;
        Button(event.currentTarget).setStyle("icon",buttonIcon);
      ]]>
    </mx:Script>
    <mx:HBox>
      <mx:Button id="btn1" icon="{buttonIconDefault}" label="Button" color="green" click="buttonClickHandler(event);"/>
      <mx:Button id="btn2" icon="{buttonIconDefault}" label="Button" color="green" click="buttonClickHandler(event);"/>
      <mx:Button id="btn3" icon="{buttonIconDefault}" label="Button" color="green" click="buttonClickHandler(event);"/>
      <mx:Button id="btn4" icon="{buttonIconDefault}" label="Button" color="green" click="buttonClickHandler(event);"/>
      <mx:Button id="btn5" icon="{buttonIconDefault}" label="Button" color="green" click="buttonClickHandler(event);"/>
      <mx:Button id="btn6" icon="{buttonIconDefault}" label="Button" color="green" click="buttonClickHandler(event);"/>
      <mx:Button id="btn7" icon="{buttonIconDefault}" label="Button" color="green" click="buttonClickHandler(event);"/>
    </mx:HBox>
    </mx:Application>
    Thanks,
    Bhasker Chari 

  • IPhone 5c has lost its color. Everything on screen is gray.  I have already checked "grayscale". Button is not "on".  I downloaded latest software about a week ago but today is when color changed. Any help?

    iPhone 5c has lost its color. Everything on screen is gray.  I have already checked "grayscale". Button is not "on".  I downloaded latest software about a week ago but today is when color changed. Any help?

    Hi ..
    Try a reset.
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.

  • Why does JButton background color change when  clicking ?

    Hello,
    I have defined :
    JButton mybutton = new JButton(Icon xxx) ;
    with no associated text and I set both foreground and background colors to black, and an empty border.
    This is because the background color of the container which contents this button is also black and I want to see only the button icon.
    When I click on the icon , the button background color becomes grey. How can I change this to make it remains black ?
    Thanks a lot.
    Gege

    Well, the color changes because that is how the look and feel is defined,
    presumably to give better feedback to the user that she has clicked the
    button.
    If you don't want this, you could try using a different L&F which doesn't do this.
    Alternatively, If you've only got the one button, you could just do
        UIManager.put( "Button.select", Color.BLACK );If you have multiple buttons, and you want the other buttons to behave
    normally, you can extend the one button and have it change the color
    while it is pressed, e.g.,
    import java.awt.*;
    import java.io.IOException;
    import java.net.URL;
    import javax.swing.*;
    public class ButtonSelect extends JFrame {
         public ButtonSelect() throws IOException {
              super();
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JPanel panel = new JPanel();
              panel.add( new JButton( "Normal" ) );
              Image img = Toolkit.getDefaultToolkit().getImage( new URL("http://www.google.com/intl/en/images/logo.gif" ) );
              ImageIcon ii = new ImageIcon( img );
              JButton b = new JButton( ii ) {
                   static final private String KEY = "Button.select";
                   public void paint( Graphics g ) {
                        Color save = null;
                        if ( getModel().isArmed() && getModel().isPressed() ) {
                             save = UIManager.getColor( KEY );
                             UIManager.put( KEY, Color.WHITE );
                        super.paint( g );
                        if ( save != null )
                             UIManager.put( KEY, save );
              b.setForeground( Color.WHITE );
              b.setBackground( Color.WHITE );
              b.setFocusPainted( false );
              panel.add( b );
              getContentPane().add( panel );
              pack();
              setVisible( true );
         public static void main( String[] a ) throws IOException {
              new ButtonSelect();
    }

  • The color change on my face how do i change back?

    the color change on my face how do i change back?

    No, its still there. Its a bult in iOS app and cannot be deleted.
    Check all of your folders and home screens to see it was accidentally moved.
    Check Restrictions to see if it is turned on and the Camera restricted (Settings app > General > Restrictions)
    Try a reset: Simultaneously hold down the Home and On buttons until the device shuts down. Ignore the off slider if it appears. Once shut down is complete, if it doesn't restart on it own, turn the device back on using the On button. In some cases it also helps to double click the Home button and close all apps from the tray before doing the reset.
    Reset your phone layout (Settings > General > Reset > Reset your Home Screen Layout). NOTE: this will move apps out of existing foldes and delete the folders.

  • How to animate color-change

    Hi,
    I'm trying to animate a color change using
    sym.$("Rectangle").animate({"color": "#000000"}, "10" );
    but it isn't working
    I actually want to change the color of a text element, isn't working there either.
    chaning color per CSS works fine, but sadly not in animation
    Any Hints?
    Cheers

    Hi there. I made a pluggin for colors here:
    http://mjpagedesign.com/ColorandGlow.js/
    But here is what you could do with jquery-UI with their example:
    $(function() {
        var state = true;
        //$( "#button" ).click(function() {
          if ( state ) {
            sym.$( "Rectangle" ).animate({
              backgroundColor: "#aa0000",
              color: "#fff",
              width: 500
            }, 1000 );
          } else {
            sym.$( "Rectangle" ).animate({
              backgroundColor: "#fff",
              color: "#000",
              width: 240
            }, 1000 );
          state = !state;

  • PMS color changes to CMYK when file is closed and reopened

    I got a .psb-document with a adjustmentlayer>solid color as a background. The color is a Pantone 354-C. When I save my document (CMYK), and then reopen it, I no longer get the Pantone color library but the default color picker box. I see no visible change in color though so I'm not sure if the color changes. If I click the color library button in my adjustment layer, it automatically pics the PMS color beneth the 354-C (that is 355 C) and I see a change in color. So I have to repick 354-C again.
    Anyone knows what's going on here?

    Spot Colors have no real connection to individual Layers in Photoshop (as of CS6).
    If you want to use them you need to employ Spot Channels.
    Edit: And your intended color is probably simply out of gamut for that color space.

  • Bizarre IRR Button Colors in IE (Only!)

    When we go to any "Action" dialog from an Interactive Report Region, the button colors, e.g. Apply, Cancel etc. are dark blue with brown writing in IE only We've tested with IE 8 and 9.
    This does not occur in FF, Chrome or Safari.
    Has anyone else encountered this and does anyone know of a fix. We are demoing this next week and; it isn't just aesthetic, the color combination is actually very difficult to read.
    (Yes, I, too, wish that IE would be forever stricken from the memory of Man)
    Thanks and Here's Hoping,
    -Joe

    Joe
    Ironically a combination of IE and Jive ate a lengthy response I made some hours ago, and I wasn't able to post again at that time.
    Joe Upshaw wrote:
    Sorry that this followup is more of a CSS question and less of an APEX question.That's OK. I know more about many aspects of CSS than I do about some of APEX!
    We have a CSS style sheet that we are including as part of the application (via a change to the template).When you say this do you mean that this style sheet replaces the default APEX theme CSS or that it is applied later in the cascade to augment/override the theme?
    However, we don't have any conditional* CSS formatting. I'm unsure of the syntax. I know I could paste the <style> section thgat you provided into the HTML Header section of the page but, as this is global, we'd prefer to do it in the CSS once for the whole app.There's no conditional processing in CSS. The browser applies the last rule it understands, which for this rule is roughly like this:
    /* Older IE & IE8/9/10 */
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#eee', endColorstr='#ddd');
    /* IE8/9/10 */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#eee', endColorstr='#ddd')";
    /* Older Safari & Chrome */
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #EEE), color-stop(100%, #DDD));
    /* Safari & Chrome */
    background-image: -webkit-linear-gradient(top, #EEE,#DDD);
    /* Older Firefox */
    background-image: -moz-linear-gradient(top, #EEE,#DDD);
    /* Firefox 16 & IE10 */
    background-image: linear-gradient(top, #EEE,#DDD);So the problem with unconditionally including
    button.apexir-button {
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#eeeeee', endColorstr='#dddddd');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd')"
    button.apexir-button:hover {
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#ffffff', endColorstr='#eeeeee');
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee')"
    }later in the cascade is that it will override <tt>background-image: linear-gradient(top, #EEE,#DDD)</tt> for IE10 as IE10 still supports Microsoft's proprietary <tt>filter</tt> property.
    That's why I suggested using conditional comments.
    I tried this:
    button.apexir-button {
    [if lt IE 10] filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#eeeeee', endColorstr='#dddddd');
    [if lt IE 10] -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd')"
    button.apexir-button:hover {
    [if lt IE 10] filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#ffffff', endColorstr='#eeeeee');
    [if lt IE 10] -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee')"
    }and it did not solve the problem.That's not valid CSS: there's no conditional processing in CSS. We have to use the IE conditional comments in HTML.
    I also directly pasted the style tag version that you pasted above into the example at apex.oracle.com in the HTML header of the page.
    It did not solve the problem there either. Works for me. Needs to pasted in the right place after the APEX theme style sheet to effect the override.
    My recommendation would be to put the override in an external style sheet that you feed to earlier IE versions using conditional comments in each page template, which is the approach that APEX takes for IE workarounds:
    <!--[if lt IE 10]><link rel="stylesheet" href="..." type="text/css" /><![endif]-->There also another alternative: fix the errant APEX CSS at <tt>/i/themes/theme_24/css/4_1.css</tt> if the powers that be will allow it.

  • Why does Type color change when published?

    I am designing a site that has horizontal main menu and underneath that is a 3 tab panel shown below.
    Each tab brings up a new panel. The tab in the center is in the "Active state" and the others are in the "Normal state". The Rollover state & the Mouse down states have a soft yellow background. The color "key" for the user for an active button is both the background of royal blue and the type color of bright yellow. The screen shot above was taken in the "Design" screen of Muse.
    When I switch to the "Preview" screen, the screen shot below shows the color change:
    I have repeatedly gone back to change both the Font Type and the font color in the "active" state, but there must be something I'm missing that throws me for a loop.
    I've been messing with this for a week or so and just can't get it to work.
    Any help would be greatly appreciated.
    Thanks,
    Ken

    Zak,
    Here it is your way:
    Process:         Adobe Muse [821]
    Path:            /Applications/Adobe Muse.app/Contents/MacOS/Adobe Muse
    Identifier:      AdobeMuse
    Version:         4.0.557 (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [156]
    Date/Time:       2013-04-01 20:52:33.657 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000004
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0   com.adobe.AIR                           0x02ebb90f 0x2d5b000 + 1444111
    1   com.adobe.AIR                           0x02ee6a92 0x2d5b000 + 1620626
    2   com.adobe.AIR                           0x02f171b7 0x2d5b000 + 1819063
    3   com.adobe.AIR                           0x02f0c584 0x2d5b000 + 1774980
    4   com.adobe.AIR                           0x02fdee1b 0x2d5b000 + 2637339
    5   com.adobe.AIR                           0x02fd5ffe 0x2d5b000 + 2600958
    6   com.adobe.AIR                           0x02fda1b1 0x2d5b000 + 2617777
    7   com.adobe.AIR                           0x02fda7f9 0x2d5b000 + 2619385
    8   com.adobe.AIR                           0x02e785b6 0x2d5b000 + 1168822
    9   com.adobe.AIR                           0x02e7e7b9 0x2d5b000 + 1193913
    10  com.adobe.AIR                           0x02e649a8 0x2d5b000 + 1087912
    11  com.apple.Foundation                    0x95b6edb3 _nsnote_callback + 176
    12  com.apple.CoreFoundation                0x93011763 __CFXNotificationPost + 947
    13  com.apple.CoreFoundation                0x9301116a _CFXNotificationPostNotification + 186
    14  com.apple.Foundation                    0x95b63c50 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128
    15  com.apple.Foundation                    0x95b7105d -[NSNotificationCenter postNotificationName:object:] + 56
    16  com.apple.AppKit                        0x944ca167 -[NSApplication terminate:] + 713
    17  com.apple.Foundation                    0x95b85369 __NSFireDelayedPerform + 537
    18  com.apple.CoreFoundation                0x92ff4a3b __CFRunLoopRun + 8059
    19  com.apple.CoreFoundation                0x92ff23c4 CFRunLoopRunSpecific + 452
    20  com.apple.CoreFoundation                0x92ff21f1 CFRunLoopRunInMode + 97
    21  com.apple.HIToolbox                     0x96b29e04 RunCurrentEventLoopInMode + 392
    22  com.apple.HIToolbox                     0x96b29bb9 ReceiveNextEventCommon + 354
    23  com.apple.HIToolbox                     0x96b29a3e BlockUntilNextEventMatchingListInMode + 81
    24  com.apple.AppKit                        0x94291595 _DPSNextEvent + 847
    25  com.apple.AppKit                        0x94290dd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    26  com.apple.AppKit                        0x942531f3 -[NSApplication run] + 821
    27  com.adobe.AIR                           0x02d64fbe 0x2d5b000 + 40894
    28  com.adobe.AIR                           0x02d65304 0x2d5b000 + 41732
    29  AdobeMuse                               0x00002f8f start + 2567
    30  AdobeMuse                               0x000025bd start + 53
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x99dc3382 kevent + 10
    1   libSystem.B.dylib                       0x99dc3a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x99dc2f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x99dc2cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x99dc2781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x99dc25c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x99dcaaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x99dca75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x99dcc3f8 pthread_cond_wait$UNIX2003 + 73
    3   com.adobe.AIR                           0x03272237 0x2d5b000 + 5337655
    4   com.adobe.AIR                           0x030a579c 0x2d5b000 + 3450780
    5   com.adobe.AIR                           0x03272351 0x2d5b000 + 5337937
    6   com.adobe.AIR                           0x032723cb 0x2d5b000 + 5338059
    7   com.adobe.AIR                           0x03272466 0x2d5b000 + 5338214
    8   libSystem.B.dylib                       0x99dca259 _pthread_start + 345
    9   libSystem.B.dylib                       0x99dca0de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x99dcaaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x99dca75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x99dcc3f8 pthread_cond_wait$UNIX2003 + 73
    3   com.adobe.AIR                           0x03272237 0x2d5b000 + 5337655
    4   com.adobe.AIR                           0x030a579c 0x2d5b000 + 3450780
    5   com.adobe.AIR                           0x03272351 0x2d5b000 + 5337937
    6   com.adobe.AIR                           0x032723cb 0x2d5b000 + 5338059
    7   com.adobe.AIR                           0x03272466 0x2d5b000 + 5338214
    8   libSystem.B.dylib                       0x99dca259 _pthread_start + 345
    9   libSystem.B.dylib                       0x99dca0de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x99dcaaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x99dca75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x99dcc3f8 pthread_cond_wait$UNIX2003 + 73
    3   com.adobe.AIR                           0x03272237 0x2d5b000 + 5337655
    4   com.adobe.AIR                           0x030a579c 0x2d5b000 + 3450780
    5   com.adobe.AIR                           0x03272351 0x2d5b000 + 5337937
    6   com.adobe.AIR                           0x032723cb 0x2d5b000 + 5338059
    7   com.adobe.AIR                           0x03272466 0x2d5b000 + 5338214
    8   libSystem.B.dylib                       0x99dca259 _pthread_start + 345
    9   libSystem.B.dylib                       0x99dca0de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x99dcaaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x99dca75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x99dcc3f8 pthread_cond_wait$UNIX2003 + 73
    3   com.adobe.AIR                           0x03272237 0x2d5b000 + 5337655
    4   com.adobe.AIR                           0x030a579c 0x2d5b000 + 3450780
    5   com.adobe.AIR                           0x03272351 0x2d5b000 + 5337937
    6   com.adobe.AIR                           0x032723cb 0x2d5b000 + 5338059
    7   com.adobe.AIR                           0x03272466 0x2d5b000 + 5338214
    8   libSystem.B.dylib                       0x99dca259 _pthread_start + 345
    9   libSystem.B.dylib                       0x99dca0de thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                       0x99dcaaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x99dca75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x99dcc3f8 pthread_cond_wait$UNIX2003 + 73
    3   com.adobe.AIR                           0x03272237 0x2d5b000 + 5337655
    4   com.adobe.AIR                           0x030a579c 0x2d5b000 + 3450780
    5   com.adobe.AIR                           0x03272351 0x2d5b000 + 5337937
    6   com.adobe.AIR                           0x032723cb 0x2d5b000 + 5338059
    7   com.adobe.AIR                           0x03272466 0x2d5b000 + 5338214
    8   libSystem.B.dylib                       0x99dca259 _pthread_start + 345
    9   libSystem.B.dylib                       0x99dca0de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x99dcaaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x99dca75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x99dcc3f8 pthread_cond_wait$UNIX2003 + 73
    3   com.adobe.AIR                           0x03272237 0x2d5b000 + 5337655
    4   com.adobe.AIR                           0x030a579c 0x2d5b000 + 3450780
    5   com.adobe.AIR                           0x03272351 0x2d5b000 + 5337937
    6   com.adobe.AIR                           0x032723cb 0x2d5b000 + 5338059
    7   com.adobe.AIR                           0x03272466 0x2d5b000 + 5338214
    8   libSystem.B.dylib                       0x99dca259 _pthread_start + 345
    9   libSystem.B.dylib                       0x99dca0de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x99dcaaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x99dca75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x99dcc3f8 pthread_cond_wait$UNIX2003 + 73
    3   com.adobe.AIR                           0x03272237 0x2d5b000 + 5337655
    4   com.adobe.AIR                           0x030a579c 0x2d5b000 + 3450780
    5   com.adobe.AIR                           0x03272351 0x2d5b000 + 5337937
    6   com.adobe.AIR                           0x032723cb 0x2d5b000 + 5338059
    7   com.adobe.AIR                           0x03272466 0x2d5b000 + 5338214
    8   libSystem.B.dylib                       0x99dca259 _pthread_start + 345
    9   libSystem.B.dylib                       0x99dca0de thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                       0x99dcaaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x99dca75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x99dcc3f8 pthread_cond_wait$UNIX2003 + 73
    3   com.adobe.AIR                           0x03272237 0x2d5b000 + 5337655
    4   com.adobe.AIR                           0x030a579c 0x2d5b000 + 3450780
    5   com.adobe.AIR                           0x03272351 0x2d5b000 + 5337937
    6   com.adobe.AIR                           0x032723cb 0x2d5b000 + 5338059
    7   com.adobe.AIR                           0x03272466 0x2d5b000 + 5338214
    8   libSystem.B.dylib                       0x99dca259 _pthread_start + 345
    9   libSystem.B.dylib                       0x99dca0de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x99dc2412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x99dc29a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x99dc25c6 start_wqthread + 30
    Thread 11:  JavaScriptCore: FastMalloc scavenger
    0   libSystem.B.dylib                       0x99dcaaa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x99dca75e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x99dcc3f8 pthread_cond_wait$UNIX2003 + 73
    3   WebKit.dylib                            0x195098c3 WebKitGetAPI + 1401461
    4   WebKit.dylib                            0x19509931 WebKitGetAPI + 1401571
    5   libSystem.B.dylib                       0x99dca259 _pthread_start + 345
    6   libSystem.B.dylib                       0x99dca0de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x99d9cafa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x99d9d267 mach_msg + 68
    2   com.apple.CoreFoundation                0x92ff32df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x92ff23c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x92ff21f1 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x95ba8224 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation                    0x95b6f4c4 -[NSThread main] + 45
    7   com.apple.Foundation                    0x95b6f474 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x99dca259 _pthread_start + 345
    9   libSystem.B.dylib                       0x99dca0de thread_start + 34
    Thread 13:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x99dbbac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x93032c53 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x99dca259 _pthread_start + 345
    3   libSystem.B.dylib                       0x99dca0de thread_start + 34
    Thread 14:
    0   libSystem.B.dylib                       0x99dc2412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x99dc29a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x99dc25c6 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000104  ebx: 0x02f0c560  ecx: 0x00000006  edx: 0x00000007
      edi: 0x00000004  esi: 0x00000004  ebp: 0xbfffdd68  esp: 0xbfffdd20
       ss: 0x0000001f  efl: 0x00210287  eip: 0x02ebb90f   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000004
    Binary Images:
        0x1000 -     0x6ff7 +AdobeMuse 4.0.557 (???) <0A87B357-0D94-8006-FA4C-C9A78864BCCE> /Applications/Adobe Muse.app/Contents/MacOS/Adobe Muse
       0xb4000 -    0xb8ff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
       0xbd000 -    0xc3ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x2d5b000 -  0x4590fcb +com.adobe.AIR ??? (3.6.0.5970) <1953D72E-FB0E-3923-D7CE-63DE5F64AAEB> /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR
    0x1077c000 - 0x107a0fe7  GLRendererFloat ??? (???) <F19DDBE8-1DF6-6618-F554-0E81ED85CE67> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x10fe2000 - 0x10fe5ff3  libFontRegistryUI.dylib ??? (???) <D738781C-8568-A782-7EAC-965D45AEDF59> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resources/libFontRegistryUI.dylib
    0x14b36000 - 0x14cafff7  GLEngine ??? (???) <76C922AA-A4A7-2835-537B-17F316AD95F6> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x14ce1000 - 0x150e6fe7  libclh.dylib 3.1.1 C  (3.1.1) <15AD52DD-FC3F-305E-5C31-699329E8FDE1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x193ad000 - 0x199adfeb +WebKit.dylib ??? (???) <87A67720-BA09-86BE-9D78-C4628C20A392> /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib
    0x19d31000 - 0x19db4fff +fontsFRE ??? (???) <1D56F5FF-6AA7-3ED9-84D4-A9CF55ABC3AD> /Applications/Adobe Muse.app/Contents/Resources/META-INF/AIR/extensions/com.adobe.cts.NativeExtension/META-IN F/ANE/MacOS-x86/fontsFRE.framework/fontsFRE
    0x19e17000 - 0x19e59ff3 +com.adobe.headlights.LogSessionFramework ??? (2.1.2.1687) <067505C1-2DF6-3310-9239-24E663C39EF0> /Applications/Adobe Muse.app/Contents/Resources/META-INF/AIR/extensions/com.adobe.cts.NativeExtension/META-IN F/ANE/MacOS-x86/LogSession.framework/Versions/A/LogSession
    0x8f0c6000 - 0x8f811fff  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <3BB341B6-11A7-38AD-10A3-F89506FD40D4> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90003000 - 0x90005ff7  libRadiance.dylib ??? (???) <090420B3-CB65-9F7B-5349-D42F2F9693B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x901a2000 - 0x901c6ff7  libJPEG.dylib ??? (???) <50E17B4D-63D6-24D3-702F-6A6E912A55EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x901c7000 - 0x902c9fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x902ca000 - 0x9030fff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x90310000 - 0x903a8fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x903a9000 - 0x903ecff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x903ed000 - 0x903edff7  com.apple.quartzframework 1.5 (1.5) <4EE8095D-5E47-1EB6-3A8A-6ECE3BEC8647> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x905cb000 - 0x905dffe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x905e0000 - 0x90698feb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x90699000 - 0x908ffff7  com.apple.security 6.1.2 (55002) <3FA54D69-5476-78DD-0AFC-D6697263890E> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90900000 - 0x9096eff7  com.apple.QuickLookUIFramework 2.3 (327.7) <7F89C0A1-310F-ACF1-AA6E-4ADFA4DC98DC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x9096f000 - 0x9098eff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9098f000 - 0x909b7ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib
    0x91937000 - 0x91a02fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x91a22000 - 0x91a7cfe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x91ac1000 - 0x91ad6fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x91ad7000 - 0x91b85ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x91c48000 - 0x91cb2fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x91cb3000 - 0x91cbbff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x91cbc000 - 0x91fb6fef  com.apple.QuickTime 7.6.6 (1793) <4DA006F6-08A5-7674-AA8C-A29943927B9D> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x91fcb000 - 0x9200cff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x9200d000 - 0x927fc557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x92843000 - 0x92846ff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x929d8000 - 0x929e3ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x929e4000 - 0x929e5ff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x929e6000 - 0x92a9ffe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x92aa0000 - 0x92b3bfe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x92b48000 - 0x92b48ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x92b6b000 - 0x92b6fff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x92b7e000 - 0x92b8cfe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x92b8d000 - 0x92b97ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x92b98000 - 0x92dc3ff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x92dc4000 - 0x92dd6ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x92dd7000 - 0x92e3bffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x92f77000 - 0x92fb5ff7  com.apple.QuickLookFramework 2.3 (327.7) <6387A103-C7EF-D56B-10EF-5ED5FC7F33A5> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x92fb6000 - 0x93131fe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9359d000 - 0x935abff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x935ac000 - 0x9363efe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x93786000 - 0x93786ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93787000 - 0x93969fff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x93c50000 - 0x93d50fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x93d51000 - 0x93d58ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x93d95000 - 0x93e97fef  com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitIO.frame work/Versions/A/MeshKitIO
    0x93ed9000 - 0x93edcffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x93edd000 - 0x94248ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94249000 - 0x94b2cff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94b46000 - 0x94c6ffe7  com.apple.WebKit 6534.58 (6534.58.2) <D156AE52-5235-2C51-B522-FD3D90E474DA> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94c70000 - 0x959e8fe7  com.apple.WebCore 6534.58 (6534.58.2) <E39A8EB5-2D9F-0459-54E1-E172689616F5> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versi ons/A/WebCore
    0x95a10000 - 0x95a10ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x95a11000 - 0x95a4cffb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x95a4d000 - 0x95b2dfe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x95b30000 - 0x95b3bff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x95b3c000 - 0x95b58fe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x95b59000 - 0x95dcafef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95dcb000 - 0x961e1ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x961e8000 - 0x961f4ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x961f5000 - 0x96205ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x96206000 - 0x96275ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x96a04000 - 0x96aacffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x96aad000 - 0x96af4ffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOSer vices
    0x96af5000 - 0x96e19fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x96e33000 - 0x96e40ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x96e41000 - 0x96e51ff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
    0x96f04000 - 0x96f18ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x96f4c000 - 0x96fadfe7  com.apple.CoreText 151.13 (???) <23F359DA-D845-5C50-4DF3-19E858CF2B2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x97610000 - 0x97612ff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x97613000 - 0x976bffe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x9789a000 - 0x978e0ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x978e1000 - 0x97a63fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <60FF302E-5FAE-749B-BC70-0496DC2FBF2D> /usr/lib/libicucore.A.dylib
    0x97a64000 - 0x97aa6ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x97b6c000 - 0x97b6cff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x97b75000 - 0x97b75ff7  com.apple.Carbon 150 (152) <8F767518-AD3C-5CA0-7613-674CD2B509C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97b7e000 - 0x97bb1fff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib
    0x97bb2000 - 0x97bb6ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x97bb7000 - 0x97be8ff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x97be9000 - 0x97c62ff7  com.apple.PDFKit 2.5.5 (2.5.5) <85AA9E1C-D946-863A-823E-32F2AAF314CB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x97c63000 - 0x97cdefff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x97cdf000 - 0x97cf0ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x97cf1000 - 0x97d3efeb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
    0x97d3f000 - 0x97d97fe7  com.apple.datadetectorscore 2.0 (80.7) <ADDE04FB-90A7-2132-75AF-C6B19DD0D97E> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x97d98000 - 0x97ddcfe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x97e1a000 - 0x97fddfeb  com.apple.ImageIO.framework 3.0.6 (3.0.6) <AE641FAD-DF38-AE31-B45B-85AEE7AF3A45> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x97fde000 - 0x9809afff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x9809b000 - 0x9809fff7  libGIF.dylib ??? (???) <2251F789-B187-0837-6E38-A0E5C7C4FA3C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x981a7000 - 0x982e4fe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x98311000 - 0x98337ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x983ad000 - 0x983adff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x983ae000 - 0x983deff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x983df000 - 0x98432ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x98469000 - 0x98597fe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x985d1000 - 0x986feffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x986ff000 - 0x9879cfe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x9883b000 - 0x988e8fe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x988e9000 - 0x988eaff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x988eb000 - 0x9890cfe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9890d000 - 0x9892dfe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x9897c000 - 0x989f6fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98b35000 - 0x98b38fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x98b39000 - 0x98b7dff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x98b7e000 - 0x98b88fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x98b89000 - 0x98b89ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x98b8a000 - 0x98bbdff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x98bf7000 - 0x98bf8ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
    0x98c9a000 - 0x98d1cffb  SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x98d1d000 - 0x98d1dff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x98d23000 - 0x99043ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x99044000 - 0x99081ff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x991e8000 - 0x99206fe7  libPng.dylib ??? (???) <6C0B95D7-9634-E044-0B79-F1DD56961C33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x99207000 - 0x99241ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A6C207E3-7B42-926D-9C93-BE3F50B92496> /usr/lib/libcups.2.dylib
    0x99242000 - 0x99292ff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x9933d000 - 0x99364ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x9937b000 - 0x993bbff3  com.apple.securityinterface 4.0.1 (40418.0.1) <2141A924-748E-CE6F-2D75-D82BC265BD30> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x993d5000 - 0x99432ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x99433000 - 0x994b3feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x995f7000 - 0x995fcff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x995fd000 - 0x998abfe7  com.apple.JavaScriptCore 6534.58 (6534.58.1) <8A25C759-F46B-D303-23D3-22BBFBDEEBDE> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x998fd000 - 0x9991ffef  com.apple.DirectoryService.Framework 3.6 (621.15) <F38894EA-2C13-7FC5-C084-94DA0B5B6B68> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x99920000 - 0x99927ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <A5FF7623-9F55-0364-AD9B-42CF13C677C1> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x99928000 - 0x99965ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x99966000 - 0x99d9bff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK

Maybe you are looking for

  • Using an IF Statement in Numbers on Entire Column for Each Value that is True

    Hi, I am trying to create a formula to help calculate a chart chart. I need to gather the SUM of Column A for Each instance that Column B of the same row is =TRUE. I need to do it in the most general way possible as this formula will be gathering inf

  • Mac pro cinema display cuts out and can't access Mac with screen sharing

    Hi A weird thing has started happening to my Mac Pro today. After using it for a few minutes the cinema display it is attached to on the Mac Pro just goes black. The Mac Pro is clearly still on - the light is on and i can hear the fans. The Mac Pro s

  • SPECIFY THE PACKAGE OR FLAG IT AS A LOCAL OBJECT

    Dear Experts, My info packages are getting failed for the Z data sources with the below given error message. Please guide me to resolve this issue at the earliest, as it is related to production system. Error Message: The object R3TR AQQU SYSTBWGENER

  • I need an answer directly Nokia: IS FOTA ON N93 po...

    So is FOTA possible on the N93, is there a limitatition so that it can't? And most importantly will it be added anytime soon?

  • Split lines in Table painter

    Hi Guys I have to split a line in a table painter in smartform, which I did by right clicking the mouse and choosing split from the context menu. 1. But the problem is that It does not show in the output 2. Even if it shows, how do I put data in it?