And the part where i'm converting the individual RGB values doesn't let me have a '0' as a first character.
For example:
080F00 results in 8F0
I'm using this function to convert decimal to hexadecimal:
Code: Select all
hex = callJavaStaticMethod("java.lang.Integer", "toHexString(int)", newSubCol);
Code: Select all
concat("0", hex)
Code: Select all
"0" + hex
Working with 'numberformat' and regex also lead to nothing.
Does anyone know? This is just silly.