Color Picker Pro
|
|
|
|
| FlashStore rating: |
|
| User rating: |
Not rated yet.
|
| Date: |
15-08-06 |
| Submited by: |
jumpeye |
| Skill: |
beginner |
| Price: |
$ 18.50 |
|
|
| |
About |
Built by Jumpeye Creative Media Inc., Color Picker Pro v1 is a professional Macromedia FLASH component that can be used along with your flash movies. Color Picker Pro v1 is designed exclusive for FLASH 8 and Flash MX2004. Color Picker Pro is a great tool and extremely useful.
From the properties panel you can choose the color to begin with, and the visible state of the Color Picker Pro panel.
The tool's skin design is very modern and streamlines to integrate into any existing website design. The best feature of color Picker Pro is the ease of functionality.
» Features
1. Advanced color gradient panel. (choose from millions of colors)
2. Luminosity slider.
3. 16 preseted colors.
4. Last used colors memory.
5. Red, Green, and Blue adjustments and inputs.
6. Hue, Saturation, and Brightness adjustments and inputs.
7. Hex code input/output.
8. onOk, onCopy, onCancel, onLoad, onChange and onClose events.
9. Retrieve all color properties from component, in flat numbers (0-255) or hexa code alternatively.
10. Friendly and Professional look.
11. Preset for the starting color.
12. Self dragging function.
13. Switch between Pro (advanced but larger) and Easy (smaller) versions.
Please NOTE that the color picker pro is NOT fully customizable. To get a fully cutomizable version which is also sold as source code, (fully cutomizable for 0) you need to contact us.
|
UI Access |
| Components panel under Color Picker Pro V1 category |
Support address |
|
|
Useful links |
|
Code samples |
1. Drag & Drop component to stage.
2. Name the component's instance in order to link it in your code.
3.From the parameters panel of the component set the preseted color, visible state and the type of the outline(verision) that you want to show: easy, pro, easypro(easy with pro button that allows to enlarge the color picker in runtime)
4. Using a listener, retreive onOk, onChange, onClose and onCopy events, as follows:
5. Use the .open(red,green,blue) and .close() in order to open the component(with preseted color) or to close it:
Example:
cp.open(255,0,0)
cp.close()
In order to use .open(r,g,b) function properly you need that the Color Picker Component to be completly initialized, so listen to the onLoad event too, call the .open(r,g,b) action after the onLoad is fired. The .open() function has priority over the default color (opened with default parameters) only if the visible state is turn off (false), else the default presetted color will load first.
» Code Samples
Code Example:
listener = new Object();
cp.addListener(listener);
listener.onChange = function(message) {
hexacode=message;
color0xFormat="0x"+message.substr(1);
red=cp.red; // (0-255)
green=cp.green; // (0-255)
blue=cp.blue; // (0-255)
saturation=cp.saturation; // (0-100)
brightness = cp.brightnes; // (0-100)
hue = cp.hue; // (0-360)
hexacode =cp.hexa; // (#992288)
}
// The same code may be used for onCopy, onClose, onOk events too.
// You may also retreive color parameters anytime in your code without adding any listeners at all. You can use. for example, onEnterFrame event.
|
|
|
|
|
|