I want to color picker steps

hi all
i want the oracle form demo for color picker and the steps to implement that
i want it to manage the user to choose his own colr on the canvas and get the choosen color in variable to store on database
thank you

Hi,
Its pretty straight forward as explained by Francois.
You just need to download the demo from here (@Francois : Link is broken in your reply :-) ), setup the demo.
You can just setup the color picker demo (Since you require only the color picker stuff). There is a read me for every demo and simply following would make your requirement fulfilled.
-Arun

Similar Messages

  • CS5 extended   color picker want to change format

    Color picker box has changed.  I would like to change it back so tones are in big box on left and colors or hues in small box on right

    Here is the link to the  information that was helpful to me: http://planetphotoshop.com/color-picker-versatility.html
    I had deselected the H button (on the right hand box with descending order of H S B  I had instead selected the S button and so the format
    that came up consistently was for Saturation instead of Hue. 

  • CF application want to insert color picker

    I have a CF spplication with Javascript. In this application
    I have a form that allows users to edit their "banner", text, and
    background colors. They are now requesting a color picker so they
    can find the hexidecimal color on their banner easily from the edit
    page. I have an .exe color picker that uses an xml page. Any
    suggestions on how to add the "button" to launch this application
    from my CFpage? Can a use a javascript to run an application?
    I appreciate any suggestions.

    Try looking at one of these:
    http://www.mattkruse.com/javascript/colorpicker/
    http://www.softcomplex.com/products/tigra_color_picker/demo1.html
    Bryan Ashcraft (remove brain to reply)
    Web Application Developer
    Wright Medical Technologies, Inc.
    =============================
    Macromedia Certified Dreamweaver Developer
    Adobe Community Expert (DW) ::
    http://www.adobe.com/communities/experts/
    "zorn01" <[email protected]> wrote in
    message
    news:e4ffb4$cr6$[email protected]..
    >I have a CF spplication with Javascript. In this
    application I have a form
    > that allows users to edit their "banner", text, and
    background colors.
    > They
    > are now requesting a color picker so they can find the
    hexidecimal color
    > on
    > their banner easily from the edit page. I have an .exe
    color picker that
    > uses
    > an xml page. Any suggestions on how to add the "button"
    to launch this
    > application from my CFpage? Can a use a javascript to
    run an application?
    >
    > I appreciate any suggestions.
    >

  • Who's Up for a Challenge? (or who needs a good Color Picker?)

    Greetings,
    I got lost in the muck trying to figure out how to make this color-picker code initialize with the last chosen color.... This is an open source project, and I posted my predicament on the blog for it, but it's been a few weeks and no one has responded. I've been able to integrate the code with my project no problem, it's just figuring out how to change this one behavior... the startup color seems to be hardcoded in several different places...
    Seems like there's some folks here who enjoy a good challenge, so I thought I'd see if anyone might want to give it a shot.... I'm probably making it much more complicated than it is by starting from the wrong vantage point....
    The Blog: http://www.v-vent.com/blog/?p=27
    The Code: http://www.v-vent.com/source/hue/veventhuesource.zip
    Any clues you have to offer would be greatly appreciated.... the idea seems simple enough....currently starts on yellow every time you load the view... would like it to start on the last color chosen, which is getting stored in user defaults....

    Ok John, here are each of the three files I touched:
    // ColorPickerViewController.m
    #import "ColorPickerViewController.h"
    #import "ColorPickerView.h"
    #import "AboutScreenViewController.h"
    @implementation ColorPickerViewController
    @synthesize aboutScreenViewController;
    // --> added const decl
    NSString *const keyForHue = @"hue";
    NSString *const keyForSat = @"sat";
    NSString *const keyForBright = @"bright";
    // --> register default settings
    - (void)registerDefaults {
    NSMutableDictionary *defaultValues = [NSMutableDictionary dictionary];
    [defaultValues setObject:[NSNumber numberWithFloat:0.5] forKey:keyForHue];
    [defaultValues setObject:[NSNumber numberWithFloat:0.5] forKey:keyForSat];
    [defaultValues setObject:[NSNumber numberWithFloat:0.5] forKey:keyForBright];
    [[NSUserDefaults standardUserDefaults] registerDefaults:defaultValues];
    - (void)viewDidLoad {
    [super viewDidLoad];
    NSLog(@"CALL ME ! " );
    [self registerDefaults]; // <-- register default settings
    NSUserDefaults *saveColors = [NSUserDefaults standardUserDefaults];
    ColorPickerView *theView = (ColorPickerView*) [self view];
    // --> removed key existance test and explicit defaults from this block
    // since defaults are now registered
    [theView setCurrentHue:[saveColors floatForKey:keyForHue]];
    [theView setCurrentSaturation:[saveColors floatForKey:keyForSat]];
    [theView setCurrentBrightness:[saveColors floatForKey:keyForBright]];
    AboutScreenViewController *abouter = [[AboutScreenViewController alloc]
    initWithNibName:@"AboutScreenView" bundle:nil];
    self.aboutScreenViewController = abouter;
    [abouter release];
    [theView onViewDidLoad]; // <-- added
    - (void) viewWillDisappear :(BOOL)animated {
    NSUserDefaults *saveColors = [NSUserDefaults standardUserDefaults];
    ColorPickerView *theView = (ColorPickerView*) [self view];
    [saveColors setFloat:[theView currentHue] forKey:keyForHue];
    [saveColors setFloat:[theView currentSaturation] forKey:keyForSat];
    [saveColors setFloat:[theView currentBrightness] forKey:keyForBright];
    - (UIColor *) getSelectedColor {
    return [(ColorPickerView *) [self view] getColorShown];
    - (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning]; // Releases the view if it doesn't have a superview
    // Release anything that's not essential, such as cached data
    - (IBAction) pressedAboutButton {
    [self.view addSubview:self.aboutScreenViewController.view];
    [self.view bringSubviewToFront:self.aboutScreenViewController.view];
    - (void)dealloc {
    [super dealloc];
    [aboutScreenViewController release];
    @end
    // ColorPickerView.h
    #import <UIKit/UIKit.h>
    @class GradientView;
    @interface ColorPickerView : UIView {
    GradientView *gradientView;
    UIImageView *matrixView; // <-- added
    // --> unused ivars
    // UIImage *backgroundImage; //Image that will sit in back on the view
    // UIImage *closeButtonImage; //Image for close button
    // UIImage *nextButtonImage; //Image for next button
    IBOutlet UIImageView *backgroundImageView;
    IBOutlet UIView *showColor;
    IBOutlet UIImageView *crossHairs;
    IBOutlet UIImageView *brightnessBar;
    IBOutlet UILabel *colorInHex;
    IBOutlet UILabel *Hcoords;
    IBOutlet UILabel *Scoords;
    IBOutlet UILabel *Lcoords;
    IBOutlet UILabel *Rcoords;
    IBOutlet UILabel *Gcoords;
    IBOutlet UILabel *Bcoords;
    //Private vars
    // --> ok, private.. but atm, the controller still needs to call getters
    // and setters for currentBrightness, currentHue, and currentSaturation
    @private
    // CGRect colorMatrixFrame; // <-- removed - using matrixView ivar instead
    CGFloat currentBrightness;
    CGFloat currentHue;
    CGFloat currentSaturation;
    UIColor *currentColor;
    // unused properties
    // @property (nonatomic,retain) UIImage *backgroundImage;
    // @property (nonatomic,retain) UIImage *closeButtonImage;
    // @property (nonatomic,retain) UIImage *nextButtonImage;
    @property (nonatomic,retain) GradientView *gradientView;// <-- added
    @property (nonatomic,retain) UIImageView *matrixView; // <-- added
    @property (readwrite) CGFloat currentBrightness;
    @property (readwrite) CGFloat currentHue;
    @property (readwrite) CGFloat currentSaturation;
    - (UIColor *) getColorShown;
    - (void) onViewDidLoad; // <-- added
    @end
    // ColorPickerView.m
    #import "ColorPickerView.h"
    #import "GradientView.h"
    #import "Constants.h"
    // --> declare private properties, methods and functions
    @interface ColorPickerView ()
    @property (nonatomic,retain) UIColor *currentColor;
    - (void) getStringForHSL : (CGFloat) hue : (CGFloat) sat : (CGFloat) bright;
    - (void) getStringForRGB :(CGColorRef) theColor;
    - (NSString *) hexStringFromColor : (CGColorRef) theColor;
    static int myRoundOff(CGFloat value);
    @end
    @implementation ColorPickerView
    // --> unused properties
    // @synthesize backgroundImage;
    // @synthesize closeButtonImage;
    // @synthesize nextButtonImage;
    @synthesize gradientView; // <-- added
    @synthesize matrixView; // <-- added
    @synthesize currentHue;
    @synthesize currentSaturation;
    @synthesize currentBrightness;
    @synthesize currentColor; // <-- added
    - (id)initWithCoder:(NSCoder*)coder {
    if (self = [super initWithCoder:coder]) {
    // --> changes to support gradientView, which is now a retaining property
    GradientView *gradView = [[GradientView alloc] initWithFrame:kBrightnessGradientPlacent];
    self.gradientView = gradView;
    [gradView release];
    // [gradientView setTheColor:
    // [UIColor yellowColor].CGColor]; // <-- fixed and moved to onViewDidLoad
    [self addSubview:gradientView];
    [self sendSubviewToBack:gradientView];
    // --> changes to support retaining property 'matrixView'
    // colorMatrixFrame = kHueSatFrame; // <-- removed colorMatrixFrame ivar
    UIImageView *hueSatImageView = [[UIImageView alloc] initWithFrame:kHueSatFrame];
    [hueSatImageView setImage:[UIImage imageNamed:kHueSatImage]];
    self.matrixView = hueSatImageView;
    [hueSatImageView release];
    [self addSubview:matrixView];
    [self sendSubviewToBack:matrixView];
    [self setMultipleTouchEnabled:YES]; // <-- moved to keep similar blocks together
    // currentBrightness = kInitialBrightness; // <-- removed
    // currentColor = [[UIColor alloc]init]; // <-- fixed and moved to onViewDidLoad
    return self;
    // --> several of the ivars in this class should be moved to the controller -
    // for now this method should be called at the end of the controller's viewDidLoad method
    - (void)onViewDidLoad {
    self.currentColor = [UIColor colorWithHue:currentHue
    saturation:currentSaturation
    brightness:currentBrightness
    alpha:1.0];
    [showColor setBackgroundColor:currentColor];
    [self getStringForRGB:currentColor.CGColor];
    [self getStringForHSL:currentHue :currentSaturation :currentBrightness];
    [colorInHex setText:[self hexStringFromColor:currentColor.CGColor]];
    NSLog(@"%s: hue=%1.2f sat=%1.2f bright=%1.2f",
    _func_, currentHue, currentSaturation, currentBrightness);
    - (NSString *) hexStringFromColor : (CGColorRef) theColor {
    const CGFloat *c = CGColorGetComponents(theColor);
    CGFloat r, g, b;
    r = c[0];
    g = c[1];
    b = c[2];
    // Fix range if needed
    if (r < 0.0f) r = 0.0f;
    if (g < 0.0f) g = 0.0f;
    if (b < 0.0f) b = 0.0f;
    if (r > 1.0f) r = 1.0f;
    if (g > 1.0f) g = 1.0f;
    if (b > 1.0f) b = 1.0f;
    // Convert to hex string between 0x00 and 0xFF
    return [NSString stringWithFormat:@"#%02X%02X%02X",
    // --> using myRoundOff instead of int typecast
    myRoundOff(r * 255), myRoundOff(g * 255), myRoundOff(b * 255)];
    // --> use this if needed to fudge extrema
    static int myRoundOff(CGFloat value) {
    return lround(value);
    - (void) getStringForHSL : (CGFloat) hue : (CGFloat) sat : (CGFloat) bright { // <-- CGFloat params
    // NSLog(@"%s: hue=%1.4lf sat=%1.4lf bright=%1.4lf", _func_, hue, sat, bright);
    // --> using myRoundOff instead of int typecast
    [Hcoords setText:[NSString stringWithFormat:@"%d",myRoundOff(hue*255)]];
    [Scoords setText:[NSString stringWithFormat:@"%d",myRoundOff(sat*255)]];
    [Lcoords setText:[NSString stringWithFormat:@"%d",myRoundOff(bright*255)]];
    - (void) getStringForRGB :(CGColorRef) theColor {
    const CGFloat *c = CGColorGetComponents(theColor);
    CGFloat r, g, b;
    r = c[0];
    g = c[1];
    b = c[2];
    // --> using myRoundOff instead of int typecast
    [Rcoords setText:[NSString stringWithFormat:@"%d",myRoundOff(r*255)]];
    [Gcoords setText:[NSString stringWithFormat:@"%d",myRoundOff(g*255)]];
    [Bcoords setText:[NSString stringWithFormat:@"%d",myRoundOff(b*255)]];
    - (void) updateHueSatWithMovement : (CGPoint) position {
    // --> correcting currentHue and currentSaturation calculations
    // currentHue = (position.x-kXAxisOffset)/kMatrixWidth;
    // currentSaturation = 1.0 - (position.y-kYAxisOffset)/kMatrixHeight;
    CGPoint ptInMatrix = [self convertPoint:position toView:matrixView];
    currentHue = ptInMatrix.x/(matrixView.frame.size.width-1);
    currentSaturation = 1.0 - ptInMatrix.y/(matrixView.frame.size.height-1);
    // printf("hue Of the touch is : %f
    ",currentHue);
    // printf("sat Of the touch is : %f
    ",currentSaturation);
    UIColor *forGradient = [UIColor colorWithHue:currentHue
    saturation:currentSaturation
    brightness: kInitialBrightness
    alpha:1.0];
    [gradientView setTheColor:forGradient.CGColor];
    [gradientView setupGradient];
    [gradientView setNeedsDisplay];
    self.currentColor = [UIColor colorWithHue:currentHue // --> using setter to retain color
    saturation:currentSaturation
    brightness:currentBrightness
    alpha:1.0];
    [showColor setBackgroundColor:currentColor];
    [colorInHex setText:[self hexStringFromColor:currentColor.CGColor]];
    [self getStringForRGB:currentColor.CGColor];
    [self getStringForHSL:currentHue :currentSaturation :currentBrightness];
    - (void) updateBrightnessWithMovement : (CGPoint) position {
    // --> correcting currentBrightness calculation
    // currentBrightness = 1.0-(position.x/gradientView.frame.size.width) + kBrightnessEpsilon;
    CGPoint ptInGradient = [self convertPoint:position toView:gradientView];
    currentBrightness = 1.0 - ptInGradient.x/(gradientView.frame.size.width-1);
    // printf("Brightness Of the touch is : %f
    ",currentBrightness);
    // --> setting and using currentColor ivar instead of local var
    self.currentColor = [UIColor colorWithHue:currentHue
    saturation:currentSaturation
    brightness:currentBrightness
    alpha:1.0];
    [showColor setBackgroundColor:currentColor];
    [colorInHex setText:[self hexStringFromColor:currentColor.CGColor]];
    [self getStringForRGB:currentColor.CGColor];
    [self getStringForHSL:currentHue :currentSaturation :currentBrightness];
    //Touch parts :
    // Scales down the view and moves it to the new position.
    - (void)animateView:(UIImageView *)theView toPosition:(CGPoint) thePosition
    [UIView beginAnimations:nil context:NULL];
    [UIView setAnimationDuration:kAnimationDuration];
    // Set the center to the final postion
    theView.center = thePosition;
    // Set the transform back to the identity, thus undoing the previous scaling effect.
    theView.transform = CGAffineTransformIdentity;
    [UIView commitAnimations];
    -(void) dispatchTouchEvent:(CGPoint)position
    if (CGRectContainsPoint(matrixView.frame,position)) // <-- colorMatrixFrame ivar was removed
    // NSLog(@"Color!");
    // printf("X Of the touch in grad view is : %f
    ",position.x);
    // printf("Y Of the touch in grad view is : %f
    ",position.y);
    [self animateView:crossHairs toPosition: position];
    [self updateHueSatWithMovement:position];
    else if (CGRectContainsPoint(gradientView.frame, position))
    // NSLog(@"Bright!");
    CGPoint newPos = CGPointMake(position.x,kBrightBarYCenter);
    [self animateView:brightnessBar toPosition: newPos];
    [self updateBrightnessWithMovement:position];
    else
    // printf("X Of the touch in grad view is : %f
    ",position.x);
    // printf("Y Of the touch in grad view is : %f
    ",position.y);
    // Handles the start of a touch
    - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    for (UITouch *touch in touches) {
    [self dispatchTouchEvent:[touch locationInView:self]];
    // printf("X IS %f
    ",[touch locationInView:self].x);
    // printf("Y IS %f
    ",[touch locationInView:self].y);
    // Handles the continuation of a touch.
    - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
    for (UITouch *touch in touches){
    [self dispatchTouchEvent:[touch locationInView:self]];
    - (void)drawRect:(CGRect)rect {
    // --> corrected calculation of crosshairs.center
    CGFloat x = currentHue * matrixView.frame.size.width;
    CGFloat y = (1 - currentSaturation) * matrixView.frame.size.height;
    CGPoint ptInMatrix = CGPointMake(x, y);
    crossHairs.center = [matrixView convertPoint:ptInMatrix toView:self];
    // --> corrected calculation of brightnessBar.center
    x = (1 - currentBrightness) * gradientView.frame.size.width;
    y = gradientView.frame.size.height/2 - 3;
    CGPoint ptInGradient = CGPointMake(x, y);
    brightnessBar.center = [gradientView convertPoint:ptInGradient toView:self];
    // NSLog(@"%s: gradientView.frame=%@", _func_, NSStringFromCGRect(gradientView.frame));
    // NSLog(@" brightnessBar.center=%@", NSStringFromCGPoint(brightnessBar.center));
    UIColor *forGradient = [UIColor colorWithHue:currentHue // added
    saturation:currentSaturation
    brightness: kInitialBrightness
    alpha:1.0];
    [gradientView setTheColor:forGradient.CGColor]; // added
    [gradientView setupGradient];
    [gradientView setNeedsDisplay];
    [colorInHex setFont:[UIFont fontWithName:@"helvetica" size:16]];
    [self sendSubviewToBack:showColor];
    - (UIColor *) getColorShown {
    // NSLog(@"Are we here ? ");
    return [UIColor colorWithHue:currentHue saturation:currentSaturation
    brightness:currentBrightness alpha:1.0];
    - (void)dealloc {
    [currentColor release]; // <-- added
    [gradientView release]; // <-- added
    [matrixView release]; // <-- added
    [super dealloc];
    @end
    Disclaimer: While the above is working, tested code, the files are not meant to be examples of good practice. The objective was to hose out most of the functional bugs while changing the old files as little as possible. This is usually the best first step in cleaning up a project, since it allows the original programmers to see the changes in the context of the existing structure. Those changes can be much more difficult to see after a complete overhaul. Improving the structure will also change the nib files, and describing those changes in the forum can be tedious.
    Thus I perpetuated the structural weaknesses instead of moving most of the ivars, along with the code that administers them, into the ColorPickerViewController class. A number of useless but harmless artifacts were also left in the files.
    Most of my tests were only for functionality on the simulator. Though I tried to take care of memory management in the code I added or changed, there's lots of memory management clean up to do. I did some brief tests on a first gen iPod Touch with iOS 3.12, and at first glance I was surprised how well things seemed to be working. I was even able to position the crosshairs in a couple corners after a few tries (e.g. at full brightness, the upper-right corner should be HSL: 255, 255, 255; RGB: 255, 0, 0). All four of these extrema are reachable on the simulator, and if you have steady hands and/or small fingers, they're probably all reachable on an iPhone as well.
    Enjoy!
    - Ray

  • Flash Color Picker HELP

    Im using Flash Pro 8. I've got a delima.. I need to take a
    pic of a t-shirt and allow users to click on the collar, select a
    color from the color picker, and then it will change the collar to
    that color. The same idea will be put forth to the t-shirt itself
    and the trim on the sleves.
    Any help would be greatly appreciated.

    People here like to help, but help us helping you:
    Haver you allready started with something we can help with?
    Do you want us to tell You if it is doable? (yes it is)
    Do you want us to take you by the hand for ever step from noe
    on?(just kidding, I don't mean to sound harsh, but it happes
    sometimes)
    Ust one or two quetions to point you int a direction?
    Do you want the to select fron a palett of 10 (or whatever
    number) or you want them to mix the colors themself?
    Will you have to send the colors (and other data to as server
    / email) in the end?

  • Photoshop color field not working in color picker

    My color field is not working properly in my color picker. How do you fix this?
    WRONG (what my color picking is doing) :
    CORRECT (how it should work) :

    The catchall first step in correction is to reset the tool which, in this case, is the Eyedropper.
    With the Eyedropper chosen, right click here:
    If that doesn't solve the problem, a logical next step would be to reset your Preferences.
    To reset Preferences:
    If Photoshop is already open on your screen, close it (Quit). Then hold down Shift+Ctrl+Alt (Win) / Shift+Command+Option (Mac) on your keyboard and start Photoshop.
    A dialog box will pop up asking if you want to delete the existing Preferences file (the "Settings"). Click Yes in the dialog box. The existing Preferences file will be scrapped and a new one will be created.

  • Color picker changes no longer preview?

    I often choose the color for a selected object by manipulating the color in the picker while viewing the object to see the actual result before clicking OK on the color once it's right.
    I just upgraded to CC from CS5, and this no longer seems to work - I have to make my best guess on the color based on the color picker swatch, and then approve it to see the results and then re-open the picker to try another shade. This is completely blowing up my workflow - sliding the cursor around in the picker lets me fine tune very carefully, and it might take many iterations through the pick/approve/preview cycle to get exactly the color I want, instead of one quick smooth trip to the picker. It's literally an order of magnitude or more time to do it this way.
    Worse, because it takes so long, I find myself accepting colors that are "close enough" rather than go through a lot more iterations to really fine-tune it like I can in seconds in CS5.
    I confess I haven't really searched the UI/prefs to turn this on since there's no Preview option checkbox in the color picker, which is where I would expect to find it. If there is a way to restore the color picker preview functionality, I will be grateful to learn how to do so.
    Is this crimping anyone else's style as much as it is mine? I like CC a lot, but this one is a major step backward for me.

    This is very likely an issue for your web server. For example, you should configure the DNS settings of your web server such that www.myDomain.com and myDomain.com have the same IP address. If you are using virtual hosting, then you will have to add myDomain.com as an alias of www.myDomain.com in the web server's configuration file.

  • Color Picker in Component Inspector

    I want to add a parameter to a custom component which uses
    the Color Picker in the Component Inspector. I would prefer to be
    able to define the component parameters with the class(rather than
    manually adding/subtracting the parameters).
    However, there seems to be a conflict between the parameter
    type 'Color' and the Color class.
    To replicate this problem:
    1. Define a symbol's class with the attached 'test' class.
    2. Define the component parameters in the 'Component
    Definition' for the class with the same 'test' class.
    3. Drag the symbol to the stage.
    4. Click on the symbol, and adjust the color parameter in the
    Component Inspector(important step, otherwise it doesn't try and
    set the color)
    5. Run - receive "1067: Implicit coercion of a value of type
    int to an unrelated type fl.motion:Color." error.
    The only way I can see of resolving this seems more like a
    hack - to remove the "test" class from the Component definition,
    but leave the color parameter there. Now, to adjust the color
    variable in the 'test' class to expect an int, rather than Color.
    However, I would much prefer to keep the test class in the
    Component definition, rather than manually changing the parameters.
    Feels like this area of component parameters is on the
    fringes of documentation, and even maintaining (this apparent
    conflict between Color class and Color parameter type a case in
    point).
    Anyone any ideas/comments?

    i would hope that defining a parameter as an int wouldn't
    default to a color picker!
    You're seeing a color picker because you initially defined
    the parameter as Color. If you go back into Component definition
    and hit OK, the parameter input type will update. (so long as you
    have 'test' set up as the Definition class)
    Alternatively, if you were to go through the 'replicate this
    problem' steps above, but with your class, you won't see the Color
    Picker.
    As i said earlier, I'm aware that if i was to remove test as
    Definition class, and either set up an alternative class as
    definition class, or manage the parameter definitions manually, i
    could fudge a solution to this problem.
    I would like to know - is this hack necessary, or is there a
    more conventional solution? I think it would make the most sense if
    my component parameters could be defined by my class.
    And I'm curious to know - what are we seeing here? Am I right
    in thinking that there appears to be a conflict between the
    parameter definition type 'Color' and the fl.motion.Color
    class?

  • Color Picker with Pantone conversion

    In Photoshop you can sample an area with the eyedropper, click on the swatch in Color Picker and have it give you the PMS equivalent from the "book" list. I would love the same feature in Illustrator.
    It makes more sense to have the spot color conversion capability in the the program designed for spot color use.
    Thanks!
    -Danlyn

    CS3
    Art containing two non-global process colors has been selected, and the Live Color dialog opened:
    Below, the Pantone solid coated library has been selected from the Limit to Library popup menu, which causes an immediate lookup of the closest matching color in the library to
    every color in the selected art
    (notice that the brown is a tiny bit redder and the green a little yellower, showing you that the replacements have happened):
    The sliders above have also been switched to Tint and a new color group was created by clicking on the little folder with the + sign above the color group list. These two steps are not necessary, I just wanted to show that they were possible. Also it was the best way to display the names of both Pantone colors.
    If all you want to do is recolor your document with the same number of Pantone colors that your design uses distinct mixed colors, you're done!
    All the rest of this post is just showing more variations of what you can do, especially reducing the number of spot colors used when the original document has more color variation than you want.
    Here I have switched to the metallic library:
    If the selected art had contained more original colors than desired number of spot colors, then you can enter the number of desired spot colors to reduce to, and it will pick the best color set of that size from the chosen library to "posterize" to, as shown below:
    After reduction to two colors:
    After limiting to ANPA library:
    Next I've switched to the Color Wheel view, and rotated the color markers to a different position. When limiting to a library, the entire color wheel is drawn using only the colors in that library, so that you can easily navigate to nearby colors:
    Swatches from Color Books and other libraries can be accessed in the Color Picker, but only when it is opened from within the Live Color dialog (by double-clicking on any color well) while limiting to that library. This gives you another method of picking a different color if you don't like the default match.
    There is not yet any ability to switch libraries while the Color Picker is open, but we hope to enable that in CS4.

  • How can I create a Tree with Color Picker icons?

    I'm a newbie to Flex. I want to create a tree which has color
    picker icons.
    As an analogy for the Mac users out there, I envision a
    control like the Calendars section in iCal, where you can specify
    the color for each individual node. These colors are then used in
    other parts of the application.
    The Flex 3 documentation specifies four methods for setting
    node icons on a Tree control, none of which seems to suit my needs:
    -The folderOpenIcon, folderClosedIcon, and defaultLeafIcon
    properties
    -Data provider node icon fields
    -The setItemIcon() method
    -The iconFunction property
    In other words, I want to "setItemIcon" to an mx:ColorPicker,
    if that makes any sense.
    Is there a standard way of doing this? If not, how can I go
    about implementing such a control? Thanks in advance!

    well, Network UI should be used.

  • Color picker bug in photoshop CC

    Hey guys,
    Has anybody seen this bug yet.
    This will pop up on a new document when trying to change colors. It shows with the color picker, the swatch panel, hitting d or x. However alt-backspace and ctrl-backspace work.
    Rebooting photoshop does not help, nor does shift, alt, ctrl on reboot.
    At first I thought it was the document itself, but it also occurs with file>new>web 800x600.
    If it helps, the error does not show with no document open (all documents are closed)
    And now for my specs:
    Adobe Photoshop Version: 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:12, Stepping:2 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 6
    Logical processor count: 12
    Processor speed: 3325 MHz
    Built-in memory: 16375 MB
    Free memory: 12455 MB
    Memory available to Photoshop: 14711 MB
    Memory used by Photoshop: 60 %
    Image tile size: 1024K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenCL Version: 1.2 AMD-APP (1124.2)
    OpenGL Version: 3.0
    Video Rect Texture Size: 16384
    OpenGL Memory: 2048 MB
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: AMD Radeon HD 6570
    Display: 1
    Display Bounds: top=0, left=0, bottom=960, right=1280
    Video Card Number: 1
    Video Card: AMD Radeon HD 6570
    Driver Version: 12.104.0.0
    Driver Date: 20130328000000.000000-000
    Video Card Driver: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Video Mode: 1280 x 960 x 4294967296 colors
    Video Card Caption: AMD Radeon HD 6570
    Video Card Memory: 2048 MB
    Serial number: 90970571475060932452
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\
    Temporary file path: C:\Users\BRUCEO~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 1.81T, 933.9G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CC (64 Bit)\Plug-ins\
    Installed components:
       ACE.dll   ACE 2013/03/19-12:09:02   79.535293   79.535293
       adbeape.dll   Adobe APE 2013/02/04-09:52:32   0.1160850   0.1160850
       AdobeLinguistic.dll   Adobe Linguisitc Library   7.0.0  
       AdobeOwl.dll   Adobe Owl 2013/03/03-12:10:08   5.0.13   79.533484
       AdobePDFL.dll   PDFL 2013/03/13-12:09:15   79.499517   79.499517
       AdobePIP.dll   Adobe Product Improvement Program   7.0.0.1768  
       AdobeXMP.dll   Adobe XMP Core 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPFiles.dll   Adobe XMP Files 2013/03/13-12:09:15   79.151481   79.151481
       AdobeXMPScript.dll   Adobe XMP Script 2013/03/13-12:09:15   79.151481   79.151481
       adobe_caps.dll   Adobe CAPS   7,0,0,21  
       AGM.dll   AGM 2013/03/29-12:09:59   79.536232   79.536232
       ahclient.dll    AdobeHelp Dynamic Link Library   1,8,0,31  
       aif_core.dll   AIF   5.0   79.534508
       aif_ocl.dll   AIF   5.0   79.534508
       aif_ogl.dll   AIF   5.0   79.534508
       amtlib.dll   AMTLib (64 Bit)   7.0.0.169 BuildVersion: 7.0; BuildDate: Mon Apr 8 2013 2:31:50)   1.000000
       ARE.dll   ARE 2013/03/19-12:09:02   79.535293   79.535293
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2013/03/19-12:09:02   79.535293   79.535293
       BIBUtils.dll   BIBUtils 2013/03/19-12:09:02   79.535293   79.535293
       boost_date_time.dll   DVA Product   7.0.0  
       boost_signals.dll   DVA Product   7.0.0  
       boost_system.dll   DVA Product   7.0.0  
       boost_threads.dll   DVA Product   7.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.1.6.30158   2.1.6.30158
       CITThreading.dll   Adobe CITThreading   2.1.6.30158   2.1.6.30158
       CoolType.dll   CoolType 2013/03/19-12:09:02   79.535293   79.535293
       dvaaudiodevice.dll   DVA Product   7.0.0  
       dvacore.dll   DVA Product   7.0.0  
       dvamarshal.dll   DVA Product   7.0.0  
       dvamediatypes.dll   DVA Product   7.0.0  
       dvaplayer.dll   DVA Product   7.0.0  
       dvatransport.dll   DVA Product   7.0.0  
       dvaunittesting.dll   DVA Product   7.0.0  
       dynamiclink.dll   DVA Product   7.0.0  
       ExtendScript.dll   ExtendScript 2013/03/21-12:10:31   79.535742   79.535742
       FileInfo.dll   Adobe XMP FileInfo 2013/03/19-12:09:02   79.151561   79.151561
       filter_graph.dll   AIF   5.0   79.534508
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       imslib.dll   IMSLib DLL   7.0.0.37  
       JP2KLib.dll   JP2KLib 2013/02/19-12:28:44   79.248139   79.248139
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       LogSession.dll   LogSession   2.1.2.1756  
       mediacoreif.dll   DVA Product   7.0.0  
       MPS.dll   MPS 2013/03/15-13:25:52   79.535029   79.535029
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       PatchMatch.dll   PatchMatch 0000/00/00-00:00:00   1.   1.
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CC   CC  
       Plugin.dll   Adobe Photoshop CC   CC  
       PlugPlugOwl.dll   Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit)   4.0.1.34  
       PSArt.dll   Adobe Photoshop CC   CC  
       PSViews.dll   Adobe Photoshop CC   CC  
       SCCore.dll   ScCore 2013/03/21-12:10:31   79.535742   79.535742
       ScriptUIFlex.dll   ScriptUIFlex 2013/03/21-12:10:31   79.535742   79.535742
       svml_dispmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   12.0  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   4, 1, 2012, 1003  
       updaternotifications.dll   Adobe Updater Notifications Library   7.0.1.102 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   7.0.1.102
       WRServices.dll   WRServices Mon Feb 25 2013 16:09:10   Build 0.19078   0.19078
    Required plug-ins:
       3D Studio 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Accented Edges 14.0
       Adaptive Wide Angle 14.0
       Angled Strokes 14.0
       Average 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Bas Relief 14.0
       BMP 14.0
       Camera Raw 8.1
       Camera Raw Filter 8.1
       Chalk & Charcoal 14.0
       Charcoal 14.0
       Chrome 14.0
       Cineon 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Clouds 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Collada 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Color Halftone 14.0
       Colored Pencil 14.0
       CompuServe GIF 14.0
       Conté Crayon 14.0
       Craquelure 14.0
       Crop and Straighten Photos 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Crop and Straighten Photos Filter 14.0
       Crosshatch 14.0
       Crystallize 14.0
       Cutout 14.0
       Dark Strokes 14.0
       De-Interlace 14.0
       Dicom 14.0
       Difference Clouds 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Diffuse Glow 14.0
       Displace 14.0
       Dry Brush 14.0
       Eazel Acquire 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Embed Watermark 4.0
       Entropy 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Extrude 14.0
       FastCore Routines 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Fibers 14.0
       Film Grain 14.0
       Filter Gallery 14.0
       Flash 3D 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Fresco 14.0
       Glass 14.0
       Glowing Edges 14.0
       Google Earth 4 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Grain 14.0
       Graphic Pen 14.0
       Halftone Pattern 14.0
       HDRMergeUI 14.0
       IFF Format 14.0
       Ink Outlines 14.0
       JPEG 2000 14.0
       Kurtosis 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Lens Blur 14.0
       Lens Correction 14.0
       Lens Flare 14.0
       Liquify 14.0
       Matlab Operation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Maximum 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mean 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Measurement Core 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Median 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mezzotint 14.0
       Minimum 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       MMXCore Routines 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Mosaic Tiles 14.0
       Multiprocessor Support 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Neon Glow 14.0
       Note Paper 14.0
       NTSC Colors 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Ocean Ripple 14.0
       Oil Paint 14.0
       OpenEXR 14.0
       Paint Daubs 14.0
       Palette Knife 14.0
       Patchwork 14.0
       Paths to Illustrator 14.0
       PCX 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Photocopy 14.0
       Photoshop 3D Engine 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Picture Package Filter 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Pinch 14.0
       Pixar 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Plaster 14.0
       Plastic Wrap 14.0
       PNG 14.0
       Pointillize 14.0
       Polar Coordinates 14.0
       Portable Bit Map 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Poster Edges 14.0
       Radial Blur 14.0
       Radiance 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Range 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Read Watermark 4.0
       Reticulation 14.0
       Ripple 14.0
       Rough Pastels 14.0
       Save for Web 14.0
       ScriptingSupport 14.0
       Shake Reduction 14.0
       Shear 14.0
       Skewness 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Smart Blur 14.0
       Smudge Stick 14.0
       Solarize 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Spatter 14.0
       Spherize 14.0
       Sponge 14.0
       Sprayed Strokes 14.0
       Stained Glass 14.0
       Stamp 14.0
       Standard Deviation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       STL 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Sumi-e 14.0
       Summation 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Targa 14.0
       Texturizer 14.0
       Tiles 14.0
       Torn Edges 14.0
       Twirl 14.0
       Underpainting 14.0
       Vanishing Point 14.0
       Variance 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Variations 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Water Paper 14.0
       Watercolor 14.0
       Wave 14.0
       Wavefront|OBJ 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       WIA Support 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       Wind 14.0
       Wireless Bitmap 14.0 (14.0 20130423.r.221 2013/04/23:23:00:00)
       ZigZag 14.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
       Adobe Exchange
    Installed TWAIN devices: NONE

    Here is the error log file.
    2013:06:24 01:24:21 : tracked key 0000000000000118 of type struct _ADsc * __ptr64 not found : 1 : REQUIRE failed
    2013:06:24 01:24:21 : e:\ps13\ps_14_win_x64_daily_retail\20130423.r.221\photoshop\main\photoshop\interfaces\UTr ackResourceImp.h : 137 : REQUIRE failed
    2013:06:30 01:08:13 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:06:30 01:08:19 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:06:30 01:08:24 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:52:51 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:03 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:06 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:08 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:12 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:14 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:18 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:22 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:27 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:31 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:37 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:44 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:53 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:55 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:57 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:53:59 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:54:40 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:54:43 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:54:53 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:55:21 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:55:25 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:55:28 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:56:20 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:56:36 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:57:28 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:58:15 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:58:21 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:58:23 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:59:02 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:59:29 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:59:39 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 00:59:46 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:00:08 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:07 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:12 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:25 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:30 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:33 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:35 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:48 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:51 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:05:55 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed
    2013:07:07 01:07:16 : ..\..\sources\USheet.cpp : 458 : REQUIRE failed

  • Can't type Pantone values in the Color Picker with Ai CS6

    Hi Illustrators,
    I'm running Design and Web Premium CS6 on a Windows 7 machine. I was recently using Ai's Recolor Artwork dialogue for a CMYK document. I wanted to convert my 4 color artwork to Pantone solid coated. I decided to chose some different Pantones. In older versions of Illustrator I could easily open the Color Picker, click on a Pantone value and then just type in a new value to scroll to it. This is no longer the case with Ai CS6. 
    Does anyone know of a work around?

    Thanks for getting back. It works on Photoshop CS6 (64bt) but not so with Ai
    As long as I'm griping on lost features. Here's another great one that's gone with the CS6 wind...
    In the Swatch Options, you used to be able to scroll through the Color Modes by holding Shift and clicking on the square color preview icon. You used to also be able to get the compliment on the fly by holding Control (Windows) / Command (Mac) and clicking on the same icon. Neither feature works anymore.

  • Motion Crashes on COLOR PICKER (after arch. install to leopard)

    So, I took the plunge hearing that things were resolved with FCS2 and leopard, only to find that motion crashes every time I use the built in color picker. Everything else seems to work great. I just get a beach ball for about 2 secs then Boom! Crash with crash reporter popping up.
    Please note that i can change the color of an element using the sliders, this only happens when i want to use the color picker.
    I have tried removing and re-installing motion (maybe i'm missing some core components while un-installing?) and this does not help.
    any help would be appreciated
    511 com.apple.prokit.LeopardPanels 0x0753d0e8 indexFromPoint + 4797
    More than 500 lines of this same code and then the report:
    Thread 1:
    0 libSystem.B.dylib 0x96a9eace _semwaitsignal + 10
    1 libSystem.B.dylib 0x96ac8ced pthreadcondwait$UNIX2003 + 73
    2 com.apple.ColorSync 0x9368a460 pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3 com.apple.ColorSync 0x9369cd92 CMMConvTask(void*) + 54
    4 libSystem.B.dylib 0x96ac8075 pthreadstart + 321
    5 libSystem.B.dylib 0x96ac7f32 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x96a9eace _semwaitsignal + 10
    1 libSystem.B.dylib 0x96ac8ced pthreadcondwait$UNIX2003 + 73
    2 libGLProgrammability.dylib 0x918bdf32 glvmDoWork + 162
    3 libSystem.B.dylib 0x96ac8075 pthreadstart + 321
    4 libSystem.B.dylib 0x96ac7f32 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x96a978e6 machmsgtrap + 10
    1 libSystem.B.dylib 0x96a9f0dc mach_msg + 72
    2 com.apple.CoreFoundation 0x92b560fe CFRunLoopRunSpecific + 1806
    3 com.apple.CoreFoundation 0x92b56d38 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x9547d464 HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x9547d300 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x96ac8075 pthreadstart + 321
    7 libSystem.B.dylib 0x96ac7f32 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x96a9792e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96ac91e6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x96b0ec4b pthreadcondwait + 48
    3 com.apple.procore.framework 0x01ed3af2 PCConditionVariable::wait(PCMutex*) + 24
    4 Ozone 0x0124c2fd OZExecutionUnit::executeLoop() + 65
    5 Ozone 0x0124c3f3 OZExecutionUnit::executeLoopWrapper(void*) + 89
    6 com.apple.procore.framework 0x01ed4dce PCThread::startup(void*) + 18
    7 libSystem.B.dylib 0x96ac8075 pthreadstart + 321
    8 libSystem.B.dylib 0x96ac7f32 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x96a9792e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96ac91e6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x96b0ec4b pthreadcondwait + 48
    3 com.apple.procore.framework 0x01ed3af2 PCConditionVariable::wait(PCMutex*) + 24
    4 Ozone 0x0124c2fd OZExecutionUnit::executeLoop() + 65
    5 Ozone 0x0124c3f3 OZExecutionUnit::executeLoopWrapper(void*) + 89
    6 com.apple.procore.framework 0x01ed4dce PCThread::startup(void*) + 18
    7 libSystem.B.dylib 0x96ac8075 pthreadstart + 321
    8 libSystem.B.dylib 0x96ac7f32 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x96a9792e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96ac91e6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x96b0ec4b pthreadcondwait + 48
    3 com.apple.procore.framework 0x01ed3af2 PCConditionVariable::wait(PCMutex*) + 24
    4 Ozone 0x0124c2fd OZExecutionUnit::executeLoop() + 65
    5 Ozone 0x0124c3f3 OZExecutionUnit::executeLoopWrapper(void*) + 89
    6 com.apple.procore.framework 0x01ed4dce PCThread::startup(void*) + 18
    7 libSystem.B.dylib 0x96ac8075 pthreadstart + 321
    8 libSystem.B.dylib 0x96ac7f32 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x96a9792e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96ac91e6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x96b0ec4b pthreadcondwait + 48
    3 com.apple.procore.framework 0x01ed3af2 PCConditionVariable::wait(PCMutex*) + 24
    4 Ozone 0x0124c2fd OZExecutionUnit::executeLoop() + 65
    5 Ozone 0x0124c3f3 OZExecutionUnit::executeLoopWrapper(void*) + 89
    6 com.apple.procore.framework 0x01ed4dce PCThread::startup(void*) + 18
    7 libSystem.B.dylib 0x96ac8075 pthreadstart + 321
    8 libSystem.B.dylib 0x96ac7f32 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x96a9792e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x96ac91e6 pthread_condwait + 1267
    2 libSystem.B.dylib 0x96b0ec4b pthreadcondwait + 48
    3 com.apple.procore.framework 0x01ed3af2 PCConditionVariable::wait(PCMutex*) + 24
    4 Ozone 0x0124c2fd OZExecutionUnit::executeLoop() + 65
    5 Ozone 0x0124c3f3 OZExecutionUnit::executeLoopWrapper(void*) + 89
    6 com.apple.procore.framework 0x01ed4dce PCThread::startup(void*) + 18
    7 libSystem.B.dylib 0x96ac8075 pthreadstart + 321
    8 libSystem.B.dylib 0x96ac7f32 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x96a9eace _semwaitsignal + 10
    1 libSystem.B.dylib 0x96a9e896 usleep$UNIX2003 + 61
    2 com.apple.AppKit 0x9623f122 -[NSUIHeartBeat _heartBeatThread:] + 2035
    3 com.apple.Foundation 0x9377f04d -[NSThread main] + 45
    4 com.apple.Foundation 0x9377ebf4 _NSThread__main_ + 308
    5 libSystem.B.dylib 0x96ac8075 pthreadstart + 321
    6 libSystem.B.dylib 0x96ac7f32 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x96ae6f5a select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x96ac8075 pthreadstart + 321
    2 libSystem.B.dylib 0x96ac7f32 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x96b039ba accept$UNIX2003 + 10
    1 libSystem.B.dylib 0x96ac8075 pthreadstart + 321
    2 libSystem.B.dylib 0x96ac7f32 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000003 ebx: 0x96a98787 ecx: 0x0010c038 edx: 0x0010c05c
    edi: 0x0010c000 esi: 0x28a09031 ebp: 0xbf800078 esp: 0xbf800000
    ss: 0x0000001f efl: 0x00010286 eip: 0x96a9f970 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0xbf7ffffc
    Binary Images:
    0x1000 - 0xbfe3 com.apple.motion 3.0 (3.0) <c7524413077e4f67bc7d0c3da7bc0fdd> /Applications/Motion.app/Contents/MacOS/Motion
    0x21000 - 0x30fff com.apple.AERegistration 1.2 (68) /Applications/Motion.app/Contents/Frameworks/AERegistration.framework/Versions/ A/AERegistration
    0x42000 - 0x4efff com.apple.PluginManager 1.7.2 (34) /Library/Frameworks/PluginManager.framework/Versions/B/PluginManager
    0x5a000 - 0x94fff com.apple.promath.framework 3.0 (3.0) <764256d8efa243c2ac8d80a4223dddfc> /Applications/Motion.app/Contents/Frameworks/ProMath.framework/Versions/A/ProMa th
    0xa8000 - 0xafff3 com.apple.AEProfiling 1.2 (18) /Applications/Motion.app/Contents/Frameworks/AEProfiling.framework/Versions/A/A EProfiling
    0xb7000 - 0xcefff com.apple.ThirdPartyPlugins 3.0 (3.0) <6e7eb08e66f5413fbd7bdce2780813e9> /Applications/Motion.app/Contents/Frameworks/ThirdPartyPlugins.framework/Versio ns/A/ThirdPartyPlugins
    0xe9000 - 0xf3fee com.apple.finalcutstudio.prometadatasupport 0.5 (1.0) /Library/Frameworks/ProMetadataSupport.framework/Versions/A/ProMetadataSupport
    0xfd000 - 0xfefff com.apple.Helium 2.1.2 (2.1.2) /System/Library/PrivateFrameworks/Helium.framework/Versions/A/Helium
    0x102000 - 0x102ffc com.apple.iokit.dvcomponentglue 1.9.5 (1.9.5) <0759a2500bb678c4e6fc1c4a90d17e03> /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0x107000 - 0x107ffd libmx.A.dylib ??? (???) /usr/lib/libmx.A.dylib
    0x22f000 - 0x386feb com.apple.prokit 4.1 (699.3) <0c44068f8274f63020bc12b71e43fd53> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x45e000 - 0x4dafe3 com.apple.ProMedia 3.0 (3.0) <d6d6bba0e41d4fd3bc4d7ac3656bdcd4> /Applications/Motion.app/Contents/Frameworks/ProMedia.framework/Versions/A/ProM edia
    0x55c000 - 0x5b7ff7 com.apple.ProGraphics 3.0 (3.0) <31f16e104c37443a96183d41a3cbcb7c> /Applications/Motion.app/Contents/Frameworks/ProGraphics.framework/Versions/A/P roGraphics
    0x6a5000 - 0x802fe7 com.apple.Lithium 3.0 (3.0) <93b3b3a5eee544a38d3a0f9da589214c> /Applications/Motion.app/Contents/Frameworks/Lithium.framework/Versions/A/Lithi um
    0x89f000 - 0x904fde com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x924000 - 0x941ff7 com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x959000 - 0x969fff com.apple.fxplugframework 1.2.2 (1.2.2) /Library/Frameworks/FxPlug.framework/Versions/A/FxPlug
    0xf57000 - 0x18d7fcf +Ozone ??? (???) <f1aa35f1001d430cb27a38737fd24e76> /Applications/Motion.app/Contents/Frameworks/Ozone.framework/Versions/A/Ozone
    0x1eae000 - 0x1f59ffe com.apple.procore.framework 3.0 (3.0) <0899edbcfe944c50b4783a655be6d3d8> /Applications/Motion.app/Contents/Frameworks/ProCore.framework/Versions/A/ProCo re
    0x1fa4000 - 0x1fd8fcf com.apple.Helium.HeliumRender 1.0.2 (1.0.2) /System/Library/PrivateFrameworks/Helium.framework/Frameworks/HeliumRender.fram ework/Versions/A/HeliumRender
    0x1ff6000 - 0x2014fe3 libexpat.1.dylib ??? (???) <eff8a63a23a7d07af62b36fdb329e393> /usr/lib/libexpat.1.dylib
    0x2046000 - 0x2062fff GLRendererFloat ??? (???) <5719f596b7e2c9ef8afca208544b158b> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x2300000 - 0x2481fef GLEngine ??? (???) <6106cebf02eec50e8f88c5dc936f1266> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x24af000 - 0x2715ff5 com.apple.ATIRadeonX1000GLDriver 1.5.18 (5.1.8) <3160b40f7448b742fe1f4a988709624c> /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0x4a86000 - 0x4a91fff com.apple.motion.Text 3.0 (3.0) <3aa6aa943deb4df681530333fb5e9d35> /Applications/Motion.app/Contents/PlugIns/Text.ozp/Contents/MacOS/Text
    0x4a9a000 - 0x4a9cfff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x4af2000 - 0x4af5fef com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x4afa000 - 0x4b4a01f +com.DivXInc.DivXDecoder 6.0.5 (6.0.5) /Library/QuickTime/DivX 6 Decoder.component/Contents/MacOS/DivX 6 Decoder
    0x4b5c000 - 0x4ba2fc3 com.apple.motion.component 1.0 (1.0) <017170f3efb641809e992b1cd226ff1e> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x4ba7000 - 0x4baa02f +Motion ??? (???) <7f9650afc9fa4a4aa4ae799eb836cc57> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x68cb000 - 0x6917fe3 com.apple.Bloodhound 3.0 (3.0) <edb1af08a1444954b5ce561668de8256> /Applications/Motion.app/Contents/Frameworks/Bloodhound.framework/Versions/A/Bl oodhound
    0x6952000 - 0x697bfff +com.noiseindustries.FxFactory.FxPlug 1.0.6 (1.0.6) /Library/Plug-Ins/FxPlug/FxFactory.fxplug/Contents/MacOS/FxFactory
    0x6991000 - 0x69a3fcf +com.noiseindustries.NIKit ??? (1.0) /Library/Plug-Ins/FxPlug/FxFactory.fxplug/Contents/Frameworks/NIKit.framework/V ersions/A/NIKit
    0x69b1000 - 0x69d5fe7 com.apple.speech.LatentSemanticMappingFramework 2.6.4 (2.6.4) <1591e65449707141112554274c637e5a> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x6b00000 - 0x6c7aff3 com.apple.motion.Behaviors 3.0 (3.0) <cdd68778c42044b28d8b66ec6dfd5df3> /Applications/Motion.app/Contents/PlugIns/Behaviors.ozp/Contents/MacOS/Behavior s
    0x6d2a000 - 0x6eaaffb com.apple.motion.Particles 3.0 (3.0) <ffe844c84862406780448c64486f5801> /Applications/Motion.app/Contents/PlugIns/Particles.ozp/Contents/MacOS/Particle s
    0x6f0c000 - 0x70bbfc7 com.apple.motion.TextFramework 3.0 (3.0) <2c7fbc6cdd544077911cc9e4fd218afb> /Applications/Motion.app/Contents/Frameworks/TextFramework.framework/Versions/A /TextFramework
    0x715c000 - 0x73aaff3 com.apple.MessageFramework 3.1 (915) <68b9fb04110fbd951aa75a51dfc21e87> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x74fc000 - 0x7501ffb com.apple.fxmetaplug.ImageUnit 1.2.2 (1.2.2) /Library/Application Support/ProApps/Internal Plug-Ins/FxMetaPlug/ImageUnit.fxmetaplug/Contents/MacOS/ImageUnit
    0x753b000 - 0x755dff7 com.apple.prokit.LeopardPanels 4.1 (699.3) <dc1fc7fca339631b2672faa4ed1d445d> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/Leopard Panels.bundle/Contents/MacOS/LeopardPanels
    0x7572000 - 0x7579fe7 com.apple.proapps.mrcheckpro 1.4 (179) /Applications/Motion.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MR CheckPro
    0xb5d9000 - 0xb6bfff7 com.apple.RawCamera.bundle 2.0 (2.0) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xb864000 - 0xb867fff com.apple.audio.AudioIPCPlugIn 1.0.4 (1.0.4) <9ce6f675ce724b0ba4e78323b79cf95c> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xb874000 - 0xb879fe3 com.apple.SmoothCamFxPlug 1.0.1 (1.0.1) /Library/Application Support/ProApps/Internal Plug-ins/FxPlug/SmoothCam.fxplug/Contents/MacOS/SmoothCam
    0xc088000 - 0xc08dfff com.apple.audio.AppleHDAHALPlugIn 1.4.0 (1.4.0a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xc1be000 - 0xc1e6ff3 com.apple.motion.privateunits 3.0 (3.0) <aeee08574d5f4901b669706aa83bf4ca> /Applications/Motion.app/Contents/PlugIns/PrivateUnits.plugin/Contents/MacOS/Pr ivateUnits
    0xc300000 - 0xc432fe0 com.apple.motion.filters 3.0.2 (3.0.2) /Library/Application Support/ProApps/Internal Plug-ins/FxPlug/Filters.bundle/Contents/MacOS/Filters
    0xe71d000 - 0xe71eff3 ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0xe77e000 - 0xe780ffb com.apple.Helium.HCache 2.1.2 (2.1.2) /System/Library/PrivateFrameworks/Helium.framework/Plug-ins/HCache.bundle/Conte nts/MacOS/HCache
    0xebd4000 - 0xebe0ff7 com.apple.DVCPROHDVideoOutput 1.3 (1.3) /Library/QuickTime/DVCPROHDVideoOutput.component/Contents/MacOS/DVCPROHDVideoOu tput
    0xebe8000 - 0xec12fff com.apple.audio.SoundManager.Components 3.9.3 (3.9.3) /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0xec18000 - 0xec1dff7 com.apple.DesktopVideoOut 1.2.4 (1.2.4) /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOut
    0xec22000 - 0xec34fd9 com.apple.FCP Uncompressed 422.component 1.5 (1.5) /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP Uncompressed 422
    0xeca5000 - 0xecbffc3 com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0xee46000 - 0xee90fec com.apple.DVCPROHDMuxer 1.3 (1.3) /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0xeeae000 - 0xeeceff3 com.apple.IMXCodec 1.3.1 (147) /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0xef87000 - 0xefa1fe3 com.apple.applepixletvideo 1.2.10 (1.2d10) <fdac8dfc20ba5d49672d57e04d5c09a2> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xefe8000 - 0xeff1fff com.apple.IOFWDVComponents 1.9.5 (1.9.5) <889959011cb23c11785c378264400284> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xf14e000 - 0xf189fff com.apple.QuickTimeFireWireDV.component 7.3 (7.3) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x10000000 - 0x1005efef com.apple.proapps.AudioMixEngine 2.0 (64) /Applications/Motion.app/Contents/Frameworks/AudioMixEngine.framework/Versions/ A/AudioMixEngine
    0x24120000 - 0x2415afff com.apple.AppleProRes422 1.0.2 (46) /Library/QuickTime/AppleProRes422.component/Contents/MacOS/AppleProRes422
    0x241a6000 - 0x241eafe7 com.apple.DVCPROHDCodec 1.4 (231) /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x241ff000 - 0x2425cfde com.apple.AppleHDVCodec 1.3.2 (216) /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x24269000 - 0x242a4fe3 com.apple.AppleVAFramework 4.0.14 (4.0.14) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x24c00000 - 0x24f7eff1 QuickTimeH264.scalar ??? (???) <39d93ce34275dc204bca822d7b9f885c> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x25bfe000 - 0x25c1efc7 +com.RightsideResponse.Tangerine.ColorPicker ??? (1.0) /Library/ColorPickers/Tangerine.colorPicker/Contents/MacOS/Tangerine
    0x8fe00000 - 0x8fe2d883 dyld 95.3 (???) <81592e798780564b5d46b988f7ee1a6a> /usr/lib/dyld
    0x90033000 - 0x90072fef libTIFF.dylib ??? (???) <6d0f80e9d4d81f3f64c876aca005bd53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90073000 - 0x9007efe7 libCSync.A.dylib ??? (???) <df82fc093e498a9eb5490761cb292218> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9007f000 - 0x900b9ff7 com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x900ba000 - 0x900f3ffe com.apple.securityfoundation 3.0 (32768) <1e9885d63ced51f81bc1f39af624637d> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x900f4000 - 0x90162fff com.apple.iLifeMediaBrowser 1.0.3 (194) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x90163000 - 0x9017effb libPng.dylib ??? (???) <b6abcac36ec7654ff3e1cfa786b0117b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9017f000 - 0x90211ff3 com.apple.ApplicationServices.ATS 3.0 (???) <fb5f572243dbc370a0ea5efc8e81ae11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90212000 - 0x90228fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x90229000 - 0x902bcfff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9030b000 - 0x90338feb libvDSP.dylib ??? (???) <a26683d121ee0f96df9a9d0bfca36049> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90339000 - 0x90400ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90401000 - 0x904b7fe3 com.apple.CoreServices.OSServices 210.2 (210.2) <4ed69f07fc0f211ab32d1ee96e281fc2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x904b8000 - 0x904eefff com.apple.SystemConfiguration 1.9.0 (1.9.0) <7919d9588c3b0d556646e555b7193f1f> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x904ef000 - 0x904f3fff com.apple.CoreMediaAuthoringPrivate 1.1 (1.1) /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x904f4000 - 0x90a09fff com.apple.WebCore 5523.10.3 (5523.10.3) <89179acba0e5ae2163d4a75ad460cbdb> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x90a0a000 - 0x90a0cff5 libRadiance.dylib ??? (???) <20eadb285da83df96c795c2c5fa20590> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90a0d000 - 0x9188dff2 com.apple.QuickTimeComponents.component 7.3 (7.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9188e000 - 0x91896fff com.apple.DiskArbitration 2.2 (2.2) <1551b2af557fdf6f368f93e093933852> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91897000 - 0x91d63ffe libGLProgrammability.dylib ??? (???) <e8bc0af671427cf2b6279a035805a086> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x91d64000 - 0x91d6afff com.apple.print.framework.Print 218 (220) <c35172175abbe554ddadd9b6401351fa> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91d6b000 - 0x91d81fe7 com.apple.CoreVideo 1.5.0 (1.5.0) <8947e88900afa1d2ca78b69bff98b0d7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x91d82000 - 0x91deeffb com.apple.WhitePagesFramework 1.0 (112.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x91def000 - 0x91e21fff com.apple.LDAPFramework 1.4.3 (106) <3a5c9df6032143cd6bc2658a9d328d8e> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x91e22000 - 0x91e27fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91e28000 - 0x91e46ff3 com.apple.DirectoryService.Framework 3.5 (3.5) <899d8c9ee31b004a6ff73dab88982b1a> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91e47000 - 0x91e52fff com.apple.dotMacLegacy 3 (242) <d59587ecfd0e0e31ce7d61f544cfa298> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x91e53000 - 0x91ed2ff5 com.apple.SearchKit 1.2.0 (1.2.0) <277b460da86bc222785159fe77e2e2ed> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91ed3000 - 0x9209cfef com.apple.security 5.0.1 (32736) <8c9eda0fcc1d8a571543025ac900715f> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9209d000 - 0x9217cfff libobjc.A.dylib ??? (???) <5eda47fec2d0e7853b3506aa1fd2dafa> /usr/lib/libobjc.A.dylib
    0x92191000 - 0x92191ffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x92192000 - 0x92293fff com.apple.PubSub 1.0.1 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x92294000 - 0x922bbfff libcups.2.dylib ??? (???) <6b61eb99e6f5dd2d66cd224e9f82427d> /usr/lib/libcups.2.dylib
    0x922bc000 - 0x922daff7 com.apple.QuickLookFramework 1.0 (168.0) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x922db000 - 0x922fffff libxslt.1.dylib ??? (???) <4933ddc7f6618743197aadc85b33b5ab> /usr/lib/libxslt.1.dylib
    0x92300000 - 0x92456fee com.apple.CalendarStore 3.0.1 (805) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x92457000 - 0x92457ffa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x92458000 - 0x9246cff3 com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9246d000 - 0x92516fff com.apple.JavaScriptCore 5523.10.3 (5523.10.3) <9e6719a7a0740f5c224099a7b853e45b> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92517000 - 0x9251efe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x9251f000 - 0x9256ffeb com.apple.framework.familycontrols 1.0.1 (1.0.1) <da064f9f4b4ac1edd1bd3818f637c11f> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x92570000 - 0x925b1fe7 libRIP.A.dylib ??? (???) <bdc6d70bf4ed3dace321b4ff76a353b3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x925b2000 - 0x925b2ff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x925b3000 - 0x925f5fef com.apple.NavigationServices 3.5.1 (161) <cc6bd78eabf1e2e7166914e9f12f5850> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x925f6000 - 0x92632ff7 com.apple.CoreMediaIOServicesPrivate 1.2 (1.2) /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x92636000 - 0x9267bfef com.apple.Metadata 10.5.0 (398) <4fd74fba0062c2e08ec4b1c10b40ff63> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9267c000 - 0x9268dffe com.apple.CFOpenDirectory 10.5 (10.5) <6a7f55108d77db7384d0e2219d07e9f8> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x9268e000 - 0x9268effc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9268f000 - 0x9269cff7 com.apple.DMNotification 1.1.0 (143) <07530f513cd71e41bccbf19225ac1cb4> /System/Library/PrivateFrameworks/DMNotification.framework/Versions/A/DMNotific ation
    0x9269d000 - 0x926f6fff libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92960000 - 0x929ebff7 com.apple.QTKit 7.3 (7.3) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x929ec000 - 0x92a73ff7 libsqlite3.0.dylib ??? (???) <273efcb717e89c21207c851d7d33fda4> /usr/lib/libsqlite3.0.dylib
    0x92a74000 - 0x92ae3fff com.apple.PDFKit 2.0 (2.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x92ae4000 - 0x92c16fe7 com.apple.CoreFoundation 6.5 (476) <8bfebc0dbad6fc33bea0fa00a1b9ec37> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x92c17000 - 0x92cf6fff com.apple.syncservices 3.0 (388) <fc1294b5b89dcab17de9e04c282a3cad> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x92cf7000 - 0x9338efef com.apple.CoreGraphics 1.351.0 (???) <7a6f399039eed6dbe845c169f7d21a70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9338f000 - 0x93470ff7 libxml2.2.dylib ??? (???) <450ec38b57fb46013847cce851001a2f> /usr/lib/libxml2.2.dylib
    0x93471000 - 0x93473ff1 com.apple.QuickTimeH264.component 7.3 (7.3) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x93569000 - 0x93573feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93574000 - 0x93578fff libGIF.dylib ??? (???) <d4234e6f5e5f530bdafb969157f1f17b> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93596000 - 0x935dafeb com.apple.DirectoryService.PasswordServerFramework 3.0.1 (3.0.1) <e2858f33c02cef9ea4d717b19529059e> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x935db000 - 0x935defff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x935df000 - 0x93656fe3 com.apple.CFNetwork 220 (220) <0ae8fbcbadcb9bd8d673aa4531c0fcfc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x93657000 - 0x93722fff com.apple.ColorSync 4.5.0 (4.5.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x93723000 - 0x93773ff7 com.apple.HIServices 1.6.0 (???) <d74aa73e4cfd30a08fb169198a8d2539> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x93774000 - 0x93774ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93775000 - 0x939eefe7 com.apple.Foundation 6.5.1 (677.1) <85ac18c7cd454378db6122bea0c00965> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x939ef000 - 0x93a20ffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93a21000 - 0x93a30ffe com.apple.DSObjCWrappers.Framework 1.2 (1.2) <f5b58d1d3a855a63d493ccbec417a1e9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x93a31000 - 0x93a32ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x93a33000 - 0x93ad1fef com.apple.QuickTimeImporters.component 7.3 (7.3) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x93ad2000 - 0x93b08fef libtidy.A.dylib ??? (???) <e4d3e7399fb83d7f145f9b4ec8196242> /usr/lib/libtidy.A.dylib
    0x93b09000 - 0x93b53fe1 com.apple.securityinterface 3.0 (32532) <f521dae416ce7a3bdd594b0d4e2fb517> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x93b54000 - 0x93c03fff com.apple.DesktopServices 1.4.3 (1.4.3) <66d5ed56111c43d234e235d365d02469> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x93c04000 - 0x93dbfff3 com.apple.QuartzComposer 2.0 (106) <e31bf3733d0676dd7993afca6ce48c3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93dc0000 - 0x93dc0ffd com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x93dc1000 - 0x9409afe7 com.apple.CoreServices.CarbonCore 783 (783) <8370e664eeb25edc98d5c1f5405b06ae> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9409b000 - 0x940a0ffb com.apple.DisplayServicesFW 2.0 (2.0) <8953865f53e940007a4e4ac5390d3c95> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x940a1000 - 0x940a1fff com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x940a2000 - 0x940a9ffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x940aa000 - 0x940e7ff7 libGLImage.dylib ??? (???) <202d73e6a4688fc06ff11b71910c2ce7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940e8000 - 0x941adfff com.apple.QuickTimeMPEG4.component 7.3 (7.3) /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x941ae000 - 0x9423aff7 com.apple.LaunchServices 284 (284) <0fb50a7a6fd38875f727fc2592a496e4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x9423b000 - 0x94278fff com.apple.DAVKit 3.0.0 (641) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x94279000 - 0x94279ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9427a000 - 0x943bfff7 com.apple.ImageIO.framework 2.0.0 (2.0.0) <154d4d8cda2bd99518cbabc9f2d69833> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x943c0000 - 0x943d0ffc com.apple.LangAnalysis 1.6.4 (1.6.4) <cbeb17ab39f28351fe2ab5b82bf465bc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x943d1000 - 0x94401ff3 com.apple.DotMacSyncManager 1.2.2 (280) <fa19f847dcb535449201e99f5270065d> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x94402000 - 0x94425fff com.apple.CoreMediaPrivate 1.2 (1.2) <f2f275de4f50406fbebc42603399f029> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x94426000 - 0x944cdfff com.apple.QD 3.11.50 (???) <e2f71720ae1dad06a8883ac80775b21a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x944ce000 - 0x9464cfff com.apple.AddressBook.framework 4.1 (687) <3f005092d08e963eabe8f7f66c09cc1e> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9464d000 - 0x9465cfff libsasl2.2.dylib ??? (???) <b9e1ca0b6612e280b6cbea6df0eec5f6> /usr/lib/libsasl2.2.dylib
    0x9465d000 - 0x94669ff5 libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9466a000 - 0x9466efff com.apple.OpenDirectory 10.5 (10.5) <e7e4507f5ecd8c8cdcdb2fc0675da0b4> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x9466f000 - 0x9466fffd com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x94670000 - 0x94688fff com.apple.openscripting 1.2.6 (???) <b8e553df643f2aec68fa968b3b459b2b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x94689000 - 0x94744fe3 com.apple.WebKit 5523.10.3 (5523.10.3) <2741777559b3948d520a4d126330dbce> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94745000 - 0x94746fef libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x94747000 - 0x947d1fff com.apple.framework.IOKit 1.5.1 (???) <5176a7383151a19c962334009fef2c6d> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x947d2000 - 0x9482fffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x94830000 - 0x94837ff7 libCGATS.A.dylib ??? (???) <9b29a5500efe01cc3adea67bbc42568e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94838000 - 0x94bceff7 com.apple.QuartzCore 1.5.1 (1.5.1) <deb61cbeb3f734a1b2f4669f6268b9de> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94bcf000 - 0x94bdcfe7 com.apple.opengl 1.5.5 (1.5.5) <aa08b52d2a84b44dc6ee5d544a53fe8a> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x94bdd000 - 0x94be4fff com.apple.agl 3.0.9 (AGL-3.0.9) <7dac4a7cb0de2f6d08ae71c1249379e3> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94be5000 - 0x94beaffc com.apple.KerberosHelper 1.0 (1.0) <1cb4daff689a346f24e17131d83c0c5b> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x94beb000 - 0x94bebffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x94bec000 - 0x94c66ff8 com.apple.print.framework.PrintCore 5.5 (245) <9441d178f4b430cf92b67bf346646693> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94c67000 - 0x94d9fff7 libicucore.A.dylib ??? (???) <afcea652ff2ec36885b2c81c57d06d4c> /usr/lib/libicucore.A.dylib
    0x94da0000 - 0x94decfff com.apple.QuickLookUIFramework 1.0 (168.0) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x94ded000 - 0x94e47ff7 com.apple.CoreText 2.0.0 (???) <7fa39cd5bc847615ec02e7c7a37c0508> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x94e48000 - 0x94e6cfeb libssl.0.9.7.dylib ??? (???) <acee7fc534674498dcac211318aa23e8> /usr/lib/libssl.0.9.7.dylib
    0x94e6d000 - 0x94e97fef libauto.dylib ??? (???) <d468bc4a8a69343f1748c293db1b57fb> /usr/lib/libauto.dylib
    0x94e98000 - 0x95256fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95257000 - 0x95260fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x95261000 - 0x95345ffb com.apple.CoreData 100 (185) <a4e63784275e25e62f57e75e0af0b94d> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x95346000 - 0x95365ffa libJPEG.dylib ??? (???) <0cfb80109d624beb9ceb3c43b6c5ec10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95366000 - 0x953c2ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x953c3000 - 0x95428ffb com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x95429000 - 0x95447fff libresolv.9.dylib ??? (???) <54e6a08c2f108bdf5916fb483d51961b> /usr/lib/libresolv.9.dylib
    0x95460000 - 0x954dcfeb com.apple.audio.CoreAudio 3.1.0 (3.1) <70bb7c657061631491029a61babe0b26> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x954dd000 - 0x957effe2 com.apple.QuickTime 7.3.0 (7.3.0) <adfe6f92ffe38bc57df6b8cb2e6ea9d9> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x957f0000 - 0x95914fe3 com.apple.audio.toolbox.AudioToolbox 1.5 (1.5) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x95915000 - 0x959c5fff edu.mit.Kerberos 6.0.11 (6.0.11) <33c25789baedcd70a7e24881775dd9ad> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x959c6000 - 0x95cccfff com.apple.HIToolbox 1.5.0 (???) <1b872a7151ee3f80c9c736a3e46d00d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x95ccd000 - 0x95cf5ff7 com.apple.shortcut 1 (1.0) <057783867138902b52bc0941fedb74d1> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x95cf6000 - 0x95d01ff9 com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x95d02000 - 0x95d04fff com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x95d05000 - 0x95d11fff libbz2.1.0.dylib ??? (???) <9ea4fe135c9e52bd0590eec12c738e82> /usr/lib/libbz2.1.0.dylib
    0x95d12000 - 0x95d86fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x95d87000 - 0x96197fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96198000 - 0x96992fef com.apple.AppKit 6.5 (949) <f8d0f6d0bb5ac092f48f42ca684bdb54> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x96993000 - 0x969c2fe3 com.apple.AE 402 (402) <994ba8e884aefe7bf1fc5987df099e7b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x969c3000 - 0x96a75ffb libcrypto.0.9.7.dylib ??? (???) <330b0e48e67faffc8c22dfc069ca7a47> /usr/lib/libcrypto.0.9.7.dylib
    0x96a76000 - 0x96a84ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x96a85000 - 0x96a95fff com.apple.speech.synthesis.framework 3.6.59 (3.6.59) <4ffef145fad3d4d787e0c33eab26b336> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96a96000 - 0x96a96ffd com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96a97000 - 0x96bf1fe3 libSystem.B.dylib ??? (???) <8ecc83dc0399be3946f7a46e88cf4bbb> /usr/lib/libSystem.B.dylib
    0x96bfc000 - 0x96d32fe3 com.apple.imageKit 1.0 (1.0) <2f2656deebcf595b88f010ba08cef0e4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x96d33000 - 0x96d67fef com.apple.bom 9.0 (136) <b72e1fd1d3bfd8c288381adb23775fd4> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x96d68000 - 0x96d6dfff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <7b0248c392848338f5d6ed093313eeef> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    Message was edited by: Spacecadetcraig

    Yes. It looks as though i may need to do a fresh install, which i was hoping i wouldn't have to do. But was prepared for it.
    I'm sure that would fix the issue. It's kind of a bummer though that the archive and install function doesn't carry over those needed frameworks. There's probably some technical reason why it doesn't
    thanks for the reply

  • CS5 Quick-Access Color Picker....anyone found out how to actually use it properly?

    Hey there,
    I'm a digital artist and use Photoshop for the majority of my work. One feature that PS CS5 brought on that i was initially really looking foward to was the new way to select the color i wanted in real time, rather than having to go and click on the color and then select it... minor difference i know, but it really helps speed things up not having to do that and adobe have finally implimented this due to that reason... aprantly...
    However, first off, i've noticed there seems to be absolutly nothing in Photoshop that tells you the shortcut command to show this new feature, which made me have to look online for it, and then the command is rather odd itself and the panel it brings up seems pretty unusable for me. The command is Shift+Alt+Right Click. This for me is quite difficult to actually do on an intuos 4 graphics tablet althogh thats more wacoms fault with odd feeling buttons, but then, Photoshop seems to offer no way to change this shortcut command to help me out there. Also with the panel itself, both the wheel and slider, i have 2 problems:
    1. I know alot of people don't work this way but there seems to be no reason it can't be changed in the preferences when you choose the wheel or slider, but i work in the "b" of LAB color, so the right bar controls the tempreture of the color and the left box of has all the colors in it...you can't set up the quick entry slider like this.
    2. It takes a while to actually get the quick entry color picker to get the color you want. The only reason this is, is because the way it acts is like you are always holding down a button so its constantly selecting the colors as you go over the menu. The problem here is, say i want a dark red.... i set the main strip to red, then in the saturation part try to get the color i want by stil holding these buttons and dragging out to that part of the menu. this will work. However, more likely than not i want to change the color just a *bit* more (say, to make it look like a colder red*, well then you loose the color you just found found because as soon as you move the cursor it selects all the colors back upto the hue strip...
    Now, logically i'm guessing this menu is working by figuring out when the user clicks and lets go as to when it shoud come up and dissapear. Hense requires the right click in the shortcut, and also why it is constantly selecting a color. This i imagine is also probably why it doesn't seem to be changable because it has to be like that perhaps? But i seriously would urge adobe to improve this vastly in how it works ad user control for cs6 at least. Its very uncomfortable to use and turns out being faster to do it the old way for the most part...
    So in the end, i'm just checking here, that there is in fact no way to change its keyboard shortcut, what color selection method to choose from, and to see if anyone else if experiencing similar problems with trying to use it.
    Thank you

    Some partial answers to some of my questions:
    They were conveniently all in one menu, and it's very easy to tell someone, "Go to the menu bar and choose Advanced > Print Production > Output Preview."
    But in Acrobat X, by default these choices aren't visible. It appears necessary to click Tools, which dramatically reduces the document width available), Print Production, and then choose from the Panel.
    Since this user interface isn't standard, it's harder to describe to new users, and keeping Tools open wastes a lot of screen space.
    It doesn't address the real estate issue, but at least one can describe to users they should View > Tools > Print Production and then deal with the subsequent tools pane that appears and therein click Output Preview.
    Another concern is the new interface seems to have destroyed the discoverability of keyboard shortcuts. For instance, in Acrobat 9, Document > Delete Pages was clearly bound to Command-Shift-D.But in Acrobat 10, how are you supposed to find the keybinding? It is not even in the tooltip
    In fact, it doesn't seem to be in the help under Keyboard shortcuts, or anywhere else in the help that I could find!
    OK
    in the "Page Thumbnails" "Navigation Pane" (formerly"Pages"; still F4) the right-click context menu has these shortcuts. As does what I guess is the "options" menu (analagous to a "flyout" menu but its in the upper-left of the pane rather than the upper-right).  This isn't all that great since every icon leading to a functino should show the same keyboard binding, but it's nice to know it is somewhere...
    More later.

  • Am I just crazy? Didn't there used to be a color picker?

    So, as far as I can remember, there was a tool in Leopard that let you hover over any color in any application and find it's code to replicate it... I thought it was called Color Picker and looked like a little eyedropper with a color wheel behind it.
    Now, I can't find it. I'm wracking my brain to locate it, but I can't.
    My main objective is to get a color I saw on a website into Photoshop, but since I can't find OS X's built-in color utility to get the hex code, I can't get it right in my graphic.
    Any suggestions on locating the Color Picker? Or on how to import colors from websites to my Photoshop swatches?

    Sed --
    I hope I wasn't one of the smarmy ones . . .
    I really thought you just weren't seeing it.
    When a user moves an app out of the place the system
    expects to see it, it will ignore it.
    In the past, a lot of users wanted to group all their browsers into one
    folder they made themselves, called, "Internet apps." So Safari, Camino, FF, etc.
    all went in that folder. When doing updates, the apps were not found free standing in the application folder, and they were ignored, i.e., never updated.
    So the explanation you got makes sense to me.
    EDIT: Maybe if you use it a lot, make an alias for it in the Dock where you can easily access it.
    Message was edited by: ~Bee

Maybe you are looking for