Adobe Flex is a software development kit released by Adobe Systems for the development and deployment of cross-platform rich Internet applications based on the Adobe Flash platform. Flex applications can be written using Adobe Flex Builder or by using the freely available Flex compiler from Adobe.
/** * Flex Share on facebook - quick & easy way **/ public function ShareOnFacebook(shareUrl:String):void { var openUrl:String = "http://www.facebook.com/sharer.php?u="+shareUrl; navigateToURL(new URLRequest(openUrl), '_blank'); }