filling in first mxml file for exercise 02

This commit is contained in:
Dan Buch 2010-02-17 22:50:30 -05:00
parent 102d2b87f0
commit c6acc925a0
2 changed files with 21 additions and 0 deletions

12
src/02-shipping/Makefile Normal file
View File

@ -0,0 +1,12 @@
MXMLC ?= mxmlc
all: PlainText.swf
PlainText.swf: PlainText.mxml
$(MXMLC) PlainText.mxml
clean:
rm -f *.swf

View File

@ -0,0 +1,9 @@
<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>