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

Similar Messages

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

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

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

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

  • 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

  • Finding a component inside jsf fragment using javascript in adf

    Hello all,
    I am using jdeveloper 11.1.1.5.
    I want to find a component inside my jsf frgament using javascript.
    Like inside jspx page I was able to find the component using
    AdfPage.PAGE.findComponentByAbsoluteId("ID");
    Now my requirement is I have a jsf fragment and I want to find component inside jsf frgament using javascript.
    How can I find the component?
    Please suggest
    Thanks
    Edited by: Navin K on Dec 21, 2011 4:24 PM

    Hi all..
    I am using Jdeveloper 11.1.2.1.0
    The code i used is given below. When i run this i always getting the message (ie region not found) in the else case of java script.
    How can i solve this. How can i take the region r1 in the javascript..
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <af:document title="Index.jsf" id="d1">
    <af:messages id="m1"/>
    <af:form id="f1">
    <af:pageTemplate viewId="/AssetTrackingTemplate.jsf" id="pt1">
    <f:facet name="top"/>
    <f:facet name="first">
    <af:panelAccordion id="pa1">
    <af:showDetailItem text="Master Details" id="sdi1">
    <af:spacer width="10" height="10" id="s3"/>
    <af:commandLink text="Home" id="cl8" inlineStyle="font-size:small; font-weight:bold;">
    <af:setActionListener from="/WEB-INF/task-flow-Home.xml#task-flow-Home"
    to="#{pageFlowScope.dynRegionBean.taskFlowId}"/>
    </af:commandLink>
    <af:spacer width="10" height="10" id="s1"/>
    <af:tree value="#{bindings.GenTopMenu1.treeModel}" var="node"
    selectionListener="#{bindings.GenTopMenu1.treeModel.makeCurrent}"
    rowSelection="single" id="t1">
    <f:facet name="nodeStamp">
    <af:group id="g1">
    <af:outputText value="#{node.Description}" id="ot2"
    rendered="#{node.MenuType==1}"/>
    <af:commandLink text="#{node.Description}" id="cl1"
    rendered="#{node.MenuType==2}" partialSubmit="true"
    immediate="false"
    actionListener="#{pageFlowScope.dynRegionBean.launchTaskFlow}">
    <f:attribute name="Definition" value="#{node.Definition}"/>
    </af:commandLink>
    </af:group>
    </f:facet>
    </af:tree>
    </af:showDetailItem>
    </af:panelAccordion>
    </f:facet>
    <f:facet name="middle">
    <af:region value="#{bindings.dynamicRegion1.regionModel}" id="r1"/>
    </f:facet>
    <f:facet name="end"/>
    <f:facet name="copyright">
    <af:outputText value="All Rights Reserved By Innovation ITC" id="ot1"
    inlineStyle="text-align:center; color:inherit;"/>
    </f:facet>
    </af:pageTemplate>
    </af:form>
    <f:facet name="metaContainer">
    <af:resource type="javascript">
    function customHandler(event) {
    var region=AdfPage.PAGE.findComponentByAbsoluteId("r1");
    if(region!=null)
    alert("Region Found");
    var exportCmd = region.findComponent("cb1");
    var actionEvent = new AdfActionEvent(exportCmd);
    actionEvent.forceFullSubmit();
    actionEvent.noResponseExpected();
    actionEvent.queue();
    else {
    alert("Region Not Found")
    </af:resource>
    </f:facet>
    </af:document>
    </f:view>
    Thanks,
    gtg.
    Edited by: gtg on 08-Feb-2012 00:14

  • 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;
    }

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

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

    well, Network UI should be used.

  • Color picker does not work, " program error when I click, photoshop cc

    I am user of photoshiop cc and it worked fine until several days ago but suddenly it shows " program error " when I click color picker, and I can not use changing color. Please help me to resolve this issue.

    There was a bug with photoshop CC concerning the color picker and its swatches. Make sure you have the latest version and then if it still exists, reset your tools in the upper left hand corner which would be the very first icon in the top tool bar. That should fix it. If not let us know and maybe someone can think of something else.

  • Photoshop CC Color Picker slow lag

    Today I got a new Intuos Pro Medium and installed the latest software from Wacom (6.37-5 - I think.)  I am not sure if this is related, but I am experiencing an extreme slow-down / lag when I attempt to use the color picker to change the foreground color.  Basically, when I move the circle, there is a 10-15 second time period where I watch the new color value numbers slowly, one-by-one change to the new values for the newly selected color.  If I move the color circle a couple times, it could be over a minute before the color picker allows me to choose OK and exit the dialogue box.  I tried this on another computer that had CS6, and no problems with the new tablet.  No issues with drawing/ painting very large with the new tablet. 
    Has anyone ever heard of/seen this?  BTW, no problems a week ago.
    Jim
    Specs (I will try to update when I get back to work tomorrow)
    Core-i5 8gb RAM, nVidia GPU, Win7 64-bit
    Photoshop CC 64-bit

    Today I got a new Intuos Pro Medium and installed the latest software from Wacom (6.37-5 - I think.)  I am not sure if this is related, but I am experiencing an extreme slow-down / lag when I attempt to use the color picker to change the foreground color.  Basically, when I move the circle, there is a 10-15 second time period where I watch the new color value numbers slowly, one-by-one change to the new values for the newly selected color.  If I move the color circle a couple times, it could be over a minute before the color picker allows me to choose OK and exit the dialogue box.  I tried this on another computer that had CS6, and no problems with the new tablet.  No issues with drawing/ painting very large with the new tablet. 
    Has anyone ever heard of/seen this?  BTW, no problems a week ago.
    Jim
    Specs (I will try to update when I get back to work tomorrow)
    Core-i5 8gb RAM, nVidia GPU, Win7 64-bit
    Photoshop CC 64-bit

  • Color picker bug in photoshop CC

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

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

Maybe you are looking for

  • Proble with adobe extension manager CC

    OS win7 64 bit and  photoshop CC2014. I installed AEM CC but after boot does not recognize  php cc2014 and so I cant install any exstension. Please could someone help me?

  • RTF Report output shows Duplicate or Missing lines

    Hi, We have a program which prints XML output into the concurrent program output file and the output for this file is set to PDF attached to an RTF template. The RTF output generated should ideally have the output in the following manner Header 1 - L

  • SC Workflow: Runtime Actual Approval determination

    Hi all, I want to know who approved the Shopping Cart (SC) in runtime within the BADI so that comparing his Approval Limit with the cost of SC I can decide whether to skip or go for next approval levels. Please help how to find it out. I have checked

  • Disappearing Icons from Home Screen

    Has anyone else experienced their icons disappearing from their home screen? Then reappear randomly by either pressing the back key or home key.... It's really weird, but it consistently happens with my Handcent SMS app. Anyone else experience that?

  • Perspective Warp missing from the "Edit" dropdown in - Photoshop CC

    Perspective Warp missing from the "Edit" dropdown in - Photoshop CC It's a brand new instal of Photoshop CC and there is no Perspective warp. -Thanks