Flex

From air
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Flex est devenu en quelques années un canevas fort apprécié pour la conception de Rich Internet Applications (RIA).

Description

wikipedia


MXML

langage déclarative des interfaces (syntaxe XML)

<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">


 <s:Panel>
  <s:Label text="Enter your phone number:" />
  <s:TextInput id="phoneInput"/>
  <s:Button label="Call" click="call(phoneInput);"/>
 </s:Panel>

 <mx:PhoneNumberValidator 
    source="{phoneInput}"
    property="text"
    allowedFormatChars="()- .+" 
    invalidCharError="Your telephone number contains invalid characters."
    minDigits="{10}"
    wrongLengthError="Your telephone number must contain at least 10 digits."/>

</s:Application>

wikipedia

ActionScript

langage de script (syntaxe ECMAScript)

package fr.imag.air.sample.flex{
  public class MyPhone interface IPhone {
    public function MyPhone () {
    }
    public function call(String number): String {
    }
  }
}

wikipedia

Data Centric

Remote (Procedure) Calls

Web Services

WebServices avec Flex

RESTFul Services

Action Message Format (v3)

binary format used to serialize ActionScript objects (Optimizes exchanged data amount)

Modularité

Chaine de compilation

.mxml + .as -- compilation --> .swf -- ??? --> .exe

Déploiement

  • .swf embarqué dans une WAR

Outils

Editeurs

Compilateurs

Communication



References et Liens

Liens