<?xml version="1.0" encoding="utf-8"?>
<ApplicationBase xmlns="*" xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:view="com.example.view.*">
    <mx:Script>
        <![CDATA[
            import com.example.MainTextfieldChangeEvent;
        ]]>
    </mx:Script>
    <mx:HBox
        height="100%"
        width="100%">
        <view:ExampleCanvas
            width="33%"
            height="100%"
            backgroundColor="green">
        </view:ExampleCanvas>
        <view:ExampleCanvas
            width="33%"
            height="100%"
            backgroundColor="red">
        </view:ExampleCanvas>
        <view:ExampleCanvas
            width="33%"
            height="100%"
            backgroundColor="blue">
        </view:ExampleCanvas>
    </mx:HBox>
    <mx:Panel
        verticalCenter="0" horizontalCenter="0"
        >
        <mx:TextInput id="theInput"
            change="{dispatchEvent(new MainTextfieldChangeEvent(theInput.text, true))}"
            />
    </mx:Panel>
</ApplicationBase>