/ Published in: ActionScript 3
A simple utility class that will help you convert a color value (from numbers) to hexadecimal color value.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
package com.vamapaull.utils { public class ColorToHexadecimal { public static function convertToHexString(number:Number):String { var hexColor:String = number.toString(16); while(hexColor.length < 6) hexColor = "0" + hexColor; return hexColor; } } }
URL: http://vamapaull.com/color-value-to-hexadecimal/