What is the difference between MXML and ActionScript3

what's the difference between MXML and ActionScript3 when do we need to use MXML ??

+3
source share
2 answers

MXML is a way to develop and build a flex and Action Script 3 application that uses all the logic.

This is MXML as HTML and ActionScript as Javascript.

+8
source

When you create a flex application, you create and create visual elements using MXML. Its language is XML / HTML, from which you can use the component in such a way as:

<progressbar id='progress_bar' />

when your flex application compiles, this material is converted to ActionScript 3.

MXML. , ActionScript.

+6

Source: https://habr.com/ru/post/1763273/


All Articles