SlideShare uma empresa Scribd logo
1 de 40
Baixar para ler offline
Thema: Flex Development Guideline

  SFUG Talk vom 17. März 2009

         von Florian Weil
Who I am...


       Personal Information
   ➲
           Florian Weil
       ●
           from Germany (close to Frankfurt am Main)
       ●
           26 years old
       ●
           Loves the mountains and the snow, yeah
       ●


       Professional Information
   ➲
           Bachelor of Computer Science in Media
       ●
           Worked as a banker, Camera Operator Assistent,
       ●
           Filmmaker, Flash Lite and Interaction Developer
           Now: Flex Developer for the LIIP AG
       ●

       My website & blog: www.derhess.de
   ➲
Why Flex? Why...




Source:
http://www.flickr.com/photos/dave_apple/ http://www.flickr.com/photos/adenocorticotropina/ http://www.flickr.com/photos/a_of_doom/
Generally

      Motivation:
  ➲
          Flash Development != Flex Development
      ●
          Flex is not really easy!!
      ●
          Have a look at:
      ●
              http://www.neatfilm.com/2008/01/20/flex-challenges-for-flash-ide-devleopers/
          ●
              http://jessewarden.com/2008/01/when-you-hit-a-design-brick-wall-in-flex.html
          ●


      Objectives
  ➲
          Give some hints for Learning Flex
      ●
          Understand the Basics of Flex
      ●


      The presentation is not diving in
  ➲
          Design Patterns, Software Architecture
      ●
          Software Development Methods
      ●
          Interaction Design, Usability...
      ●
Topics

       Choose the right Layout Management
   ➲
           Absolute Layout (pixelbased)
       ●
           Dynamic Layout (percentage based)
       ●


       Custom Component Development
   ➲
           Which kind of component
       ●
           State Management
       ●
           Skinning
       ●
           Metatags (Events, Embedded, Skinning)
       ●
           Child Management (Template Component)
       ●


       Working with Data
   ➲
           ArrayCollection vs. Array
       ●
           Bindable ValueObjects and Functions
       ●
           Filter and Sort API
       ●
           DataProvider -> ICollection...
       ●
Topics


       Choose the right Layout Management
   ➲
           Pixelbased Layout
       ●
           Dynamicbased Layout
       ●
           Forms (Validator and Error Management)
       ●
       Custom Component Development
   ➲
           Which kind of component
       ●
               MXML based Component
           ●
               AS Based ( Flex Framework Methods)
           ●
           State Management
       ●
               Property Manager Functions
           ●
               Transitions Management
           ●
           Skinning
       ●
               Degrafa... / setStyle() Perfomance hungry
           ●
           Metatags (Events, Embedded, Skinning)
       ●
Flex Layout Management




         Source: http://www.flickr.com/photos/svensonsan/
Absolute Layout


      For pixelbased Layout use the
  ➲
      CANVAS Component

      For a dynamic layout, e.g. the
  ➲
      constraints are your friends

       Why:
  ➲
      ● working with absolute values
      ● No active Layout Management
Dynamic Layout
Dynamic based Layout


     Use Components like Hbox, Vbox etc. for
 ➲
     relativ (percentage) values

     use these Components carefully
 ➲


      What can you do:
 ➲
     ● For paddings or align issues use the space
       component
Forms Layout


      For all bigger User Input Screens use the
  ➲
      Form Component

      Why:
  ➲
          Easy and automatic Layout (FormItems)
      ●
          Error Handling Functionality
      ●
          Skinning/Render Functionality (Tooltips, required Fields)
      ●
Custom Components




   Source: http://www.flickr.com/photos/bikeman04/
Architecture of a visual
 Component

    Invalidation / validation Model
➲
        Aggregate changes and execute them to the right time
    ●




    Event-driven Interaction Model
➲


    Composition
➲
        Parameterization of a component (Component in a
    ●
        component)
        Factories and item renderer
    ●
Life Cycle of a visual
 Component

      3 Phases:
  ➲


      1. Initialization
  ➲
           Creating Components, attach to displaylist etc.
       ●


      2. Updating
  ➲
           Components has to react on the changes of the invalid/validation
       ●
           Modell

      3. Destruction
  ➲
           Remove Eventlisteners (!)
       ●
           Null Objects
       ●
           Garbage Collection
       ●
Life Cycle Part 2

     The most important life cycle Functions
 ➲
         override protected function createChildren()
     ●
         override protected function commitProperties()
     ●
         override protected function measure():void
     ●
         override protected function
     ●
         updateDisplayList(unscaledWidth:Number,
         unscaledHeight:Number):void

     Tip:
 ➲
         Extend your AS Component Class from the UIComponent
     ●
         Use and understand(!) the Flex Interface API
     ●


     More Information
 ➲
         http://livedocs.adobe.com/flex/3/html/ascomponents_advanced
     ●
         http://iamdeepa.com/blog/?p=39
     ●
