Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: updated hello world example code

...

Code Block
languagexml
titleHello World
<?xml version="1.0" encoding="utf-8"?>
<js:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                xmlns:js="library://ns.apache.org/flexjs/basic" 
                >

    <!-- Initial View --><fx:Style>
        @namespace basic "library://ns.apache.org/flexjs/basic";
    <js:initialView>
    
        .labelStyles {
        <js:ViewBase>    font-weight: bold;
        }
    </fx:Style>

    <!-- Initial View -->
    <js:Container>
initialView>

        <js:ViewBase>
            <js:Label text="Hello World" x="100" y="100"/>
            </js:Container> className="labelStyles" style="background-color: blue"/>
        </js:ViewBase>
        
    </js:initialView>
    
    <js:valuesImpl>
        <js:SimpleCSSValuesImpl />
    </js:valuesImpl>
    
</js:Application>

...