Welcome to Ananth's Blog!

Flex workshop at Adobe, Bangalore

Print the article

This entry was posted on 4/13/2007 10:54 AM and is filed under FLEX,Web 2.0,RIA.

We (The Flex team from Adobe Bangalore) did a 1 day Flex in-depth workshop to key customers. The presentations covered several core topics like Flex Overview, Flex Datagrid, Drag and drop, Item renderers, Event Model, Data management, MVC/Caingorm etc. Apart from formal presentation, the workshop included demos and explained code snippets.

I made a presentation on Event Model of Flex and basics of Data providers in Flex. I enjoyed speaking to a knowledgeable audience and we had an enjoyable interactive session.
Click here to download the slides on Flex Event model and Data Providers

 

What did you think of this article?




Trackbacks
Trackback specific URL for this entry
  • No trackbacks exist for this entry.
Comments

    • 12/16/2007 8:15 AM Phil G wrote:
      Your PowerPoint on Events was good.
      However, you only had one page on
      "Passing additional parameters to event handler" I have not seen anything on this elsewhere. Do you know of any more info on this. I could not understand from your example how to actually add parameters. A larger example would be great.
      thanks
      Phil
      Reply to this
      1. 12/19/2007 1:34 PM Anantharaman Narayana wrote:

        Hi Phil

        Here is an example of calling an event handler with multiple arguments

        P.N. Anantharaman

        <?xml version="1.0" encoding="utf-8"?>

        <!--

        This is an example to illustrate calling event handlers with several arguments

        Author: P.N. Anantharaman

        Date: 19 Dec 2007

        -->

        <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">

        <mx:Script>

        <![CDATA[

        private function showMessage(e:Event, t:TextInput, lab:Label):void

        {

        lab.text = t.text;

        }

        ]]>

        </mx:Script>

        <mx:Label x="59" y="37" text="Enter your name" width="111" fontSize="12"/>

        <mx:TextInput x="178" y="37" width="231" id="t1" fontSize="12"/>

        <mx:Label x="59" y="91" text="Label" width="350" id="lab1"/>

        <mx:Button x="344" y="143" label="Show Message" click="showMessage(event, t1, lab1);"/>

        </mx:Application>


        Reply to this
    Leave a comment

    Submitted comments will be subject to moderation before being displayed.

     Enter the above security code (required)

     Name

     Email (will not be published)

     Website

    Your comment is 0 characters limited to 3000 characters.