filling in first mxml file for exercise 02
This commit is contained in:
parent
102d2b87f0
commit
c6acc925a0
12
src/02-shipping/Makefile
Normal file
12
src/02-shipping/Makefile
Normal file
@ -0,0 +1,12 @@
|
||||
MXMLC ?= mxmlc
|
||||
|
||||
|
||||
all: PlainText.swf
|
||||
|
||||
|
||||
PlainText.swf: PlainText.mxml
|
||||
$(MXMLC) PlainText.mxml
|
||||
|
||||
|
||||
clean:
|
||||
rm -f *.swf
|
9
src/02-shipping/PlainText.mxml
Normal file
9
src/02-shipping/PlainText.mxml
Normal 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>
|
Loading…
Reference in New Issue
Block a user