This is an automated email from the ASF dual-hosted git repository. aharui pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-docs.git
commit ef82fb23495829f93fe9e850423641d0945307cb Author: Alex Harui <[email protected]> AuthorDate: Sun Jan 28 22:43:35 2018 -0800 initial content for main app file --- create-an-application/application-tutorial/main.md | 24 +++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/create-an-application/application-tutorial/main.md b/create-an-application/application-tutorial/main.md index 1391e88..842d3c7 100644 --- a/create-an-application/application-tutorial/main.md +++ b/create-an-application/application-tutorial/main.md @@ -15,9 +15,27 @@ # limitations under the License. layout: docpage -title: Application configuration +title: The main application file --- -# Application configuration +# The main application file + +This application uses an MXML file as its main file. + +The file starts with: + +``` +<js:Application xmlns:fx="http://ns.adobe.com/mxml/2009" + xmlns:local="*" + xmlns:js="library://ns.apache.org/royale/express" + > +``` + +The line: + +``` + xmlns:js="library://ns.apache.org/royale/express" +``` + +means that the "js" prefix is mapped to the Express set of components. The Express set is designed for rapid prototyping and proofs-of-concepts and is not optimized for size and performance. Applications built with the Express components can still be deployed in production environments if the size and performance is acceptable, which it often is. -*This information will be available soon.* -- To stop receiving notification emails like this one, please contact [email protected].
