<?xml version="1.0" encoding="utf-8"?>
<bobjim:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:bit101="com.bit101.components.*"
xmlns:bobjim="com.bobjim.components.*"
xmlns:styles="mx.styles.*">
<fx:Declarations>
<styles:StyleManager/>
</fx:Declarations>
<fx:Style source="styles.css"/>
<bit101:VBox name="checkboxes">
<bit101:CheckBox name="checkbox1" label="Good times?" />
<bit101:CheckBox name="checkbox2" label="Great times?" />
<bit101:CheckBox name="checkbox3" label="Super times?" />
<bit101:PushButton label="Push Me" />
</bit101:VBox>
<bit101:ColorChooser name="color1" x="100" y="10" value="#ff0000" usePopup="true" />
<bit101:ColorChooser name="color2" x="100" y="110" value="#ff0000" usePopup="true" popupAlign="top" />
<bit101:HBox x="100" y="40">
<bit101:Label text="Enter Name:" width="100" />
<bit101:InputText id="input" />
<bit101:Label text="{ input.text }" />
</bit101:HBox>
</bobjim:Application>