Articles Comments

Flex Certification » Flex Examples

Html And Rich Text Utility functions for Flex.

{ //Common utility functions public class HtmlAndRichTextUtil { public static function parseToHtml(rteString:String):String{ var t:RteHtmlParser = new RteHtmlParser(); t.ParseToHTML(rteString); return t.StringFormat; } public static function parseToRichText(htmlString:String):String{ var t:RteHtmlParser = new RteHtmlParser(); t.ParseToRTE(htmlString); return t.StringFormat; //return convertFromXHtml(htmlString); } //Alternate approach to parseToHtml public static function cleanHTML(str:String):String { Continue Reading

Read entire article »

Filed under: Flex Examples

XMLSearch

XMLSearch.as { public class XmlSearch { public function XmlSearch(xml:XMLList) { if(xml != null) { this.xmlTree = xml; } } public function findNode(lbl:String) : void { this.foundNode = false; resultStr = null; if(xmlTree != null) { for each(var xml:XML in xmlTree) { find(xml, lbl); if(foundNode == Continue Reading

Read entire article »

Filed under: Flex Examples

How financial services customers are benefiting from Adobe solutions

http://www.adobe.com/financial/customers.html Find out how financial services customers are benefiting from Adobe solutions in the following customer success stories. Also see the financial services Site of the Day winners and check out the Customer Showcase. As financial services organizations seek new ways to acquire and retain customers, the Continue Reading

Read entire article »

Filed under: Flex Examples

Adobe Flex ShowCase – Examples

Flex is a developer toolkit for building exceptional rich Internet applications on the Flash platform. The HighLights
  1. Efficient Programming Model
  2. Developer Tools
  3. Server Integration
  4. Runtime Consistency
  5. Plentiful Components
  6. Outstanding Performance
To get interested in a newer technology you always need to see what is possible with it. Following are the links to Continue Reading

Read entire article »

Filed under: Flex Examples

Adding Version number to ContextMenu in flex.

build info > assets/buildInfo.txt
//Embed a text file that is autogenerated by the build process //it contains the revsion number of the project from subversion [Embed("assets/buildInfo.txt", mimeType="application/octet-stream")] private static const buildInfoText: Class;
 
/** * add the version number from the subversion generated file * to the context Continue Reading

Read entire article »

Filed under: Flex Examples

Flex Examples

Here is a great site listing the flex examples. I will be looking for more flex examples and list them hereon this page. http://blog.flexexamples.com/ Few examples are:

Read entire article »

Filed under: Flex Examples

Custom PopUp and Modal Dialog in Flex

<?xml version="1.0" encoding="utf-8"?>
<mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml" title="My Dialog" showCloseButton="true" close="closeDialog(event)">
   <mx:Script>
       <![CDATA[
          import mx.managers.PopUpManager;
          import mx.events.CloseEvent;

          private function closeDialog(event : CloseEvent) : void {
             PopUpManager.removePopUp(this); // close this dialog
          }
       ]]>
   </mx:Script>
   <mx:VBox>
      <mx:TextInput id="input" />
      <mx:Button label="OK" click="closeDialog(null)"/>
   </mx:VBox>
</mx:TitleWindow>
 
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> Continue Reading

Read entire article »

Filed under: Flex Examples