vote up 0 vote down star

is there a conversion function for color values between "#FFFFFF" <-> 0xFFFFFF

I like to read a value from String and convert it to hex number

flag

76% accept rate
I don't know action script, but can't you just replace the "#" with "0x"? – Dominic Rodger Mar 3 at 10:31

2 Answers

vote up 3 vote down check

Replace # with either 0x or empty string and do a ParseInt("FFFFFF", 16)? Remember that #FFF is valid and equal to #FFFFFF.

link|flag
vote up 0 vote down

If you are using the flex compiler you can use the mx.styles.StyleManager to convert named colours (such as the format #xxxxxx or even common names like red) to a uint.

API Reference

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.