box-o-sand/src/02-shipping/PlainText.mxml

10 lines
435 B
Plaintext
Raw Normal View History

<mx:Application name=""
xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Label x="54" y="25" text="Zip Code"/>
<mx:Label x="65" y="51" text="Weight"/>
<mx:TextInput x="128" y="23" id="zipcode"/>
<mx:TextInput x="128" y="49" id="weight_lb"/>
<mx:Button x="128" y="79" label="Get Shipping Options"/>
<mx:TextArea x="339" y="24" width="198" height="77" id="shippingOptions"/>
</mx:Application>