Which kind of component


   MXML vs. ActionScript




         Source: http://www.flickr.com/photos/dan4th/
Which kind of component

     MXML based Component
 ➲
         When the Component is not very complex
     ●
         The component could easily created by the standard
     ●
         Flex Component Set
         For creating a View or template class
     ●


     ActionScript based Component
 ➲
         If you have to create some new (data-driven, interaction,
     ●
         skinning) logics
         If the component very complex, so you have to use the
     ●
         MVC Pattern or some similiar stuff
         Perfomance issues...
     ●


     Special case: Item Renderer...
 ➲
State Management

    Attributes states and currentState are your
➲
    friends ;-)



    Defining changes with the Classes / MXML Tag
➲
        SetProperty
    ●
        SetEventHandler
    ●
        AddChild
    ●
        RemoveChild
    ●
State Management


     Never implement an own state Management!!!
 ➲




     Why use Flex States:
 ➲
         Preview workflow in Flex Builder
     ●
         CurrentState code completion
     ●
         Flex Transition API
     ●
Child Management




            Source: http://www.flickr.com/photos/kydd/
Example: Imagebar


      Requirements:
  ➲
          Headline
      ●
          dynamic numbers of pages (ToggleButtonBar)
      ●
          Filter Interface (Checkboxes)
      ●
          Container for visible childrens
      ●
          Thumbs (Childrens)
      ●
Child Management


     Array or ArrayCollection
 ➲
         For easy Child Management without a complex
     ●
         Rendering
         Would be better for data instances
     ●


     Repeater Component
 ➲
         For few or many instance of the same component
     ●
         Dynamic Dataprovider
     ●


     ListComponent
 ➲
         Rendering Manager for many instances
     ●
         Dynamic DataProvider
     ●
Repeater vs.
   ListComponent

               Repeater                          ListComponent
Rendering      add and renders all Items         Renders only the visible Items
DataProvider ArrayCollection                     ArrayCollection, XMLList
RenderItem     normal Component                  ItemRenderer
Customize Data public attributes                 data Getter/setter API
Use Case       All childrens should be visible   RangeBased Rendering


More Information about ItemRenderes:
  http://www.adobe.com/devnet/flex/articles/itemrenderers_pt1.html

More Information about Repeater in ActionScript 3:
  http://blog.flexexamples.com/2008/05/28/displaying-radiobutton-con
Skinning


     Changes the visual experience of a Flex
 ➲
     application


      How to Skin
 ➲
     ● Use the skinning attributes via MXML
     ● Use <mx:Style> Tag
          Type the style definition in the component
      ●
          Include a .css file per source Attribute
      ●
          Runtime Loading via SWF File
      ●
Graphical Skinning


     Pixel Based
 ➲
         Tools: Fireworks and Photoshop
     ●
         Embed .png, .jpg or gif Files
     ●
         Use Scale9-Grid Concept
     ●
         Knowledge Base: http://www.scalenine.com/gallery/
     ●


     Vector Based
 ➲
         Tools: Illustrator and Flash
     ●
         Embed: SWF and SWC Files
     ●
         Use Scale9-Grid Concept
     ●
         Tutorial:
     ●
         http://developer.yahoo.com/flash/articles/flex-skinning.html
         Flex component kit for Flash , Illustrator, Photoshop and
     ●
         Fireworks
Programmatic Skinning


     Programmatic Skinning for ActionScript based
 ➲
     renderings
         Use subclasses of Border, RectangularBorder,
     ●
         ProgrammaticSkin or the interfaces
         Tutorial for Programmatic Skinning
     ●
         www.degrafa.org is a nice Skinning Library
     ●


     Controlling the skinning functions
 ➲
         Use the component functions setStyle() and getStyle()
     ●
         StyleManager Class is able to change the complete
     ●
         Graphical Experience of an application
         Method setStyle() is perfomance hungry
     ●
Metatags...

      The most important Tags
 ➲
     ● Bindable
             [Bindable] or [Bindable(event=quot;eventnamequot;)]
         ●
             Compiler adds EventListeners
         ●


         Event
     ●
             [Event(name=quot;enableChangedquot;, type=quot;flash.events.Eventquot;)]
         ●
             For a well code completion and documentation
         ●


         Embedded
     ●
             [Embed(source=quot;logo.gifquot;)]
         ●
             Importing graphics and other external data
         ●
             Compiling external data into the swf
         ●


     Many more Metatags
 ➲
         http://livedocs.adobe.com/flex/3/html/metadata_3.html
     ●
Working with data




        Source: http://www.flickr.com/photos/blude/
