From d76652d16f10ee81dda1dd1f07548c55fe7e2bae Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sun, 21 Feb 2010 16:33:51 -0500 Subject: [PATCH] mostly busted custom version of 03d4 --- custom-03d4-tilelist/TileListExample.mxml | 25 +++++---------- custom-03d4-tilelist/tilelist.css | 39 +++++++++++++++++++++++ targets.mk | 4 +++ 3 files changed, 51 insertions(+), 17 deletions(-) create mode 100644 custom-03d4-tilelist/tilelist.css diff --git a/custom-03d4-tilelist/TileListExample.mxml b/custom-03d4-tilelist/TileListExample.mxml index c374398..91cfb1b 100644 --- a/custom-03d4-tilelist/TileListExample.mxml +++ b/custom-03d4-tilelist/TileListExample.mxml @@ -1,10 +1,7 @@ + styleName="basic-app" xmlns:loc="*"> + - + - + - - + - + diff --git a/custom-03d4-tilelist/tilelist.css b/custom-03d4-tilelist/tilelist.css new file mode 100644 index 0000000..82ed8e9 --- /dev/null +++ b/custom-03d4-tilelist/tilelist.css @@ -0,0 +1,39 @@ +.basic-app { + backgroundColor: #ffffff; + backgroundAlpha: 0; + horizontalAlign: left; + verticalGap: 15; + horizontalGap: 15; +} + +.basic-style-list { + width: 600; + height: 200; + paddingTop: 25; + left: 5; +} + + +.basic-form-item { + direction: horizontal; +} + + +.basic-vbox { + width: 125; + height: 125; + paddingRight: 5; + paddingLeft: 5; + horizontalAlign: center; +} + + +.basic-image { + height: 75; + width: 75; +} + + +.basic-text { + paddingTop: 20; +} diff --git a/targets.mk b/targets.mk index 6e241c9..657ffc6 100644 --- a/targets.mk +++ b/targets.mk @@ -147,3 +147,7 @@ custom-03d3-lists/ListControl.swf: custom-03d3-lists/ListControl.mxml custom-03d $(MXMLC) custom-03d3-lists/ListControl.mxml -warnings -l+=custom-03d3-lists -output custom-03d3-lists/ListControl.swf +custom-03d4-tilelist/TileListExample.swf: custom-03d4-tilelist/TileListExample.mxml custom-03d4-tilelist/tilelist.css custom-03d4-tilelist/TileListApp.as + $(MXMLC) custom-03d4-tilelist/TileListExample.mxml -warnings -l+=custom-03d4-tilelist -output custom-03d4-tilelist/TileListExample.swf + +