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?

Similar Messages

  • 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.

  • Color Picker Component in JSF

    Hi
    I would like to know if there is a Color Picker Component in JSF
    Thanks
    Sreelekha

    Hi
    i tried that component suit , but still i couldnt extract that color picker component from the sample html file :(
    after i become able to extract that then i would try to use it inside jsc pages.
    do you use that component ?
    thanks

  • Color picker component

    Hi!
    Is there any color picker component out there ? I'd like to make something similar to the color picker buttons in the paintshop pro or photoshop toolbars, where you can see the current background and foreground colors to be used. Any help would be appreciated.
    thanks

    So, what, you click on the button and then it pops up a window with a palette of colours, requiring you to select one? Why not use a JButton with an icon? put the relevant code (re. the JColorChooser and dealing with colour choice by the user) in the actionPerformed method of an ActionListener you add to the button.
    If you're talking about the single-colour-filled colour buttons like in Paint -- you know, the ones you click and then the colour you're painting with gets changed to that colour -- then why not create a subclass of JButton, called ColourButton perhaps (surprise!), something like this:
    import javax.swing.JButton;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics;
    public class ColourButton extends JButton
        private Color colour;
        public ColourButton (Color colour)
            super ();
            this.colour = colour;
            setBackground (colour);
            setOpaque (true);
            setPreferredSize (new Dimension (30, 30));
        public void paintComponent (Graphics g)
            super.paintComponent (g);
            //Maybe manage the filling of the button's surface area with 'colour' somehow
            //      What I've done in the constructor may be enough, though.
            //Perhaps use a border as well.
    //Class to test...
    import javax.swing.*;
    import java.awt.*;
    public class TestColourButtons extends JFrame
        public TestColourButtons ()
            super ("Colour Bar");
            JPanel pane = new JPanel ();
            pane.setLayout (new GridLayout (1, 0));
            pane.add (new ColourButton (Color.BLACK));
            pane.add (new ColourButton (Color.RED));
            pane.add (new ColourButton (Color.YELLOW));
            pane.add (new ColourButton (Color.CYAN));
            pane.add (new ColourButton (Color.BLUE));
            pane.add (new ColourButton (Color.WHITE));
            getContentPane ().add (pane);
            pack ();
            setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
            setLocationRelativeTo (null);
            setVisible (true);
        public static void main (String[] args)
            new TestColourButtons ();
    }

  • Using the color picker component to change background is coving up the rest of the elements

    Hello,
    I am trying to learn some scripting for components.
    I have a bunch of stuff working and I got the color picker component to change the color of a movie clip and another one to change the text color.
    I have another script that does the background color, but, when I use it with this script, it covers up the other components.
    How can I use the color picker to change the background color of the stage without covering up the the movie elements?
    Here are the two scripts:
    script one-works fine on the 2 elements it is targeting
    import fl.events.*;
    import fl.events.ColorPickerEvent;
    myColPic.addEventListener(ColorPickerEvent.CHANGE,changeHandler);
    function changeHandler(event:ColorPickerEvent):void {
        var colorInfo:ColorTransform = new ColorTransform;
        colorInfo.color = event.color;
        myBox.transform.colorTransform = colorInfo;
        trace(event.target.hexValue);
    myTextPic.addEventListener(ColorPickerEvent.CHANGE,changeText);
    function changeText(event:ColorPickerEvent):void {
        var colorTypeInfo:ColorTransform = new ColorTransform;
        colorTypeInfo.color = event.color;
        myType.transform.colorTransform = colorTypeInfo;
        trace(event.target.hexValue);
    Script 2-works fine in an empty movie, but if I add it to the script above, those elements get hidden..
    import fl.controls.ColorPicker;
    import fl.events.ColorPickerEvent;
    var bg:Sprite = new Sprite();
    bg.graphics.beginFill(0x000000);
    bg.graphics.drawRect(0, 0, stage.stageWidth, stage.stageHeight);
    bg.graphics.endFill();
    addChild(bg);
    var colorPicker:ColorPicker = new ColorPicker();
    colorPicker.addEventListener(ColorPickerEvent.CHANGE, colorPicker_change);
    colorPicker.move(10, 10);
    addChild(colorPicker);
    function colorPicker_change(evt:ColorPickerEvent):void {
        bg.graphics.beginFill(evt.color);
        bg.graphics.drawRect(0, 0, stage.stageWidth, stage.stageHeight);
        bg.graphics.endFill();
    Granted, I they are changing colors differently, but I am not sure how to change the stage color any other way with this component.
    any thoughts out there?
    thanks
    babs

    Thanks kglad!!!
    that did it

  • Is there any color picker component , i tried java script ones with no luck

    Hi
    Thank you for reading my post.
    I tried to use a java script color picker inside my JSC portlet , but it does not works.
    i tried many things , but at least i did not find any solution for it.
    here is color picker that i tried to use :
    http://www.flooble.com/scripts/colorpicker.php?op=get
    http://www.flooble.com/scripts/colorpicker.php
    and also i tried to use this one with no luck . i tried both of them in html files and they works
    http://www.mattkruse.com/javascript/colorpicker/
    can some one with more knowledge about javascript and JSC help me ?

    any comment or advice on this problem ?

  • 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

  • Color picker

    how to use color picker component in flash
    with string declared in actionscript 2.0
    var mystr:String;
    i want to attach "color picker" with "mystr"

    check the documentation for whoever's colorpicker you're using.

  • Color picker problems

    I began having this problem in Leopard, (am now on Lion):  My color picker does not function - at all.  I can retrieve the color inspector, but the dropdown menu of the colors is non-functioning, I cannot select or use the magnifying glass feature.  (Its almost like the whole thing is just frozen, or sits there). 
    I've noticed "NSColorPicker.plist" in connection with this, however, on searching my computer for this, it does not show - wonder if I may have deleted it?)  I've also run the Color Utility twice, doesn't seem to help.
    Any ideas??

    That's the intended behavior (clicking on one of the white squares sets your current color to that color).
    To add a color to the array of colors, drag its icon from the top down onto one of the array of squares. (I'm pretty sure it's always been like this).;-)
    Bonus tip: when the RGB or similar sliders are showing, hold down the Option key and click to the left or right of the slider button to increase or decrease the color in increments of one.
    Hope this helps....

  • Color picker crash Windows DW 5.5

    Hi,
    Dreamweaver CS 5.5 on Windows 7, 64-bit is crashing when I use the System Color Picker. If I choose from the web safe palette, it's fine, but when I click on the color wheel to expand the tool, it freezes every time. I have to restart the program.
    I have uninstalled and re-installed twice. I have deleted my configuration files and site def files. I have no extensions installed and I have installed all udpates.
    I know there's an issue with the color picker on the Mac, but this is on Windows, not on a Mac.
    Any ideas for further troubleshooting?
    Thanks,
    Julie

    Thanks for your reply and great questions.
    I just tried it and it crashes in Design view and Code view when using the CSS Styles panel or the Property Inspector.
    In Code View, when it pops up as part of the autocomplete process when coding, I am able to click on the color wheel without it crashing, choose a color, and choose okay. The dialog box closes, the program does not crash but...the hex code is not added to the code.
    When I replicate this same step in Code View, but choose from the web safe palette, it works fine--doesn't crash and it inserts the hex code correctly. I am also able to successfully use the web safe palette from the styles panel and PI.
    I also discovered the Format > Color command from the  top menu which I've never used in my 12 years of using Dreamweaver. I was able to successfully choose a color and create a CSS rule from that command. (But that's kind of a strange workflow...)
    Thanks,
    Julie

  • Drawbacks to the new CS6 Color Picker?

    What do people think about the new color picker in Fireworks CS6?
    I like the new larger swatches and default palette: a revised "Color Cubes" layout that includes non-web-safe colors and a selection of warm and cool greys/neutrals. I also like the option to view and enter RGB values and to specify transparency (for fill and stroke separately)
    However, one thing I'm missing is the option to change the swatches from within the color picker itself. Previously, it was possible to choose from a standard set of color swatch layouts or the Swatches palette itself, via a small fly-out menu.
    Now, that option is gone. The color picker simply picks up whatever palette is currently loaded into Swatches (except for masks, which still draw from a separate greyscale palette). To load a new palette into the color picker, you need to change the contents of the Swatches palette itself. This means a little less freedom for the user.
    For example, if you've added a few custom swatches into your Swatches palette, but then decide you'd like to switch the color picker layout, you'll lose those custom swatches—unless you go through the extra step of saving them as a palette. Frankly, in Fireworks, I don't even know how to quickly delete a large number of swatches in order to save a custom palette like this. (The only option I'm aware of is to Command-click, which deletes a single swatch at a time; this requires a lot of patience.)
    Another aspect that concerns me is the contextual nature of the Fill color picker. Accessed from the toolbar, a complete a set of fill options are offered, which is very convenient; you can quickly choose between No Fill, Solid Fill, Gradient Fill and Pattern Fill. But this is not the case when you access the Fill color picker from within the Properties Inspector. In particular, the No Fill option is missing, whereas this used to be the place to make this change. Users who to try to set the Fill to None here may wind up inadvertently sampling colors when they try to click on the No Fill option below, while the color picker is still open.
    Thinking about it, there's plenty of room here; I think the No Fill option should be added back in to the color picker within the Properties Inspector—much as it's already included for Stroke.
    Finally, I'm not saying that I used it a lot (I didn't), but I always liked having the Web Dither fill option; it's definitely a unique, textured look that's not commonly available in other applications. It's gone now.
    The thing is, there's room for it. So why take away a feature like this?

    Hi All:
    Apologies for the cross-post, but I felt it important it add my message in this thread as well.
    Just a note regarding the wishform. Your detailed input on that form is important and I really appreicate you taking the time to help make Fireworks a better product. So thank you for filing these bugs/concerns.
    Keep in mind that even though one person may have indicated they filed the bug, you should also file your own bug on the issue if you are experiencing problems. This reporting makes the engineers aware of how prevalent the issue is and helps to prioritize which bugs get addressed first. Yes, I know, in an ideal world, they'd ALL be marked as high priority, but that's seldom the case with anything. Squeeky wheel gets the grease, etc...
    While filing the bug doesn't necessarily mean you will personally hear from the engineering team, this doesn't diminish the importance of using the wishlist/bug reort form. This is a quote from the form itself:
    >>We normally do not send personal replies to feature requests or bug reports. We do, however, read each and every message. We use the information to improve our products and services. Your comments, suggestions, and ideas for improvements are very important to us. We appreciate you taking the time to send us this information.<<
    That said, I'm making an effort to bring these threads to the attention of the FW team, and if I hear anything myself, I'll be sure to let you know.
    HTH

  • With color management, color picker current color does not match canvas color

    What gives here with color picker in CS3?
    RGB doc
    using color management/profiles
    View>>proof color using my Epson RGB printer profile
    create box
    double click fill box in palette box to view color picker
    pick color from spectrum area
    close color picker
    want to change color of box
    double click fill box to view color picker
    NOW current color does not match color on canvas, subtle but vexing color shift. So how can I use current color to pick a new color on the canvas is always different.
    here's an in illustration of the problem:
    http://docs.google.com/Presentation?id=dfv8h494_18gwqbsjg5

    Rob, here's screenshot of Acrobats Output Preview Object Inspector. You can download my PDF here - //www.fileswap.com/dl/Q1CzzOzEqt/
    I'm not sure if CM was assigned to document when created or  afterwards. In Color Settings preferences is stated Fogra 39 (if it matters - document was meanwhile saved and opened...). Are there other options to assign workspace to exsisting document?
    Peter, this is not the case. Placed image has embeded same color profile as is working space of document in ID. I tried the same with sRGB image placed in same ID document and compared it to PS but color shift (greenish) is present - it looks exactly the same.
    Guys, I can't tell you how happy I am to have you help me with this terrible and nerve-wracking problem.

  • How to create a button to launch a color picker

    I have a client how does not like the color picker component.
    Currently I'm trying with no luck to get a button to launch the
    selector portion of the color picker. I tried the following code on
    the buttons on click method -
    Any idea on how I would do this?
    Thanks,
    Jack

    This works.
    <?xml version="1.0"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml">
    <mx:ColorPicker id="clr"/>
    <mx:Button label="Open Color Picker"
    click="clr.open()"/>
    </mx:Application>
    In your case you did not add the CP to the display list:
    private function launchCP(): void {
    var cp:ColorPicker = new ColorPicker();
    cp.addChild(cp);
    cp.open();
    You are better off creating CP adding it to stage, and then
    setting visible and include in layout to false, then set them to
    true and call open when button is clicked.

  • Removing color picker border

    Hi,
             i am using <mx:ColorPicker /> tag for colorpicker.
    colorpicker component displaying with some graycolor border .
    i need to remove border of color picker component . i just need to display selected color only.
    How can i do this.
    Can any help me?
    thanks
    Raghu

    Sorry for wasting your time, I already have an answer (due to double posting - again, sorry).
    For anyone interested, the response can be seen at:
    http://forum.java.sun.com/thread.jspa?messageID=9549034
    Thank-you for looking.

  • Need Simple Color Picker

    Hi all,
    I think my previous question was posted in the wrong place, I need
    simple color picker.
    Perhapes, someone will say, you have to you JColorChooser, I just
    need the switch part as the highlighted part in the figure 1
    figure 1
    http://img125.imageshack.us/img125/3792/color16ml.gif
    So, I want to be as figure 2
    figure 2
    [http://img159.imageshack.us/img159/3968/color29ln.gif                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.table.*;
    public class ColorBox implements ListSelectionListener,
                                     ActionListener
        JTable table;
        public void valueChanged(ListSelectionEvent e)
            if(!e.getValueIsAdjusting())
                int row = table.getSelectedRow();
                int col = table.getSelectedColumn();
                if(row == -1 || col == -1)
                    return;
                Color color = (Color)table.getValueAt(row, col);
                String s = "red = " + color.getRed()     + "    " +
                           "green = " + color.getGreen() + "    " +
                           "blue = " + color.getBlue();
                System.out.println(s);
        public void actionPerformed(ActionEvent e)
            System.out.println(e.getActionCommand());
        private JPanel getNorth()
            JComboBox combo = new JComboBox();
            Dimension d = combo.getPreferredSize();
            d.width = 50;
            combo.setPreferredSize(d);
            JPanel panel = new JPanel(new FlowLayout(FlowLayout.LEFT));
            panel.add(combo);
            return panel;
        private JPanel getCenter()
            int[][] rgbs =
                { -16777216, -6737152,  -13421824, -16764160,
                  -16764058, -16777088, -13421671, -13421773 },
                { -8388608,  -39424,    -8355840,  -16744448,
                  -16744320, -16776961, -10066279, -8355712  },
                { -65536,    -26368,    -6697984,  -13395610,
                  -13382452, -13408513, -8388480,  -6710887  },
                { -65281,    -13312,    -256,      -16711936,
                  -16711681, -16724737, -6737050,  -4144960  },
                { -26164,    -13159,    -103,      -3342388,
                  -3342337,  -6697729,  -3368449,  -1        }
            Object[][] data = new Object[rgbs.length][rgbs[0].length];
            for(int row = 0; row < data.length; row++)
                for(int col = 0; col < data[0].length; col++)
                    data[row][col] = new Color(rgbs[row][col]);
            DefaultTableModel model = new DefaultTableModel(data,
                                               new Object[data[0].length]);
            table = new JTable(model)
                public Class getColumnClass(int col) { return Color.class; }
            table.setPreferredSize(new Dimension(148, 90));
            table.setRowHeight(18);
            table.setBorder(BorderFactory.createEmptyBorder(0,4,0,4));
            table.setBackground(UIManager.getColor("Panel.background"));
            table.setGridColor(table.getBackground());
            table.setDefaultRenderer(Color.class, new ColorBoxRenderer());
            table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
            table.setColumnSelectionAllowed(true);
            table.getSelectionModel().addListSelectionListener(this);
            table.getColumnModel().getSelectionModel().addListSelectionListener(this);
            JPanel panel = new JPanel();
            panel.add(table);
            return panel;
        private JPanel getSouth()
            JButton button = new JButton("More colors...");
            Dimension d = button.getPreferredSize();
            d.width = table.getPreferredSize().width;
            button.setPreferredSize(d);
            button.addActionListener(this);
            JPanel panel = new JPanel();
            panel.add(button);
            return panel;
        public static void main(String[] args)
            ColorBox cb = new ColorBox();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(cb.getNorth(), "North");
            f.getContentPane().add(cb.getCenter());
            f.getContentPane().add(cb.getSouth(), "South");
            f.pack();
            f.setLocation(200,200);
            f.setVisible(true);
            System.out.println(cb.table.getSize());
    class ColorBoxRenderer extends DefaultTableCellRenderer
        public ColorBoxRenderer()
            setOpaque(true);
        public Component getTableCellRendererComponent(JTable table,
                                                       Object value,
                                                       boolean isSelected,
                                                       boolean hasFocus,
                                                       int row, int col)
            if(isSelected)
                setBorder(BorderFactory.createLineBorder(Color.red));
            else
                setBorder(BorderFactory.createLineBorder(Color.lightGray));
            setBackground((Color)value);
            return this;
    }

Maybe you are looking for