Array vs. ArrayCollection

     Array
 ➲
         Is native data typ
     ●
         Bindable: No
     ●
         API: very limited
     ●
         Sorting: limited on one compare Function
     ●
         Filtering: limited on one callback Function
     ●


     ArrayCollection
 ➲
         Is a wrapper class for arrays
     ●
         Creation of ArrayCollection costs a lot of perfomance
     ●
         compared to a creation of an array
         Bindable: yes and very compatible to flex template
     ●
         components (e.g. ListBox)
         Flex Sorting API
     ●
Sort API
      Sort API ()
 ➲
         Sort Class
     ●
         SortField Class
     ●
         Add the stuff to an ArrayCollection
     ●


     var dataSortField:SortField = new SortField();
     dataSortField.name = quot;dataquot;;
     dataSortField.numeric = true;

     // Create the Sort object and add the SortField object
     var numericDataSort:Sort = new Sort();
     numericDataSort.fields = [dataSortField];

     // Set the ArrayCollection object's sort property to our custom sort
     arrColl.sort = numericDataSort;
     arrColl.refresh();

     http://blog.flexexamples.com/2007/08/05/sorting-an-arrayc
Binding

     Binding looks for changes in a data structure and
 ➲
     informs all listeners to this changes


     Binding Properties
 ➲
         Binding Datatypes
     ●
         Binding Classes, especially ValueObject Classe
     ●
         [Bindable] public var property:DataType;
     ●


     Binding Functions (eventbased)
 ➲
         [Bindable(event=quot;eventnamequot;)] public function
     ●
         myFunction():DataType
         Needs always a dispatchEvent(new Event(„eventname“)); call
     ●
Binding Part 2

     Use carefully the Binding Functionality!
 ➲


     Binding can cost a lot of Perfomance
 ➲
         Because of a lot of listeners and dispatch Events
     ●
         Needless datatransfers and rendering updates
     ●




     Tools for better Binding Control
 ➲


     (Advanced) Binding Functions
 ➲
         MXML Tags Binding
     ●
         BindingUtils Class
     ●
         BindingWatchers Class
     ●
Custom Collection


     MXML Model
 ➲
         A data model for an MVC Architecture
     ●
         The Model component and an XML File could be
     ●
         directly combined
         It is bindable
     ●


     For Real Custom Data Structure
 ➲
         implements the Interface ICollectionView
     ●
         extends the base class ListCollectionView
     ●
Dynamic Data Handling


     HTTP Service Component
 ➲
         Use the Events to work with the data
     ●
         Tutorial: Loading a XML File
     ●
         Tutorial: Read and Send Variables to a Server
     ●


     WSDL-Webservice Component
 ➲
         Tutorial: Calling simple Web Service
     ●
Flex Learning Links


     Introduction
➲
    ● Inside RIA: Flex Introduction Serie
    ● http://www.adobe.com/devnet/flex/videotraining/
    ● Flex Explorer


     Deeper Flex Framework understanding
➲
    ● Costum Components
    ● Data Binding


     Ressources & article overview:
➲
    ● http://www.scalenine.com → Skinning
    ● http://blog.flexexamples.com/tags/
    ● http://derhess.de/weblog_detail.php?id=58
Flex Books

       Start & Concepts of Flex 3
  ➲
      ● Adobe Press: Training from the Source
      ● O´Reilly: Flex 3
      ● Friends of Ed: Advanced Flex 3


       Daily Development
  ➲
      ● O´Reilly: Flex 3 Cookbook
      ● Friends of Ed: Flex Solutions
      ● Addison-Wesley: Creating Visual Experiences


       Software Development
  ➲
      ● Head First: Software Development
      ● Head First: Design Patterns
      ● Addison-Wesley: Elements of Reusable Object-Oriented
        Software
Flex Tools & Libs

     Flex IDE PlugIns
➲
    ● Subversion
    ● CodeSnippet
    ● Task Explorer


     Libraries
➲
    ● FlexLib: http://code.google.com/p/flexlib/
    ● Flex.org: http://flex.org/de/software/components
    ● Application Frameworks: PureMVC, Cairngorm
    ● Degrafa: http://degrafa.org/
    ● Test-Driven-Development: fluint, flexUnit
The End




          Source: http://www.flickr.com/photos/moogan/
The End




          QUESTIONS?
The End Part 2




            Thanks :-)

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

jQuery and Rails: Best Friends Forever
jQuery and Rails: Best Friends ForeverjQuery and Rails: Best Friends Forever
jQuery and Rails: Best Friends Forever
 
Fast mobile web apps
Fast mobile web appsFast mobile web apps
Fast mobile web apps
 
WPF (Windows Presentation Foundation Unit 01)
WPF (Windows Presentation Foundation Unit 01)WPF (Windows Presentation Foundation Unit 01)
WPF (Windows Presentation Foundation Unit 01)
 
