Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Create a new Flex Project
  2. Choose this modified Apache Flex SDK
  3. Do not change the output folder from bin-debug
  4. Flash Builder will generate a totally messed up Application tag so replace it with this template:
Code Block

<?xml version="1.0" encoding="utf-8"?>

...


<basic:Application xmlns:fx="http://ns.adobe.com/mxml/2009"

...


                   xmlns:basic="library://ns.apache.org/flexjs/basic"

...

 
                   >
</basic:Application>

Source Code

Right now, Application doesn’t contain any UI, it takes another MXML file as the initialView property and a model and a controller. You can reference the example in FlexJSSDKTest.

...