Articles Comments

Flex Certification » Flex Tutorials

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

Simple Flex 4 Tutorial

Flex 4 is out. For the folks who are starting on flex 4 here is a simple flex 4 tutorial to get a quick start.  1. XML and Application declaration <?xml version=”1.0″ encoding=”utf-8″?> <s:Application xmlns:fx=”http://ns.adobe.com/mxml/2009″         xmlns:s=”library://ns.adobe.com/flex/spark”         xmlns:mx=”library://ns.adobe.com/flex/mx” minWidth=”955″ minHeight=”600″         creationComplete=”send_data()”> 2. Define your Continue Reading

Read entire article »

Filed under: Flex Tutorials

Adobe Flex Video Tutorials

Learn to use Adobe Flex 4 and Flash Builder 4 in a week by stepping through this video training course.

Prerequisite knowledge:

  • Basic programming concepts, processes, and constructs
  • XML, HTML, and CSS

To get started:

  1. Watch a short overview video (6:21) to learn what to expect from this training.
  2. Download and Continue Reading

Read entire article »

Filed under: Flex Tutorials

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

Top Picks For Flex tutorials & books

Read entire article »

Filed under: Flex Books, Flex Tutorials