Developing maintainable Cordova applications
Developing maintainable Cordova applicationsDeveloping maintainable Cordova applications
Developing maintainable Cordova applications
 
jQuery and AJAX with Rails
jQuery and AJAX with RailsjQuery and AJAX with Rails
jQuery and AJAX with Rails
 
[2015/2016] Backbone JS
[2015/2016] Backbone JS[2015/2016] Backbone JS
[2015/2016] Backbone JS
 
From Back to Front: Rails To React Family
From Back to Front: Rails To React FamilyFrom Back to Front: Rails To React Family
From Back to Front: Rails To React Family
 
AngularJS Workshop
AngularJS WorkshopAngularJS Workshop
AngularJS Workshop
 
Wicket 2010
Wicket 2010Wicket 2010
Wicket 2010
 
Catching-up web technologies - an endless story
Catching-up web technologies - an endless storyCatching-up web technologies - an endless story
Catching-up web technologies - an endless story
 
WPF Fundamentals
WPF FundamentalsWPF Fundamentals
WPF Fundamentals
 
Wpf Introduction
Wpf IntroductionWpf Introduction
Wpf Introduction
 
Html5 CSS3 jQuery Basic
Html5 CSS3 jQuery BasicHtml5 CSS3 jQuery Basic
Html5 CSS3 jQuery Basic
 
Workshop 16: EmberJS Parte I
Workshop 16: EmberJS Parte IWorkshop 16: EmberJS Parte I
Workshop 16: EmberJS Parte I
 
HTML5 and the dawn of rich mobile web applications
HTML5 and the dawn of rich mobile web applicationsHTML5 and the dawn of rich mobile web applications
HTML5 and the dawn of rich mobile web applications
 
ADF Worst Practices (UKOUG Tech2013)
ADF Worst Practices (UKOUG Tech2013)ADF Worst Practices (UKOUG Tech2013)
ADF Worst Practices (UKOUG Tech2013)
 
MVC Demystified: Essence of Ruby on Rails
MVC Demystified: Essence of Ruby on RailsMVC Demystified: Essence of Ruby on Rails
MVC Demystified: Essence of Ruby on Rails
 
WPF - An introduction
WPF - An introductionWPF - An introduction
WPF - An introduction
 
How to Build ToDo App with Vue 3 + TypeScript
How to Build ToDo App with Vue 3 + TypeScriptHow to Build ToDo App with Vue 3 + TypeScript
How to Build ToDo App with Vue 3 + TypeScript
 
Introduction to html5
Introduction to html5Introduction to html5
Introduction to html5
 

Destaque

Trabajo de organizacion y sistemas
Trabajo de organizacion y sistemasTrabajo de organizacion y sistemas
Trabajo de organizacion y sistemas
jobsmuel
 
Driving the Future of Smart Cities - How to Beat the Traffic
Driving the Future of Smart Cities - How to Beat the TrafficDriving the Future of Smart Cities - How to Beat the Traffic
Driving the Future of Smart Cities - How to Beat the Traffic
VMware Tanzu
 

Destaque (20)

Examen de informatica
Examen de informaticaExamen de informatica
Examen de informatica
 
ใบงาน แบบสำรวจและประวัติ
ใบงาน แบบสำรวจและประวัติใบงาน แบบสำรวจและประวัติ
ใบงาน แบบสำรวจและประวัติ
 
ใบงาน แบบสำรวจและประวัติ
ใบงาน แบบสำรวจและประวัติใบงาน แบบสำรวจและประวัติ
ใบงาน แบบสำรวจและประวัติ
 
Trabajo de organizacion y sistemas
Trabajo de organizacion y sistemasTrabajo de organizacion y sistemas
Trabajo de organizacion y sistemas
 
Human Plant Interfaces - Lecture
Human Plant Interfaces - LectureHuman Plant Interfaces - Lecture
Human Plant Interfaces - Lecture
 
bpma cert 1
bpma cert 1bpma cert 1
bpma cert 1
 
Gathering Alternative Surface Forms for DBpedia Entities
Gathering Alternative Surface Forms for DBpedia EntitiesGathering Alternative Surface Forms for DBpedia Entities
Gathering Alternative Surface Forms for DBpedia Entities
 
Artistic Research on Human Plant Interfaces by Florian Weil
Artistic Research on Human Plant Interfaces by Florian WeilArtistic Research on Human Plant Interfaces by Florian Weil
Artistic Research on Human Plant Interfaces by Florian Weil
 
CHI 2013: Facebook Limiting, Leaving, and (re)Lapsing
CHI 2013: Facebook Limiting, Leaving, and (re)LapsingCHI 2013: Facebook Limiting, Leaving, and (re)Lapsing
CHI 2013: Facebook Limiting, Leaving, and (re)Lapsing
 
