This content has been marked as final.
Show 3 replies
-
1. Re: Flex 3: ColorPicker Customization
Vikram_S Dec 4, 2012 8:57 PM (in response to Ofer Bar)Hello,
I am not sure if this works with 3.6, but in my 4.0 I have done like this.
- Add style (.css) to your project.
- Create PNG files as you want to show that color picker.
- Add follwing code to css file
.pickerSkin{
up-skin: Embed(source='assets/icons/color-normal.png');
down-skin: Embed(source='assets/icons/color-down.png');
disabled-skin: Embed(source='assets/icons/color-disable.png');
over-skin: Embed(source='assets/icons/color-over.png');
}
finaly add pickerSkin style name to that color picker.
I am not sure you can reduce that space.
Thanks,
Vikram
-
2. Re: Flex 3: ColorPicker Customization
Vikram_S Dec 4, 2012 8:59 PM (in response to Vikram_S)Make sure that some image part should be transparent to show the selected color.
-
3. Re: Flex 3: ColorPicker Customization
Ofer Bar Dec 4, 2012 10:50 PM (in response to Vikram_S)Thank you very much Vikram!
I will try that and post back about the results.
Ofer


