When I type in a color code (AARRGGBB) into a text field I need to update a component with the color represented by the string (which is formatted to AARRGGBB). I divide it into 4 substrings and there I get to a halt.
I need to have the RR string to a float value so after all the process I should create a color like:
Color c = new Color(floatA, floatR, floatG, floatB);
Any suggestion is welcome as long as in the end I will have the color.
might work.