Designing for Privacy in Mobile and Web Apps - Interaction '14, Amsterdam
Designing for Privacy in Mobile and Web Apps - Interaction '14, AmsterdamDesigning for Privacy in Mobile and Web Apps - Interaction '14, Amsterdam
Designing for Privacy in Mobile and Web Apps - Interaction '14, Amsterdam
 
Maintainable CSS
Maintainable CSSMaintainable CSS
Maintainable CSS
 
Learning To Love Forms (Web Directions South '07)
Learning To Love Forms (Web Directions South '07)Learning To Love Forms (Web Directions South '07)
Learning To Love Forms (Web Directions South '07)
 
Demand Media
Demand MediaDemand Media
Demand Media
 
Open Standards in the Walled Garden
Open Standards in the Walled GardenOpen Standards in the Walled Garden
Open Standards in the Walled Garden
 
Hoppala at O'Reilly Where 2.0 Conference
Hoppala at O'Reilly Where 2.0 ConferenceHoppala at O'Reilly Where 2.0 Conference
Hoppala at O'Reilly Where 2.0 Conference
 
Kevin Kelly
Kevin KellyKevin Kelly
Kevin Kelly
 
Menoovr
Menoovr Menoovr
Menoovr
 
Putting Your UIs In Motion On The Web (Animation & UX)
Putting Your UIs In Motion On The Web (Animation & UX)Putting Your UIs In Motion On The Web (Animation & UX)
Putting Your UIs In Motion On The Web (Animation & UX)
 
Driving the Future of Smart Cities - How to Beat the Traffic
Driving the Future of Smart Cities - How to Beat the TrafficDriving the Future of Smart Cities - How to Beat the Traffic
Driving the Future of Smart Cities - How to Beat the Traffic
 
Terry Jones TOC 2011 slides
Terry Jones TOC 2011 slidesTerry Jones TOC 2011 slides
Terry Jones TOC 2011 slides
 

Semelhante a Moving from AS3 to Flex - advantages, hazards, traps

Web app and more
Web app and moreWeb app and more
Web app and more
faming su
 
Rp 6 session 2 naresh bhatia
Rp 6  session 2 naresh bhatiaRp 6  session 2 naresh bhatia
Rp 6 session 2 naresh bhatia
sapientindia
 

Semelhante a Moving from AS3 to Flex - advantages, hazards, traps (20)

WebGL: GPU acceleration for the open web
WebGL: GPU acceleration for the open webWebGL: GPU acceleration for the open web
WebGL: GPU acceleration for the open web
 
Building AOL's High Performance, Enterprise Wide Mail Application With Silver...
Building AOL's High Performance, Enterprise Wide Mail Application With Silver...Building AOL's High Performance, Enterprise Wide Mail Application With Silver...
Building AOL's High Performance, Enterprise Wide Mail Application With Silver...
 
Fly High With Angular - How to build an app using Angular
Fly High With Angular - How to build an app using AngularFly High With Angular - How to build an app using Angular
Fly High With Angular - How to build an app using Angular
 
Os Haase
Os HaaseOs Haase
Os Haase
 
JSUG - Filthy Flex by Christoph Pickl
JSUG - Filthy Flex by Christoph PicklJSUG - Filthy Flex by Christoph Pickl
JSUG - Filthy Flex by Christoph Pickl
 
Lightning web components - Introduction, component Lifecycle, Events, decorat...
Lightning web components - Introduction, component Lifecycle, Events, decorat...Lightning web components - Introduction, component Lifecycle, Events, decorat...
Lightning web components - Introduction, component Lifecycle, Events, decorat...
 
Silverlight 2 For Developers
Silverlight 2 For DevelopersSilverlight 2 For Developers
Silverlight 2 For Developers
 
Web Apps and more
Web Apps and moreWeb Apps and more
Web Apps and more
 
Web app and more
Web app and moreWeb app and more
Web app and more
 
IPhone Web Development With Grails from CodeMash 2009
IPhone Web Development With Grails from CodeMash 2009IPhone Web Development With Grails from CodeMash 2009
IPhone Web Development With Grails from CodeMash 2009
 
Test
TestTest
Test
 
Gatsby (Code.Talks) 2019
Gatsby (Code.Talks) 2019Gatsby (Code.Talks) 2019
Gatsby (Code.Talks) 2019
 
Responsive Websites and Grid-Based Layouts by Gabriel Walt
Responsive Websites and Grid-Based Layouts by Gabriel Walt Responsive Websites and Grid-Based Layouts by Gabriel Walt
Responsive Websites and Grid-Based Layouts by Gabriel Walt
 
Rp 6 session 2 naresh bhatia
Rp 6  session 2 naresh bhatiaRp 6  session 2 naresh bhatia
Rp 6 session 2 naresh bhatia
 
Asp.Net Mvc Dev Days09
Asp.Net Mvc Dev Days09Asp.Net Mvc Dev Days09
Asp.Net Mvc Dev Days09
 
CIRCUIT 2015 - Responsive Websites & Grid-Based Layouts
CIRCUIT 2015 - Responsive Websites & Grid-Based LayoutsCIRCUIT 2015 - Responsive Websites & Grid-Based Layouts
CIRCUIT 2015 - Responsive Websites & Grid-Based Layouts
 
AEM responsive
AEM responsiveAEM responsive
AEM responsive
 
React october2017
React october2017React october2017
React october2017
 
Angular - Chapter 4 - Data and Event Handling
 Angular - Chapter 4 - Data and Event Handling Angular - Chapter 4 - Data and Event Handling
Angular - Chapter 4 - Data and Event Handling
 
Leveraging the Power of Custom Elements in Gutenberg
Leveraging the Power of Custom Elements in GutenbergLeveraging the Power of Custom Elements in Gutenberg
Leveraging the Power of Custom Elements in Gutenberg
 

Mais de Florian Weil

Mais de Florian Weil (7)

Multi(Touch) Gesture Research
Multi(Touch) Gesture ResearchMulti(Touch) Gesture Research
Multi(Touch) Gesture Research
 
Hermits in our digital Age
Hermits in our digital AgeHermits in our digital Age
Hermits in our digital Age
 
Sense Ware Examples from Germany and Switzerland
Sense Ware Examples from Germany and SwitzerlandSense Ware Examples from Germany and Switzerland
Sense Ware Examples from Germany and Switzerland
 
Senseware in the Germany Culture
Senseware in the Germany CultureSenseware in the Germany Culture
Senseware in the Germany Culture
 
What did derhess.de before Liip
What did derhess.de before LiipWhat did derhess.de before Liip
What did derhess.de before Liip
 
Liip Techtalk Flash Lite
Liip Techtalk Flash LiteLiip Techtalk Flash Lite
Liip Techtalk Flash Lite
 
Liip Techtalk Ars Electronica 2008
Liip Techtalk Ars Electronica 2008Liip Techtalk Ars Electronica 2008
Liip Techtalk Ars Electronica 2008
 

Último

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
Enterprise Knowledge
 

Último (20)

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 

Moving from AS3 to Flex - advantages, hazards, traps

  • 1. Thema: Flex Development Guideline SFUG Talk vom 17. März 2009 von Florian Weil
  • 2. Who I am... Personal Information ➲ Florian Weil ● from Germany (close to Frankfurt am Main) ● 26 years old ● Loves the mountains and the snow, yeah ● Professional Information ➲ Bachelor of Computer Science in Media ● Worked as a banker, Camera Operator Assistent, ● Filmmaker, Flash Lite and Interaction Developer Now: Flex Developer for the LIIP AG ● My website & blog: www.derhess.de ➲
  • 3. Why Flex? Why... Source: http://www.flickr.com/photos/dave_apple/ http://www.flickr.com/photos/adenocorticotropina/ http://www.flickr.com/photos/a_of_doom/
  • 4. Generally Motivation: ➲ Flash Development != Flex Development ● Flex is not really easy!! ● Have a look at: ● http://www.neatfilm.com/2008/01/20/flex-challenges-for-flash-ide-devleopers/ ● http://jessewarden.com/2008/01/when-you-hit-a-design-brick-wall-in-flex.html ● Objectives ➲ Give some hints for Learning Flex ● Understand the Basics of Flex ● The presentation is not diving in ➲ Design Patterns, Software Architecture ● Software Development Methods ● Interaction Design, Usability... ●
  • 5. Topics Choose the right Layout Management ➲ Absolute Layout (pixelbased) ● Dynamic Layout (percentage based) ● Custom Component Development ➲ Which kind of component ● State Management ● Skinning ● Metatags (Events, Embedded, Skinning) ● Child Management (Template Component) ● Working with Data ➲ ArrayCollection vs. Array ● Bindable ValueObjects and Functions ● Filter and Sort API ● DataProvider -> ICollection... ●
  • 6. Topics Choose the right Layout Management ➲ Pixelbased Layout ● Dynamicbased Layout ● Forms (Validator and Error Management) ● Custom Component Development ➲ Which kind of component ● MXML based Component ● AS Based ( Flex Framework Methods) ● State Management ● Property Manager Functions ● Transitions Management ● Skinning ● Degrafa... / setStyle() Perfomance hungry ● Metatags (Events, Embedded, Skinning) ●
  • 7. Flex Layout Management Source: http://www.flickr.com/photos/svensonsan/
  • 8. Absolute Layout For pixelbased Layout use the ➲ CANVAS Component For a dynamic layout, e.g. the ➲ constraints are your friends Why: ➲ ● working with absolute values ● No active Layout Management
  • 10. Dynamic based Layout Use Components like Hbox, Vbox etc. for ➲ relativ (percentage) values use these Components carefully ➲ What can you do: ➲ ● For paddings or align issues use the space component
  • 11. Forms Layout For all bigger User Input Screens use the ➲ Form Component Why: ➲ Easy and automatic Layout (FormItems) ● Error Handling Functionality ● Skinning/Render Functionality (Tooltips, required Fields) ●
  • 12. Custom Components Source: http://www.flickr.com/photos/bikeman04/
  • 13. Architecture of a visual Component Invalidation / validation Model ➲ Aggregate changes and execute them to the right time ● Event-driven Interaction Model ➲ Composition ➲ Parameterization of a component (Component in a ● component) Factories and item renderer ●
  • 14. Life Cycle of a visual Component 3 Phases: ➲ 1. Initialization ➲ Creating Components, attach to displaylist etc. ● 2. Updating ➲ Components has to react on the changes of the invalid/validation ● Modell 3. Destruction ➲ Remove Eventlisteners (!) ● Null Objects ● Garbage Collection ●
  • 15. Life Cycle Part 2 The most important life cycle Functions ➲ override protected function createChildren() ● override protected function commitProperties() ● override protected function measure():void ● override protected function ● updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void Tip: ➲ Extend your AS Component Class from the UIComponent ● Use and understand(!) the Flex Interface API ● More Information ➲ http://livedocs.adobe.com/flex/3/html/ascomponents_advanced ● http://iamdeepa.com/blog/?p=39 ●
  • 16. Which kind of component MXML vs. ActionScript Source: http://www.flickr.com/photos/dan4th/
  • 17. Which kind of component MXML based Component ➲ When the Component is not very complex ● The component could easily created by the standard ● Flex Component Set For creating a View or template class ● ActionScript based Component ➲ If you have to create some new (data-driven, interaction, ● skinning) logics If the component very complex, so you have to use the ● MVC Pattern or some similiar stuff Perfomance issues... ● Special case: Item Renderer... ➲
  • 18. State Management Attributes states and currentState are your ➲ friends ;-) Defining changes with the Classes / MXML Tag ➲ SetProperty ● SetEventHandler ● AddChild ● RemoveChild ●
  • 19. State Management Never implement an own state Management!!! ➲ Why use Flex States: ➲ Preview workflow in Flex Builder ● CurrentState code completion ● Flex Transition API ●
  • 20. Child Management Source: http://www.flickr.com/photos/kydd/
  • 21. Example: Imagebar Requirements: ➲ Headline ● dynamic numbers of pages (ToggleButtonBar) ● Filter Interface (Checkboxes) ● Container for visible childrens ● Thumbs (Childrens) ●
  • 22. Child Management Array or ArrayCollection ➲ For easy Child Management without a complex ● Rendering Would be better for data instances ● Repeater Component ➲ For few or many instance of the same component ● Dynamic Dataprovider ● ListComponent ➲ Rendering Manager for many instances ● Dynamic DataProvider ●
  • 23. Repeater vs. ListComponent Repeater ListComponent Rendering add and renders all Items Renders only the visible Items DataProvider ArrayCollection ArrayCollection, XMLList RenderItem normal Component ItemRenderer Customize Data public attributes data Getter/setter API Use Case All childrens should be visible RangeBased Rendering More Information about ItemRenderes: http://www.adobe.com/devnet/flex/articles/itemrenderers_pt1.html More Information about Repeater in ActionScript 3: http://blog.flexexamples.com/2008/05/28/displaying-radiobutton-con
  • 24. Skinning Changes the visual experience of a Flex ➲ application How to Skin ➲ ● Use the skinning attributes via MXML ● Use <mx:Style> Tag Type the style definition in the component ● Include a .css file per source Attribute ● Runtime Loading via SWF File ●
  • 25. Graphical Skinning Pixel Based ➲ Tools: Fireworks and Photoshop ● Embed .png, .jpg or gif Files ● Use Scale9-Grid Concept ● Knowledge Base: http://www.scalenine.com/gallery/ ● Vector Based ➲ Tools: Illustrator and Flash ● Embed: SWF and SWC Files ● Use Scale9-Grid Concept ● Tutorial: ● http://developer.yahoo.com/flash/articles/flex-skinning.html Flex component kit for Flash , Illustrator, Photoshop and ● Fireworks
  • 26. Programmatic Skinning Programmatic Skinning for ActionScript based ➲ renderings Use subclasses of Border, RectangularBorder, ● ProgrammaticSkin or the interfaces Tutorial for Programmatic Skinning ● www.degrafa.org is a nice Skinning Library ● Controlling the skinning functions ➲ Use the component functions setStyle() and getStyle() ● StyleManager Class is able to change the complete ● Graphical Experience of an application Method setStyle() is perfomance hungry ●
  • 27. Metatags... The most important Tags ➲ ● Bindable [Bindable] or [Bindable(event=quot;eventnamequot;)] ● Compiler adds EventListeners ● Event ● [Event(name=quot;enableChangedquot;, type=quot;flash.events.Eventquot;)] ● For a well code completion and documentation ● Embedded ● [Embed(source=quot;logo.gifquot;)] ● Importing graphics and other external data ● Compiling external data into the swf ● Many more Metatags ➲ http://livedocs.adobe.com/flex/3/html/metadata_3.html ●
  • 28. Working with data Source: http://www.flickr.com/photos/blude/
  • 29. Array vs. ArrayCollection Array ➲ Is native data typ ● Bindable: No ● API: very limited ● Sorting: limited on one compare Function ● Filtering: limited on one callback Function ● ArrayCollection ➲ Is a wrapper class for arrays ● Creation of ArrayCollection costs a lot of perfomance ● compared to a creation of an array Bindable: yes and very compatible to flex template ● components (e.g. ListBox) Flex Sorting API ●
  • 30. Sort API Sort API () ➲ Sort Class ● SortField Class ● Add the stuff to an ArrayCollection ● var dataSortField:SortField = new SortField(); dataSortField.name = quot;dataquot;; dataSortField.numeric = true; // Create the Sort object and add the SortField object var numericDataSort:Sort = new Sort(); numericDataSort.fields = [dataSortField]; // Set the ArrayCollection object's sort property to our custom sort arrColl.sort = numericDataSort; arrColl.refresh(); http://blog.flexexamples.com/2007/08/05/sorting-an-arrayc
  • 31. Binding Binding looks for changes in a data structure and ➲ informs all listeners to this changes Binding Properties ➲ Binding Datatypes ● Binding Classes, especially ValueObject Classe ● [Bindable] public var property:DataType; ● Binding Functions (eventbased) ➲ [Bindable(event=quot;eventnamequot;)] public function ● myFunction():DataType Needs always a dispatchEvent(new Event(„eventname“)); call ●
  • 32. Binding Part 2 Use carefully the Binding Functionality! ➲ Binding can cost a lot of Perfomance ➲ Because of a lot of listeners and dispatch Events ● Needless datatransfers and rendering updates ● Tools for better Binding Control ➲ (Advanced) Binding Functions ➲ MXML Tags Binding ● BindingUtils Class ● BindingWatchers Class ●
  • 33. Custom Collection MXML Model ➲ A data model for an MVC Architecture ● The Model component and an XML File could be ● directly combined It is bindable ● For Real Custom Data Structure ➲ implements the Interface ICollectionView ● extends the base class ListCollectionView ●
  • 34. Dynamic Data Handling HTTP Service Component ➲ Use the Events to work with the data ● Tutorial: Loading a XML File ● Tutorial: Read and Send Variables to a Server ● WSDL-Webservice Component ➲ Tutorial: Calling simple Web Service ●
  • 35. Flex Learning Links Introduction ➲ ● Inside RIA: Flex Introduction Serie ● http://www.adobe.com/devnet/flex/videotraining/ ● Flex Explorer Deeper Flex Framework understanding ➲ ● Costum Components ● Data Binding Ressources & article overview: ➲ ● http://www.scalenine.com → Skinning ● http://blog.flexexamples.com/tags/ ● http://derhess.de/weblog_detail.php?id=58
  • 36. Flex Books Start & Concepts of Flex 3 ➲ ● Adobe Press: Training from the Source ● O´Reilly: Flex 3 ● Friends of Ed: Advanced Flex 3 Daily Development ➲ ● O´Reilly: Flex 3 Cookbook ● Friends of Ed: Flex Solutions ● Addison-Wesley: Creating Visual Experiences Software Development ➲ ● Head First: Software Development ● Head First: Design Patterns ● Addison-Wesley: Elements of Reusable Object-Oriented Software
  • 37. Flex Tools & Libs Flex IDE PlugIns ➲ ● Subversion ● CodeSnippet ● Task Explorer Libraries ➲ ● FlexLib: http://code.google.com/p/flexlib/ ● Flex.org: http://flex.org/de/software/components ● Application Frameworks: PureMVC, Cairngorm ● Degrafa: http://degrafa.org/ ● Test-Driven-Development: fluint, flexUnit
  • 38. The End Source: http://www.flickr.com/photos/moogan/
  • 39. The End QUESTIONS?
  • 40. The End Part 2 Thanks :-)