HEX to RGB
function hexToRGB ( hex:Number ){ var returnObj:Object = new Object(); var returnObj .r = hex >> 16; var temp = hex ^ r << 16; var returnObj .g = temp >> 8; var returnObj .b = temp ^ g << 8; return returnObj; }
11382 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
eric e. dolecki www.ericd.net
function hexToRGB ( hex:Number ){ var returnObj:Object = new Object(); var returnObj .r = hex >> 16; var temp = hex ^ r << 16; var returnObj .g = temp >> 8; var returnObj .b = temp ^ g << 8; return returnObj; }
function RGBToHex (r, g, b ){ var hex = r << 16 ^ g << 8 ^ b; return hex; }
<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="176"HEIGHT="170" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab"> <PARAM name="SRC" VALUE="http://www.ericd.net/3gpp/1984_launch.3gp"> <PARAM name="AUTOPLAY" VALUE="false"> <param NAME="type" VALUE="video/quicktime"> <PARAM name="CONTROLLER" VALUE="true"> <EMBED SRC="http://www.ericd.net/3gpp/1984_launch.3gp" WIDTH="176" HEIGHT="170" AUTOPLAY="false" CONTROLLER="true" type="video/quicktime"PLUGINSPAGE="http://www.apple.com/quicktime/download/"> </EMBED> </OBJECT>
import mx.events.EventDispatcher; import mx.utils.Delegate; class Emailer { // required for EventDispatcher: public var addEventListener:Function; public var removeEventListener:Function; private var dispatchEvent:Function; // use to communicate with php script private var _lv:LoadVars; // holds address of sender private var _sentFrom:String; // constructor public function Emailer() { EventDispatcher.initialize(this); _lv = new LoadVars(); } // private function dataReceived(dataxfer_ok:Boolean):Void { // if some problem with loadVars transfer, pass back error=2 if (!dataxfer_ok) dispatchEvent({target:this, type:'mailSent', errorFlag:2}); // otherwise pass back error code returned from script else dispatchEvent({target:this, type:'mailSent', errorFlag:Number(_lv["faultCode"])}); } // Use loadvars object to send data (set to call dataReceived when script returns data) public function sendEmail(sub:String, fn:String, fe:String, msg:String, rep:String):Void { // if user already sent from this address, show error msg if (_sentFrom == fe) dataReceived(false); // otherwise set up and send else { _sentFrom = fe; // specify function to handle results, make scope = Emailer _lv.onLoad = Delegate.create(this, dataReceived); // set up properties of lv to items to be POSTed _lv.subject = sub; _lv.name = fn; _lv.email = fe; _lv.message = msg; _lv.reply = rep; // call script _lv.sendAndLoad("sendemail.php", _lv, "POST"); } } }