| 123456789101112131415161718192021222324252627282930313233 |
- /**
- * ...
- * @author Default
- * @version 0.1
- */
- package string {
- public class Utils {
-
- public function Utils() {
-
- }
-
- static public function get_colour( col:String ) : Number
- {
- if( col.substr(0,2) == '0x' )
- return Number(col);
-
- if( col.substr(0,1) == '#' )
- return Number( '0x'+col.substr(1,col.length) );
-
- if( col.length==6 )
- return Number( '0x'+col );
-
- // not recognised as a valid colour, so?
- return Number( col );
-
- }
-
- }
-
- }
|