forked from: flash on 2010-6-4

by propg forked from flash on 2010-6-4 (diff: 8)
♥0 | Line 24 | Modified 2015-01-06 16:19:41 | MIT License
play

ActionScript3 source code

/**
 * Copyright propg ( http://wonderfl.net/user/propg )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/myPA
 */

<?xml version="1.0" encoding="utf-8"?>
<!-- forked from kihon's flash on 2010-6-4 -->
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
               xmlns:s="library://ns.adobe.com/flex/spark" 
               xmlns:mx="library://ns.adobe.com/flex/mx">
    <s:layout>
        <s:VerticalLayout/>
    </s:layout>
    
    <mx:TabNavigator width="200" height="200" tabWidth="100">
        <s:NavigatorContent label="AA">
            <s:Button label="buttonAA" />
        </s:NavigatorContent>
        <s:NavigatorContent label="BB">
            <s:Button label="buttonBB" />
        </s:NavigatorContent>
        <s:NavigatorContent label="CC">
            <s:Button label="buttonCC" />
        </s:NavigatorContent>
        <s:NavigatorContent label="DD">
            <s:Button label="buttonDD" />
        </s:NavigatorContent>
    </mx:TabNavigator>
    
    <s:TextInput text="abccde" borderColor="#d2691e"/>
</s:Application>