Difference between revisions of "Flex"

From air
Jump to navigation Jump to search
(Created page with "Flex est devenu en quelques années un canevas RIA fort apprécié. MXML ActionScript ==Outils== ==Liens== * Building complex and modular RIAs with OSGi and Flex http:…")
 
Line 4: Line 4:
   
 
MXML
 
MXML
  +
  +
<pre>
  +
<s:Applicationxmlns: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:Labeltext="Label" />
  +
<s:Buttonlabel="Button" />
  +
</s:Panel>
  +
</s:Application>
  +
</pre>
  +
  +
   
   

Revision as of 18:30, 22 February 2011

Flex est devenu en quelques années un canevas RIA fort apprécié.


MXML

<s:Applicationxmlns: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:Labeltext="Label" />
<s:Buttonlabel="Button" />
</s:Panel>
</s:Application>



ActionScript



Outils

Liens