Featured Post

Xml Module Website Template v1

This is a completely modular flash site . It also offers 9 separate modules, you can add to your own projects using. You can to add the free module just through the xml file. It can also be used alone with the site’s framework, as long as you add the site’s content (each module), a Web site is...

Read More

RGB color channel/seprate and combine

Posted by activetofocus | Posted in Flash Technology | Posted on 18-10-2009

Tags:

0

To seprate the color channels:

  • R = 0xFC3343  >>  16
  • G = (0xFC3343 >> 8 )  &  0xFF
  • B = 0xFC3343  &  0xFF

To combine them:

  • RGB =  (0xFC <<  16) + (0×33  <<  8 )  + 0×43