Color picker control for WD

Hi!
Is there some sort of color picker control for WD?

Hi,
You can give color to any of your text UI or buttons using the following example .
data: l_amountuielement type ref to cl_wd_text_view,
      l_layoutdata      type ref to cl_wd_matrix_data,
      io_container  type ref to     cl_wd_uielement_container,
      iv_amount     type string,
      iv_attributevisibility  type  string,
      iv_color  type  wdy_uie_library_enum_type,
      iv_design type  wdy_uie_library_enum_type,
      iv_indextoinsert  type  integer ,
      iv_id type  string.
call method cl_wd_text_view=>new_text_view
  exporting
    bind_visible   = iv_attributevisibility
    design         = iv_design
    text           = iv_amount
    semantic_color = iv_color -
>eg: '02' for green color
  receiving
    control        = l_amountuielement.
call method cl_wd_matrix_data=>new_matrix_data
  exporting
    element = l_amountuielement
  receiving
    control = l_layoutdata.
l_layoutdata->set_h_align( cl_wd_matrix_data=>e_h_align-forced_right ).
io_container->add_child(
exporting
   index     = iv_indextoinsert
   the_child = l_amountuielement ).
Thanks,
Rajkumar.S

Similar Messages

  • Color Picker mouseover preview

    I am trying to implement a standard color picker control
    using custom color label/value pairs. When I test the application
    (very basic at this point) For some, but not all, colors I need to
    mouseover the color twice in order for the preview swatch to show
    that color. This doesn't seem right, but I can't figure out how to
    fix it.
    Any insight would be appreciated!

    Thanks Greg! That was the solution. It does seem strange that
    this is required. With some testing I found that it is only
    required when any of the defined colors are outside the standard
    256 web colors.
    Thanks again.

  • Photoshop open extension instead of default color picker

    Hi there,
    I've got a really powerful color picker extension for Photoshop, but I wanted it to be used in place of the default Photoshop color picker.
    Is it possible to make this extension be opened when I want to edit a color in Photoshop?
    Thanks in advance

    I'm sorry to keep you waiting. Could you please link me to it, so I have a better idea what can be done?
    Gene

  • Define Control for Automatic Creation of Pick HUs

    We are using full blown HU management and in the customizing for the Control for Automatic Creation of Pick HU's you define the packaging materials to use.  The help in from of this customizing says that if this is blank the system attempts to find a common packaging material for all materials in the transfer order. 
    My issue is that when I leave this blank the packaging material that the system proposes is not the packaging material that is contained on the source HU nor is it the packaging material that is contained in the Packing Instructions.
    How does the system determine the packaging material on the destination HU?  Am I required to maintain a value in this customizing?
    Thanks
    Nick

    I found my own answer so i will give myself many points.  See question to get answer.

  • 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

  • Color Picker for Web

    I often do website images for developers. The problem i am having is matching the web color from a color pick in ps. I have used a method where s i take a screen shot on my MAC and then pull that into PS cs5 (I have cs6 also) and pick. Then i export for web (png or jpeg).
    This method gets me inconsistent results. Is there a better way or  a small utility for this?

    I have Ps set up correctly as i tweaked settings the last time i had a color problem. My screen shots are LZ77 which i think carries SRGB. I have a custom calabration for my LED monitor. This adjustment was for yellow. done by a a friend with an xrite.
    I do not think it is about the screen so much as how the color is being read. if i am seeing a certain purple on the web. my screen may softly tint it but its tinting everything on the screen and its effects would be universal.
    its how how i am sampling i believe to be the issue.
    Ps. i am set up to see what the color type is and i have the choice to convert.

  • Acrobat 8:color picker for the "fill" option is no longer available.

    I have Acrobat 8 and am creating a fillable form with the check box tool and text field tool. 8 of the 9 pages worked well but on the 9th page the color picker for the "fill" option is no longer available. It is still available for "Text". I cannot find the cause for this and would like to know how to reactivate the color picker. Please advise. Thanks!

    Those instructions still work for me - you are selecting a free app in the store and clicking on 'create Apple id' (the instructions won't work with an existing account) when 'buying' the app ?

  • Illustrator CC - Color Picker for BLACK always shows 60C:90M:0Y:0K

    In Illustrator CC, the color picker in the tool bar when showing 100% Black Text always comes up as 60% Cyan, 90% Magenta and nothing else. The little box on the tool bar will be black. The text will be black. But if I double click on the little box and get the Color Picker Window to appear, it has 60% Cyan and 90% Magenta filled in. If I change it to 100% Black and nothing else, hit enter, it will show as black but if I open the picker again, it will still be 60C 90M.
    It only does this with 100% Black. If I have any other color it shows accurately as it should.
    When Color separated the file is comes out right with the 100% as I want it. So really, its not a problem thats ruining the file its more of a preview thing and I am just curious as to why its doing it.
    Illustrator CC 18.0.0 2014 Release.
    Mac OSX 10.9.5 Mavericks.
    In CMYK Mode. Blacks set to display accurately.

    OBB,
    I wonder whether it is a (hitherto unnoticed) bug, in which case a ug report would be called for,
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    or a corruption of preferences or something similar, in which case the list (maybe especially 4) or 6)) would be called for.
    The following is a general list of things you may try when the issue is not in a specific file, and when it is not caused by issues with opening a file from external media, see below. You may have tried/done some of them already; 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html
    External media: It is always recommended here to open/save from/to own hard disk, and to copy from/to networks and removable media. You may be lucky (for a while), but the chances of file corruption and other unpleasantnesses are immensely greater when you use anything but the harddisk, and it is better to be safe than sorry.
    In addition to the (far greater) risk of file corruption, some issues are mentioned here:
    http://helpx.adobe.com/illustrator/kb/illustrator-support-networks-removable-media.html

  • Color Picker - help needed..maybe for Barb B.

    I was using the color picker this afternoon and, all of a sudden, I noticed the ‘not safe for web’ cube alert.. and I have never noticed it before.   Any color I select from any image (including ones already posted on the internet) give me that warning… What did I do to bring this about?  I must have inadvertently clicked on something…
    Secondly, I also note that when I click on a color in the color picker I get a little circle that stays there…again.. what on earth did I do?
    Help???  Thank you!

    That "unsafe for Web" alert is an outdated relic from the ancient past of personal computing.  Just ignore it.
    The so-called "Web safe" colours never were of any use, just a misguided attempt at standardization.  Again, don't bother with it.
    Ken

  • Keyboard shortcut for using the color picker in another application

    Hi, I'm new here. My first post.
    I remember there were a keyboard shortcut in Ps for using the color picker in another application. For example picking a color in a web browser. I just don't remember the keyboard shortcut. Anyone know it?
    Regards,
    Leif

    Thanks! This was the method I was looking for. Unfortunately it doesn't work when I drag the eyedropper to a browser window on a secondary monitor. Maybe it has to do with my setup, Mac/Mavericks and Ps CC 2014. Anyway thanks for your help, you gave me the answer I was looking for.
    //  Leif

  • Choosing font color for titles in fcpx without using the color Picker

    I am working with a lot of titles.  I would like to use a consistent color in all of my titles.  I know how to select text color with the color picker in the inspector.  I find this very cumbersome.  Is there some way to numerically specify the color (e.g. R= 45, G=55, B=120) or to have a preset palette I can choose from?  I found that by double clicking on the color swatch in the inspector that I can bring up a colors window.  I can store custom colors there, however I can find now way then to apply that custom color back onto the font.  There must be some way of doing this that I am missing.  Thanks for your help.

    You can create an entire "Style" in one title and save that style as a preset.
    Create the look of your Title for the first instance. In the inspector > Text pane, click on the label at the top (usually shows: "Normal" until you set a specific style) -- from that dropdown menu, select Save All Basic and Style Attributes.
    You can then: Select ALL of the titles you want to apply those attributes to (shift click or drag a marquee through them all) and use the dropdown menu to apply the style you saved in one fell swoop.

  • Wish: A color picker for the grad filter

    When I use color for the grad filter, I often wish I could pick the color from my image. It is "fiddly stuff" to get the color right with the color panel as it is now.
    It would be great to have a color picker that takes the color from a chosen spot in the image.
    WW

    Oh I see, sneaky little devil!
    Thanks for the tip, Lee Jay.
    Correct answer.
    WW

  • Color picker for text in Mac OS X Lion Mail is not working properly

    I found a bug in Mac OSX Lion Mail program. I tried it on 3 different machines and they all act the same. When you compose a new message in mail and you change the color of the text to another color than black with the color picker, the text changes to the apropriate color. If you try to select that same text and try to revert it's color to black again using the color picker, the text bocomes blank and you cant see it anymore.
    Does anybody have the same problem as I do?

    Same problem here - it's a bug which hopefully will be fixed in a future update.
    In the meantime, here is a workaround:
    Highlight the text you want to change
    Click on the color icon
    Click on "Show Colors"
    Run the "Back slider" a little up, and then all the way back again.
    This should make the text black again - it's a little cumbersome to say the least, but it does the trick

  • To Show/Display Color Picker Panel to user for creating Swatch- in SCRITPING

    Hi All
    I'm in need to Show/Display "Color Picker Panel" in InDesign, to the user to select their desire color to create a swatch  through SCRIPTING. Can anyone help me in this.

    I wrote a similar ColorPicker Script sample in the past, too.
    create document
    create rectangle object
    show ColorPicker
    choose color with ColorPicker
    create RGB color swatch
    (convert to CMYK color swatch)
    coloring rectangle object to this swatch
    http://www.milligramme.cc/wp/2010/02/extendscript_colorpicker.html
    mg

  • Access denied for Date Picker Control in sitepage

    We have an issue with Date Picker controls in a web page.
    Two date Picker controls were added to one site page to allow users to enter start date and end date to search. The controls are placed in the ContentPlaceHolder web part. The controls allow user to pick a date at Dev, SIT, and Prod environment but not working
    in UAT.
    At UAT, an Access Denied error message appears when the Date Picker control is clicked.
    Feng Wan

    Hello,
    What permission is user having on page? Have your tried with different account with higher permission?
    You can also look at this blog if this is the case:
    http://sharepointwings.blogspot.sg/2013/08/sharepointdatetimecontrol-access-denied.html
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

Maybe you are looking for

  • How to  check customer reference no. not  being use more than once

    I have the following situation and appreciate if  some one could show me a simple solution. “On the Sales order window, when user enter a value for Customer Ref. No”, check if the entered value has already  been used on any existing Sales Order, and

  • Abap report for budget/actual/commitment

    Hi Guru.. Please help me. Im in urgent I wanna write an abap program for budget/actual/commitment. I try to trace prgram s_alr_87013019, but only one table found. Please let me know which table is using for budget/actual/commitment report.. Please gu

  • Mac Estimated time is always wrong... FOR YEARS!

    Sometimes it will say estimated time remaining 45 minutes and then it will just jump to 10 minutes and then back up to something rediculous like "about an hour" and then back down to 20... It's crazy and as it's been this way as far as I can recall f

  • I want to download the latest version of iTunes

    I want to download the latest version of iTunes from the internet rather than on the Apple software update...will i have to re-enter my account details in the iTunes i downloaded...plz help..!!

  • How to Make FormsCentral Accessible

    Can alt text be added to images and the submit button in customized forms created through FormsCentral? If we were to purchase the product, we would need it to meet accessibility guidelines. Thank you.