what is format color? #66cc00
how can i convert a RGB format-color to this one?
Color format
Re: Color format
Code: Select all
;RGBA(102, 204, 0, 128)) = #66cc00 ,80h
Red=102
Green=204
Blue=0
Alpha=128
Color = RGBA(Red, Green, Blue, Alpha)
Debug Color
Re: Color format
I don't get yet!
i need ColorRequester() output convert to that format really.
i am not pro in coding .
i need ColorRequester() output convert to that format really.
i am not pro in coding .

Re: Color format
It's the same! Just output it using:
Code: Select all
Red=102
Green=204
Blue=0
Color = RGB(Red, Green, Blue)
Debug Color
Debug "#" + RSet(Hex(Color, #PB_Long), 6, "0")
If any of you native English speakers have any suggestions for the above text, please let me know (via PM). Thanks!
Re: Color format
Thanks, exactly .
in your example Alpha=128 always (default)?
can i set my alpha myself if need that?

in your example Alpha=128 always (default)?
can i set my alpha myself if need that?