Matt
You can use Variable -> Variable Convert to change each value from decimal to hex, then combine the RGB values in hex one after the other to get the entire hex color.Matt
Variable Set %Color to %Red * 256^2 + %Green * 256 + %Blue (with do math checked), then convert %Color to hex so you only have to check if a zero needs to be added once. I suppose you could even add an additional + 256^3 so you'd always have a 1 in the 7th digit place and then use Variable Section to only take the last 6 numbers (places 1-6).
Matt