You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2014/08/09 10:19:24 UTC

[1/6] git commit: [flex-utilities] [refs/heads/develop] - update read me with changes

Repository: flex-utilities
Updated Branches:
  refs/heads/develop 94bd082db -> 1ff24b487


update read me with changes


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/cec3c1e3
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/cec3c1e3
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/cec3c1e3

Branch: refs/heads/develop
Commit: cec3c1e3f4f71b5f74f98482398f92f910cb009e
Parents: 94bd082
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Aug 9 18:14:29 2014 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Aug 9 18:14:29 2014 +1000

----------------------------------------------------------------------
 TourDeFlex/TourDeFlex3/README | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/cec3c1e3/TourDeFlex/TourDeFlex3/README
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/README b/TourDeFlex/TourDeFlex3/README
index 7129350..dda46cc 100644
--- a/TourDeFlex/TourDeFlex3/README
+++ b/TourDeFlex/TourDeFlex3/README
@@ -36,16 +36,21 @@ Initial Setup Required
 How to build the installer using ANT (no IDE is required)
 ==========================================================================================
 
-1.  Un tar/gzip the source distribution:
-	    tar -zxvf ApacheFlex-TourDeFlex-ComponentExplorer-1.0.tar.gz
+1.  On Linux or Mac un tar/gzip the source distribution:
+	    tar -zxvf apache-flex-tour-de-flex-component-explorer-1.0.tar.gz
+	Or if on windows unzip 
+		apache-flex-tour-de-flex-component-explorer-1.0.zip
 
-2.  In the base, run:
+2.  In the base directory, run:
         ant compile
         
 3. To optionally create a release source package, run:
  		ant package
 
-4. Open explorer.html in your browser of choice.
+4. Open explorer.html in your browser of choice. 
+
+Note Some browsers (such as Chrome) may not be able to view local content without further
+configuration.
 
 5. To remove all of the compiled swfs:
  		ant clean


[2/6] git commit: [flex-utilities] [refs/heads/develop] - break mx and spark into different targets + get example to build

Posted by jm...@apache.org.
break mx and spark into different targets + get example to build


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/15a3dd22
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/15a3dd22
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/15a3dd22

Branch: refs/heads/develop
Commit: 15a3dd22249aafa2c7b770f51b2cee5d5ec1b06c
Parents: cec3c1e
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Aug 9 18:15:43 2014 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Aug 9 18:15:43 2014 +1000

----------------------------------------------------------------------
 TourDeFlex/TourDeFlex3/build.xml | 32 ++++++++++++++++++--------------
 1 file changed, 18 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/15a3dd22/TourDeFlex/TourDeFlex3/build.xml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/build.xml b/TourDeFlex/TourDeFlex3/build.xml
index 3a4b2a4..1218623 100644
--- a/TourDeFlex/TourDeFlex3/build.xml
+++ b/TourDeFlex/TourDeFlex3/build.xml
@@ -48,8 +48,16 @@
 		</sequential>
 	</macrodef>	
 		
-	<target name="compile" depends="clean">
-		<!-- MX component examples -->
+	<target name="compile" depends="compile-shell,compile-mx,compile-spark">
+	</target>
+	
+	<target name="compile-shell">
+		<compile-mxml example="/explorer"/>
+		<compile-mxml example="/loaderPanel"/>
+		<compile-mxml example="/SourceTab"/>
+	</target>
+	
+	<target name="compile-mx">
 		<compile-mxml example="/mx/charts/BubbleChartExample"/>
 		<compile-mxml example="/mx/charts/CandlestickChartExample"/>
 		<compile-mxml example="/mx/charts/Column_BarChartExample"/>
@@ -175,8 +183,9 @@
 		<compile-mxml example="/mx/validators/SocialSecurityValidatorExample"/>
 		<compile-mxml example="/mx/validators/StringValidatorExample"/>
 		<compile-mxml example="/mx/validators/ZipCodeValidatorExample"/>
+	</target>
 		
-		<!-- Spark examples -->
+	<target name="compile-spark">
 		<compile-mxml example="/spark/controls/AccordionExample"/>
 		<compile-mxml example="/spark/controls/AdvancedDatagridExample"/>
 		<compile-mxml example="/spark/controls/ColorPickerExample"/>
@@ -194,7 +203,7 @@
 		<compile-mxml example="/spark/controls/OLAPDataGridExample"/>
 		<compile-mxml example="/spark/controls/PopupButtonExample"/>
 		<compile-mxml example="/spark/controls/ProgressBarExample"/>
-		<compile-mxml example="/spark/controls/SWFLoaderExample"/>
+		<!-- Currently broken <compile-mxml example="/spark/controls/SWFLoaderExample"/> -->
 		<compile-mxml example="/spark/controls/TitleWindowExample"/>
 		<compile-mxml example="/spark/controls/ToggleButtonBarExample"/>
 		<compile-mxml example="/spark/controls/ToolTipExample"/>
@@ -219,7 +228,7 @@
 		<compile-mxml example="/spark/itemRenderers/ItemRenderer2Example"/>
 		
 		<compile-mxml example="/spark/fxg/BitmapImageExample"/>
-		<compile-mxml example="/spark/fxg/ElipseExample"/>
+		<compile-mxml example="/spark/fxg/EclipseExample"/>
 		<compile-mxml example="/spark/fxg/LineExample"/>
 		<compile-mxml example="/spark/fxg/RectExample"/>
 		<compile-mxml example="/spark/fxg/RichTextExample"/>
@@ -242,7 +251,7 @@
 		<compile-mxml example="/spark/charts/LineChartExample"/>
 		<compile-mxml example="/spark/charts/PieChartExample"/>
 		<compile-mxml example="/spark/charts/PlotChartExample"/>
-		<compile-mxml example="/spark/charts/SeriesIterplatetExample"/>
+		<compile-mxml example="/spark/charts/SeriesInterpolateExample"/>
 		<compile-mxml example="/spark/charts/SeriesSlideExample"/>
 		<compile-mxml example="/spark/charts/SeriesZoomExample"/>
 			
@@ -250,7 +259,7 @@
 		<compile-mxml example="/spark/components/VideoPlayerExample"/>
 		
 		<compile-mxml example="/spark/validators/CreditCardValidatorExample"/>
-		<compile-mxml example="/spark/validators/CurrancyValidatorExample"/>
+		<compile-mxml example="/spark/validators/CurrencyValidatorExample"/>
 		<compile-mxml example="/spark/validators/DateValidatorExample"/>
 		<compile-mxml example="/spark/validators/EmailValidatorExample"/>
 		<compile-mxml example="/spark/validators/NumberValidatorExample"/>
@@ -260,7 +269,7 @@
 		<compile-mxml example="/spark/validators/FormValidatorExample"/>
 		<compile-mxml example="/spark/validators/ZipCodeValidatorExample"/>
 		
-		<compile-mxml example="/spark/formatters/CurrancyFormatterExample"/>
+		<compile-mxml example="/spark/formatters/CurrencyFormatterExample"/>
 		<compile-mxml example="/spark/formatters/DateFormatterExample"/>
 		<compile-mxml example="/spark/formatters/NumberFormatterExample"/>
 		<compile-mxml example="/spark/formatters/PhoneFormatterExample"/>
@@ -287,13 +296,8 @@
 		<compile-mxml example="/spark/modules/Module2"/>
 		
 		<compile-mxml example="/spark/tlf/TextLayoutEditorSample"/>
-
-		<!-- Explorer shell -->
-		<compile-mxml example="/explorer"/>
-		<compile-mxml example="/loaderPanel"/>
-		<compile-mxml example="/SourceTab"/>
 	</target>
-	
+		
 	<target name="package" description="package up all source files" depends="package-dir,package-tar,package-zip">
 	</target>
 	


[3/6] git commit: [flex-utilities] [refs/heads/develop] - fix a few minor issues

Posted by jm...@apache.org.
fix a few minor issues


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/40af2ab6
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/40af2ab6
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/40af2ab6

Branch: refs/heads/develop
Commit: 40af2ab6a516fb971c7c0b80a72e01277fad3b1b
Parents: 15a3dd2
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Aug 9 18:16:11 2014 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Aug 9 18:16:11 2014 +1000

----------------------------------------------------------------------
 TourDeFlex/TourDeFlex3/src/explorer.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/40af2ab6/TourDeFlex/TourDeFlex3/src/explorer.xml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/explorer.xml b/TourDeFlex/TourDeFlex3/src/explorer.xml
index f5cb1d2..a1f0115 100755
--- a/TourDeFlex/TourDeFlex3/src/explorer.xml
+++ b/TourDeFlex/TourDeFlex3/src/explorer.xml
@@ -317,11 +317,11 @@
 				<node label="BubbleChart" app="spark/charts/BubbleChartExample" />
 				<node label="CandleStickChart" app="spark/charts/CandleStickChartExample" />
 				<node label="ColumnChart" app="spark/charts/ColumnChartExample" />
-				<node label="HLOCChart" app="spark/charts/HLOCExample" />
-				<node label="LineChart" app="spark/charts/LineExample" />
+				<node label="HLOCChart" app="spark/charts/HLOCChartExample" />
+				<node label="LineChart" app="spark/charts/LineChartExample" />
 				<node label="PieChart" app="spark/charts/PieChartExample" />
 				<node label="PlotChart" app="spark/charts/PlotChartExample" />
-				<node label="SeriesInterplate" app="spark/charts/SeriesInterplateExample" />
+				<node label="SeriesInterpolate" app="spark/charts/SeriesInterpolateExample" />
 				<node label="SeriesSlide" app="spark/charts/SeriesSlideExample" />
 				<node label="SeriesZoom" app="spark/charts/SeriesZoomExample" />
 			</node>


[4/6] git commit: [flex-utilities] [refs/heads/develop] - renamed file

Posted by jm...@apache.org.
renamed file


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/d9b66453
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/d9b66453
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/d9b66453

Branch: refs/heads/develop
Commit: d9b66453704c194e880084f6cd4b410580d55d42
Parents: 40af2ab
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Aug 9 18:17:21 2014 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Aug 9 18:17:21 2014 +1000

----------------------------------------------------------------------
 .../spark/charts/SeriesInterplateExample.mxml   | 115 -------------------
 .../spark/charts/SeriesInterpolateExample.mxml  | 115 +++++++++++++++++++
 2 files changed, 115 insertions(+), 115 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/d9b66453/TourDeFlex/TourDeFlex3/src/spark/charts/SeriesInterplateExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/charts/SeriesInterplateExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/charts/SeriesInterplateExample.mxml
deleted file mode 100644
index 16a51bf..0000000
--- a/TourDeFlex/TourDeFlex3/src/spark/charts/SeriesInterplateExample.mxml
+++ /dev/null
@@ -1,115 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
-
--->
-<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
-			   xmlns:s="library://ns.adobe.com/flex/spark" 
-			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
-	
-	<fx:Script>
-		<![CDATA[
-			
-			import mx.collections.ArrayCollection;
-			
-			[Bindable]
-			private var companyAAC:ArrayCollection = new ArrayCollection( [
-				{ Date: "25-Jul", Open: 40.75,  High: 40.75, Low: 40.24, Close:40.31},
-				{ Date: "26-Jul", Open: 39.98,  High: 40.78, Low: 39.97, Close:40.34},
-				{ Date: "27-Jul", Open: 40.38,  High: 40.66, Low: 40, Close:40.63},
-				{ Date: "28-Jul", Open: 40.49,  High: 40.99, Low: 40.3, Close:40.98},
-				{ Date: "29-Jul", Open: 40.13,  High: 40.4, Low: 39.65, Close:39.95},
-				{ Date: "1-Aug", Open: 39.00,  High: 39.50, Low: 38.7, Close:38.6}, 
-				{ Date: "2-Aug", Open: 38.68,  High: 39.34, Low: 37.75, Close:38.84}, 
-				{ Date: "3-Aug", Open: 38.76,  High: 38.76, Low: 38.03, Close:38.12}, 
-				{ Date: "4-Aug", Open: 37.98,  High: 37.98, Low: 36.56, Close:36.69},                       
-				{ Date: "5-Aug", Open: 36.61,  High: 37, Low: 36.48, Close:36.86} ]);
-			
-			[Bindable]
-			private var companyBAC:ArrayCollection = new ArrayCollection( [
-				{ Date: "25-Jul", Open: 18.50,  High: 19, Low: 18.48, Close:18.86},
-				{ Date: "26-Jul", Open: 19.56,  High: 19.98, Low: 18.6, Close:18.69},                       
-				{ Date: "27-Jul", Open: 20.81,  High: 20.99, Low: 20.03, Close:20.12}, 
-				{ Date: "28-Jul", Open: 20.70,  High: 21.00, Low: 19.5, Close:20.84}, 
-				{ Date: "29-Jul", Open: 21.7,  High: 21.79, Low: 20.45, Close:20.6}, 
-				{ Date: "1-Aug", Open: 22.45,  High: 22.65, Low: 21.65, Close:21.95},
-				{ Date: "2-Aug", Open: 22.56,  High: 22.6, Low: 22.05, Close:22.98},
-				{ Date: "3-Aug", Open: 22.42,  High: 22.70, Low: 22.1, Close:22.63},
-				{ Date: "4-Aug", Open: 21.67,  High: 22.82, Low: 21.67, Close:22.34},
-				{ Date: "5-Aug", Open: 22.44,  High: 22.85, Low: 22.12, Close:22.31} ]);
-			
-		]]>
-	</fx:Script>
-	
-	<s:layout>
-		<s:HorizontalLayout verticalAlign="middle" horizontalAlign="center" />
-	</s:layout>
-	
-	<fx:Declarations>
-		<mx:SeriesInterpolate id="interpolateIn" duration="1000"/>
-	</fx:Declarations>
-	
-	<s:Panel title="Interpolate Effect" width="600" height="100%"
-			 color="0x000000" 
-			 borderAlpha="0.15">
-		
-		<s:layout>
-			<s:HorizontalLayout horizontalAlign="center" 
-								paddingLeft="10" paddingRight="10" 
-								paddingTop="10" paddingBottom="10"/>
-		</s:layout>
-		
-		<mx:CandlestickChart id="candlestickchart" height="100%" paddingRight="5" paddingLeft="5" color="0x323232"
-							 showDataTips="true" dataProvider="{companyAAC}">
-			
-			<mx:verticalAxis>
-				<mx:LinearAxis baseAtZero="false" />
-			</mx:verticalAxis>
-			
-			<mx:horizontalAxis>
-				<mx:CategoryAxis categoryField="Date" title="Date"/>
-			</mx:horizontalAxis>
-			
-			<mx:series>
-				<mx:CandlestickSeries  
-					openField="Open" highField="High" 
-					lowField="Low" closeField="Close"
-					showDataEffect="{interpolateIn}"/>
-			</mx:series>
-		</mx:CandlestickChart>
-		
-		
-		<s:BorderContainer color="0x323232" width="30%" borderColor="0xDCDCDC" borderStyle="solid" height="100%">
-			
-			<s:layout>
-				<s:VerticalLayout paddingLeft="5" paddingRight="0" paddingTop="5" />
-			</s:layout>
-			
-			<s:Label color="0x0050AA" width="100%"
-					 text="Choose a company to view recent stock data."/>
-			
-			<s:RadioButton groupName="stocks" label="View Company A"
-						   selected="true" click="candlestickchart.dataProvider=companyAAC;"/>
-			<s:RadioButton groupName="stocks" label="View Company B"
-						   click="candlestickchart.dataProvider=companyBAC;"/>
-		</s:BorderContainer>
-		
-	</s:Panel>
-	
-</s:Application>

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/d9b66453/TourDeFlex/TourDeFlex3/src/spark/charts/SeriesInterpolateExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/charts/SeriesInterpolateExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/charts/SeriesInterpolateExample.mxml
new file mode 100644
index 0000000..16a51bf
--- /dev/null
+++ b/TourDeFlex/TourDeFlex3/src/spark/charts/SeriesInterpolateExample.mxml
@@ -0,0 +1,115 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+-->
+<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
+			   xmlns:s="library://ns.adobe.com/flex/spark" 
+			   xmlns:mx="library://ns.adobe.com/flex/mx" 
+			   skinClass="TDFGradientBackgroundSkin" 
+			   viewSourceURL="srcview/index.html">
+	
+	<fx:Script>
+		<![CDATA[
+			
+			import mx.collections.ArrayCollection;
+			
+			[Bindable]
+			private var companyAAC:ArrayCollection = new ArrayCollection( [
+				{ Date: "25-Jul", Open: 40.75,  High: 40.75, Low: 40.24, Close:40.31},
+				{ Date: "26-Jul", Open: 39.98,  High: 40.78, Low: 39.97, Close:40.34},
+				{ Date: "27-Jul", Open: 40.38,  High: 40.66, Low: 40, Close:40.63},
+				{ Date: "28-Jul", Open: 40.49,  High: 40.99, Low: 40.3, Close:40.98},
+				{ Date: "29-Jul", Open: 40.13,  High: 40.4, Low: 39.65, Close:39.95},
+				{ Date: "1-Aug", Open: 39.00,  High: 39.50, Low: 38.7, Close:38.6}, 
+				{ Date: "2-Aug", Open: 38.68,  High: 39.34, Low: 37.75, Close:38.84}, 
+				{ Date: "3-Aug", Open: 38.76,  High: 38.76, Low: 38.03, Close:38.12}, 
+				{ Date: "4-Aug", Open: 37.98,  High: 37.98, Low: 36.56, Close:36.69},                       
+				{ Date: "5-Aug", Open: 36.61,  High: 37, Low: 36.48, Close:36.86} ]);
+			
+			[Bindable]
+			private var companyBAC:ArrayCollection = new ArrayCollection( [
+				{ Date: "25-Jul", Open: 18.50,  High: 19, Low: 18.48, Close:18.86},
+				{ Date: "26-Jul", Open: 19.56,  High: 19.98, Low: 18.6, Close:18.69},                       
+				{ Date: "27-Jul", Open: 20.81,  High: 20.99, Low: 20.03, Close:20.12}, 
+				{ Date: "28-Jul", Open: 20.70,  High: 21.00, Low: 19.5, Close:20.84}, 
+				{ Date: "29-Jul", Open: 21.7,  High: 21.79, Low: 20.45, Close:20.6}, 
+				{ Date: "1-Aug", Open: 22.45,  High: 22.65, Low: 21.65, Close:21.95},
+				{ Date: "2-Aug", Open: 22.56,  High: 22.6, Low: 22.05, Close:22.98},
+				{ Date: "3-Aug", Open: 22.42,  High: 22.70, Low: 22.1, Close:22.63},
+				{ Date: "4-Aug", Open: 21.67,  High: 22.82, Low: 21.67, Close:22.34},
+				{ Date: "5-Aug", Open: 22.44,  High: 22.85, Low: 22.12, Close:22.31} ]);
+			
+		]]>
+	</fx:Script>
+	
+	<s:layout>
+		<s:HorizontalLayout verticalAlign="middle" horizontalAlign="center" />
+	</s:layout>
+	
+	<fx:Declarations>
+		<mx:SeriesInterpolate id="interpolateIn" duration="1000"/>
+	</fx:Declarations>
+	
+	<s:Panel title="Interpolate Effect" width="600" height="100%"
+			 color="0x000000" 
+			 borderAlpha="0.15">
+		
+		<s:layout>
+			<s:HorizontalLayout horizontalAlign="center" 
+								paddingLeft="10" paddingRight="10" 
+								paddingTop="10" paddingBottom="10"/>
+		</s:layout>
+		
+		<mx:CandlestickChart id="candlestickchart" height="100%" paddingRight="5" paddingLeft="5" color="0x323232"
+							 showDataTips="true" dataProvider="{companyAAC}">
+			
+			<mx:verticalAxis>
+				<mx:LinearAxis baseAtZero="false" />
+			</mx:verticalAxis>
+			
+			<mx:horizontalAxis>
+				<mx:CategoryAxis categoryField="Date" title="Date"/>
+			</mx:horizontalAxis>
+			
+			<mx:series>
+				<mx:CandlestickSeries  
+					openField="Open" highField="High" 
+					lowField="Low" closeField="Close"
+					showDataEffect="{interpolateIn}"/>
+			</mx:series>
+		</mx:CandlestickChart>
+		
+		
+		<s:BorderContainer color="0x323232" width="30%" borderColor="0xDCDCDC" borderStyle="solid" height="100%">
+			
+			<s:layout>
+				<s:VerticalLayout paddingLeft="5" paddingRight="0" paddingTop="5" />
+			</s:layout>
+			
+			<s:Label color="0x0050AA" width="100%"
+					 text="Choose a company to view recent stock data."/>
+			
+			<s:RadioButton groupName="stocks" label="View Company A"
+						   selected="true" click="candlestickchart.dataProvider=companyAAC;"/>
+			<s:RadioButton groupName="stocks" label="View Company B"
+						   click="candlestickchart.dataProvider=companyBAC;"/>
+		</s:BorderContainer>
+		
+	</s:Panel>
+	
+</s:Application>


[5/6] git commit: [flex-utilities] [refs/heads/develop] - removed a few warnings and links to source view

Posted by jm...@apache.org.
removed a few warnings and links to source view


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/9d8f7294
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/9d8f7294
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/9d8f7294

Branch: refs/heads/develop
Commit: 9d8f7294811d6611efcaf01b5185c93ad156c639
Parents: d9b6645
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Aug 9 18:18:41 2014 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Aug 9 18:18:41 2014 +1000

----------------------------------------------------------------------
 .../TourDeFlex3/src/spark/controls/AccordionExample.mxml     | 3 +--
 .../src/spark/controls/AdvancedDatagridExample.mxml          | 3 +--
 .../TourDeFlex3/src/spark/controls/ColorPickerExample.mxml   | 2 +-
 .../TourDeFlex3/src/spark/controls/DataGridExample.mxml      | 3 +--
 .../TourDeFlex3/src/spark/controls/DateChooserExample.mxml   | 2 +-
 .../TourDeFlex3/src/spark/controls/DateFieldExample.mxml     | 2 +-
 TourDeFlex/TourDeFlex3/src/spark/controls/FormExample.mxml   | 3 +--
 TourDeFlex/TourDeFlex3/src/spark/controls/ImageExample.mxml  | 4 ++--
 .../TourDeFlex3/src/spark/controls/LinkBarExample.mxml       | 3 +--
 .../TourDeFlex3/src/spark/controls/LinkButtonExample.mxml    | 5 ++---
 .../TourDeFlex3/src/spark/controls/PopupButtonExample.mxml   | 3 +--
 .../TourDeFlex3/src/spark/controls/ProgressBarExample.mxml   | 3 +--
 .../src/spark/controls/RichEditableTextExample.mxml          | 2 +-
 .../TourDeFlex3/src/spark/controls/SWFLoaderExample.mxml     | 3 +--
 .../TourDeFlex3/src/spark/controls/TabNavigatorExample.mxml  | 3 +--
 .../TourDeFlex3/src/spark/controls/TextAreaExample.mxml      | 6 +++---
 .../TourDeFlex3/src/spark/controls/TextInputExample.mxml     | 8 ++++----
 .../TourDeFlex3/src/spark/controls/TextLayout1Example.mxml   | 5 +++--
 .../TourDeFlex3/src/spark/controls/TextLayout2Example.mxml   | 4 ++--
 .../TourDeFlex3/src/spark/controls/TextLayout3example.mxml   | 6 ++++--
 .../TourDeFlex3/src/spark/controls/TitleWindowExample.mxml   | 3 +--
 .../src/spark/controls/ToggleButtonBarExample.mxml           | 3 +--
 .../TourDeFlex3/src/spark/controls/ToolTipExample.mxml       | 3 +--
 TourDeFlex/TourDeFlex3/src/spark/controls/TreeExample.mxml   | 3 +--
 .../TourDeFlex3/src/spark/controls/VideoDisplayExample.mxml  | 3 +--
 .../TourDeFlex3/src/spark/controls/ViewStackExample.mxml     | 3 +--
 .../src/spark/css/CSSDescendantSelectorExample.mxml          | 2 +-
 .../src/spark/css/CSSTypeClassSelectorExample.mxml           | 2 +-
 TourDeFlex/TourDeFlex3/src/spark/fxg/BitmapImageExample.mxml | 2 +-
 .../src/spark/itemRenderers/ItemRenderer2Example.mxml        | 6 ------
 .../src/spark/states/AnimateShaderTransitionEffect.mxml      | 2 +-
 31 files changed, 43 insertions(+), 62 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/AccordionExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/AccordionExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/AccordionExample.mxml
index d6b97db..128ee33 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/AccordionExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/AccordionExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<s:layout>
 		<s:HorizontalLayout verticalAlign="middle" horizontalAlign="center" />

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/AdvancedDatagridExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/AdvancedDatagridExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/AdvancedDatagridExample.mxml
index 889ef08..fe662fa 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/AdvancedDatagridExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/AdvancedDatagridExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<fx:Script>
 		<![CDATA[

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/ColorPickerExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/ColorPickerExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/ColorPickerExample.mxml
index ea8c106..57a268c 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/ColorPickerExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/ColorPickerExample.mxml
@@ -21,7 +21,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin"  viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<s:layout>
 		<s:HorizontalLayout horizontalAlign="center" />

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/DataGridExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/DataGridExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/DataGridExample.mxml
index 92e4a89..b85c824 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/DataGridExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/DataGridExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<fx:Declarations>
 		<fx:XMLList id="employees">

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/DateChooserExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/DateChooserExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/DateChooserExample.mxml
index 8bd4dc0..f0017f9 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/DateChooserExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/DateChooserExample.mxml
@@ -21,7 +21,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin"  viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<fx:Script>
 		<![CDATA[

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/DateFieldExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/DateFieldExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/DateFieldExample.mxml
index fead8cc..1572d85 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/DateFieldExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/DateFieldExample.mxml
@@ -21,7 +21,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<fx:Script>
 		<![CDATA[

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/FormExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/FormExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/FormExample.mxml
index a7cbc42..79af492 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/FormExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/FormExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<fx:Declarations>
 		<fx:Model id="checkModel">

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/ImageExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/ImageExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/ImageExample.mxml
index 4a9a295..6597fcc 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/ImageExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/ImageExample.mxml
@@ -20,7 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<fx:Script>
 		<![CDATA[
@@ -54,7 +54,7 @@
 				<s:VerticalLayout paddingBottom="5" paddingLeft="5" paddingRight="5" paddingTop="5"/>
 			</s:layout>
 			<s:Label color="0x323232" text="Sample of image embeded at compile time." />
-			<mx:Image id="embededImage" source="@Embed('images/compass.jpg')" creationComplete="smoothImage(event);"/>
+			<mx:Image id="embededImage" source="@Embed('assets/ApacheFlexLogo.png')" creationComplete="smoothImage(event);"/>
 		</s:BorderContainer>
 		
 		<s:BorderContainer width="50%" borderColor="0xACACAC" height="100%" borderStyle="solid">

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/LinkBarExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/LinkBarExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/LinkBarExample.mxml
index 5710fc9..eff7901 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/LinkBarExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/LinkBarExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<s:layout>
 		<s:HorizontalLayout verticalAlign="middle" horizontalAlign="center" />

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/LinkButtonExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/LinkButtonExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/LinkButtonExample.mxml
index 8be6a83..02aaaf8 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/LinkButtonExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/LinkButtonExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<fx:Script>
 		<![CDATA[
@@ -45,7 +44,7 @@
 		
 		<s:Label color="0x323232" text="Sample of image embeded at compile time." />
 		<mx:LinkButton label="LinkButton Control" color="0x3380DD" click="{Alert.show('LinkButton Pressed');}"
-			 textDecoration="underline" fontWeight="normal" icon="@Embed('assets/arrow_icon_blue.png')" />
+			 textDecoration="underline" fontWeight="normal" icon="@Embed('assets/arrow_icon.png')" />
 	</s:Panel>
 	
 </s:Application>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/PopupButtonExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/PopupButtonExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/PopupButtonExample.mxml
index 21aff16..79de243 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/PopupButtonExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/PopupButtonExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<fx:Script>
 		<![CDATA[

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/ProgressBarExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/ProgressBarExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/ProgressBarExample.mxml
index 4a442a9..76318e7 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/ProgressBarExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/ProgressBarExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<fx:Script>
         <![CDATA[

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/RichEditableTextExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/RichEditableTextExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/RichEditableTextExample.mxml
index e9f419d..6af67cc 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/RichEditableTextExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/RichEditableTextExample.mxml
@@ -20,7 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   preinitialize="init();" viewSourceURL="srcview/index.html">
+			   preinitialize="init();">
 	
 	<!-- Based on samples from Peter DeHaan's blog: http://blog.flexexamples.com/ --> 
 	

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/SWFLoaderExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/SWFLoaderExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/SWFLoaderExample.mxml
index f198e82..2e3dcf8 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/SWFLoaderExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/SWFLoaderExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html"
+			   skinClass="TDFGradientBackgroundSkin"
 			   creationComplete="init()">
 	
 	<fx:Script>

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/TabNavigatorExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/TabNavigatorExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/TabNavigatorExample.mxml
index 969c4b8..06e629a 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/TabNavigatorExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/TabNavigatorExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	<s:layout>
 		<s:HorizontalLayout verticalAlign="middle" horizontalAlign="center" />
 	</s:layout>

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/TextAreaExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/TextAreaExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/TextAreaExample.mxml
index 87d270e..c8892bd 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/TextAreaExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/TextAreaExample.mxml
@@ -19,7 +19,7 @@
 -->
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
-			   xmlns:mx="library://ns.adobe.com/flex/mx" viewSourceURL="srcview/index.html">
+			   xmlns:mx="library://ns.adobe.com/flex/mx">
 	<fx:Script>
 		<![CDATA[
 			import skins.TDFPanelSkin;
@@ -28,8 +28,8 @@
 			{
 				txt.maxChars = this.maxChars.value;
 				txt.restrict = this.restrictStr.text;
-				txt.textDisplay.textFlow.textAlign = alignVal.selectedItem;
-				txt.textDisplay.textFlow.direction = direction.selectedItem;
+				txt.textFlow.textAlign = alignVal.selectedItem;
+				txt.textFlow.direction = direction.selectedItem;
 			}
 		]]>
 	</fx:Script>

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/TextInputExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/TextInputExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/TextInputExample.mxml
index e548ab1..c5f8b5a 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/TextInputExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/TextInputExample.mxml
@@ -19,11 +19,11 @@
 -->
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
-			   xmlns:mx="library://ns.adobe.com/flex/mx"
-			   viewSourceURL="srcview/index.html">
+			   xmlns:mx="library://ns.adobe.com/flex/mx">
 	<fx:Script>
 		<![CDATA[
 			import spark.events.TextOperationEvent;
+			import spark.components.RichEditableText;
 			
 			private function txtChangeHandler(event:TextOperationEvent):void
 			{
@@ -36,8 +36,8 @@
 			{
 				txt.maxChars = this.maxChars.value;
 				txt.restrict = this.restrictStr.text;
-				txt.textDisplay.textFlow.textAlign = alignVal.selectedItem;
-				txt.textDisplay.textFlow.direction = direction.selectedItem;
+				RichEditableText(txt.textDisplay).textFlow.textAlign = alignVal.selectedItem;
+				RichEditableText(txt.textDisplay).textFlow.direction = direction.selectedItem;
 			}
 
 		]]>

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/TextLayout1Example.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/TextLayout1Example.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/TextLayout1Example.mxml
index 456f390..77c1737 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/TextLayout1Example.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/TextLayout1Example.mxml
@@ -20,7 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
-			   xmlns:local="*" creationComplete="init()" viewSourceURL="srcview/index.html">
+			   xmlns:local="*" creationComplete="init()">
 	
 	<!-- Based on original code from here and updated and enhanced for Flex 4:
 		http://www.adobe.com/devnet/flex/articles/text_layout_framework_04.html
@@ -53,6 +53,7 @@
 			import spark.components.Group;
 			import spark.core.SpriteVisualElement;
 			
+			[Bindable]
 			public var directions:ArrayCollection = new ArrayCollection(
 				[
 					{label:"Left-to-Right", data:Direction.LTR},
@@ -154,7 +155,7 @@
 				<s:NumericStepper id="cols"  minimum="1" maximum="20" snapInterval="1" change="changeNoColumns(event)" />
 				<s:Label text="Text Direction:"/>
 				<s:DropDownList id="direction" change="changeTextDirection(event)" dataProvider="{directions}" 
-								selectedItem="{directions[0]}"/>
+								selectedItem="{directions.getItemAt(0)}"/>
 				<s:Button label="Undo" click="undo_clickHandler(event)"/>
 				<s:Button label="Redo" click="redo_clickHandler(event)"/>
 			</s:HGroup>

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/TextLayout2Example.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/TextLayout2Example.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/TextLayout2Example.mxml
index b21ddae..a5ccfd4 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/TextLayout2Example.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/TextLayout2Example.mxml
@@ -54,7 +54,7 @@
 			
 			private const bodyMarkup:String = "<flow:TextFlow xmlns:flow='http://ns.adobe.com/textLayout/2008' fontSize='12' textIndent='10' marginBottom='15' paddingTop='4' paddingLeft='4'><flow:p marginBottom='inherit'><flow:span>There are many </flow:span><flow:span fontStyle='italic'>such</flow:span><flow:span> lime-kilns in that tract of country, for the purpose of burning the white marble which composes a large part of the substance of the hills. Some of them, built years ago, and long deserted, with weeds growing in the vacant round of the interior, which is open to the sky, and grass and wild-flowers rooting themselves into the chinks of the stones, look already like relics of antiquity, and may yet be overspread with the lichens of centuries to come. Others, where the lime-burner still feeds his daily and nightlong fire, afford points of interest to the wanderer among the hills, who seats himself on a log of wood or a fragment of marble, to hold a chat with the solitary man. It is a
  lonesome, and, when the character is inclined to thought, may be an intensely thoughtful occupation; as it proved in the case of Ethan Brand, who had mused to such strange purpose, in days gone by, while the fire in this very kiln was burning.</flow:span></flow:p><flow:p marginBottom='inherit'><flow:span>The man who now watched the fire was of a different order, and troubled himself with no thoughts save the very few that were requisite to his business. At frequent intervals, he flung back the clashing weight of the iron door, and, turning his face from the insufferable glare, thrust in huge logs of oak, or stirred the immense brands with a long pole.</flow:span></flow:p></flow:TextFlow>"; 
 			
-			public function init() 
+			public function init():void
 			{ 
 				// Headline text flow and flow composer 
 				hTextFlow = TextConverter.importToFlow(headlineMarkup, TextConverter.TEXT_LAYOUT_FORMAT); 
@@ -111,7 +111,7 @@
 				// Initial compose to get height of headline after resize 
 				headlineController.setCompositionSize(headlineWidth, headlineContainerHeight); 
 				hTextFlow.flowComposer.compose(); 
-				var rect:Rectangle = headlineController.getContentBounds(); 
+				rect = headlineController.getContentBounds(); 
 				headlineContainerHeight = rect.height; 
 				
 				// Resize and place headline text container 

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/TextLayout3example.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/TextLayout3example.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/TextLayout3example.mxml
index f776e46..09f544b 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/TextLayout3example.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/TextLayout3example.mxml
@@ -40,9 +40,11 @@
 	<fx:Script><![CDATA[
 		import flashx.textLayout.conversion.TextConverter;
 		import flashx.textLayout.elements.TextFlow;
-		
+		import spark.components.RichEditableText;
 		import spark.utils.TextFlowUtil;
+		
 		XML.ignoreWhitespace = false; 
+		
 		private function init():void {
 			// Creates a TextFlow by importing a String containing the markup language used by the Text Layout Framework.
 			// If you specify it, don't forget the namespace -> xmlns="http://ns.adobe.com/textLayout/2008"
@@ -55,7 +57,7 @@
 			
 			// This line shows how you would import plain text with no paragraph spacing
 			var autoMarkup:String = "This is just a plain old string that has no markup within it."; 
-			rt3.textDisplay.textFlow = TextFlowUtil.importFromString(autoMarkup);
+			RichEditableText(rt3.textDisplay).textFlow = TextFlowUtil.importFromString(autoMarkup);
 			
 			// This example shows how you can use the TextConverter class from TLF to import HTML formatted text
 			// See the docs for the subset of HTML that is supported: 

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/TitleWindowExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/TitleWindowExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/TitleWindowExample.mxml
index 9414f7f..0877ab6 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/TitleWindowExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/TitleWindowExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<fx:Script>
 		<![CDATA[

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/ToggleButtonBarExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/ToggleButtonBarExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/ToggleButtonBarExample.mxml
index f152cba..7bce8ec 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/ToggleButtonBarExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/ToggleButtonBarExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<fx:Script>
 		<![CDATA[

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/ToolTipExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/ToolTipExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/ToolTipExample.mxml
index 51aa8e4..899f6df 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/ToolTipExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/ToolTipExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<fx:Style>
 		@namespace mx "library://ns.adobe.com/flex/mx";

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/TreeExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/TreeExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/TreeExample.mxml
index 88fd9f3..47f98d5 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/TreeExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/TreeExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<fx:Script>
         <![CDATA[

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/VideoDisplayExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/VideoDisplayExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/VideoDisplayExample.mxml
index f43e379..f3bfc98 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/VideoDisplayExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/VideoDisplayExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<s:layout>
 		<s:HorizontalLayout horizontalAlign="center" />

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/controls/ViewStackExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/ViewStackExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/ViewStackExample.mxml
index 3685017..59b6f27 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/ViewStackExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/ViewStackExample.mxml
@@ -20,8 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html">
+			   skinClass="TDFGradientBackgroundSkin">
 	
 	<s:layout>
 		<s:HorizontalLayout verticalAlign="middle" horizontalAlign="center" />

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/css/CSSDescendantSelectorExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/css/CSSDescendantSelectorExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/css/CSSDescendantSelectorExample.mxml
index e66c90e..db20ea3 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/css/CSSDescendantSelectorExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/css/CSSDescendantSelectorExample.mxml
@@ -19,7 +19,7 @@
 -->
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
-			   xmlns:mx="library://ns.adobe.com/flex/mx" width="680" height="275" viewSourceURL="srcview/index.html">
+			   xmlns:mx="library://ns.adobe.com/flex/mx">
 	
 	<fx:Style>
 		@namespace s "library://ns.adobe.com/flex/spark";

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/css/CSSTypeClassSelectorExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/css/CSSTypeClassSelectorExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/css/CSSTypeClassSelectorExample.mxml
index 3a0b598..b6dc266 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/css/CSSTypeClassSelectorExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/css/CSSTypeClassSelectorExample.mxml
@@ -19,7 +19,7 @@
 -->
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
-			   xmlns:mx="library://ns.adobe.com/flex/mx" width="680" height="275">
+			   xmlns:mx="library://ns.adobe.com/flex/mx">
 	<fx:Style>
 		@namespace "library://ns.adobe.com/flex/spark";
 		

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/fxg/BitmapImageExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/fxg/BitmapImageExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/fxg/BitmapImageExample.mxml
index 8ba04d8..3cdcd76 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/fxg/BitmapImageExample.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/fxg/BitmapImageExample.mxml
@@ -61,7 +61,7 @@
 			
         <!-- Single image, scaled to fit specified dimensions. -->
         <s:Graphic x="150" y="0">
-            <s:BitmapImage id="bg2" source="@Embed('assets/AirIcon12x12.gif')" width="120" height="120" fillMode="{fillModes.selectedItem}"
+            <s:BitmapImage id="bg2" source="@Embed('assets/ApacheFlexLogo.png')" width="120" height="120" fillMode="{fillModes.selectedItem}"
 						   smooth="{cbSmooth.selected}" blendMode="{blends.selectedItem}"/>
         </s:Graphic>
 

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/itemRenderers/ItemRenderer2Example.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/itemRenderers/ItemRenderer2Example.mxml b/TourDeFlex/TourDeFlex3/src/spark/itemRenderers/ItemRenderer2Example.mxml
index f4c8548..d418326 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/itemRenderers/ItemRenderer2Example.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/itemRenderers/ItemRenderer2Example.mxml
@@ -27,13 +27,7 @@
 		@namespace s "library://ns.adobe.com/flex/spark";
 		@namespace mx "library://ns.adobe.com/flex/halo";
 		
-		@font-face {
-			src: url("assets/MyriadPro-Semibold.otf");
-			fontFamily: "main";
-		}
-		
 		s|Application {
-			font-family: main;
 			font-size: 14;
 		}
 		

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/9d8f7294/TourDeFlex/TourDeFlex3/src/spark/states/AnimateShaderTransitionEffect.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/states/AnimateShaderTransitionEffect.mxml b/TourDeFlex/TourDeFlex3/src/spark/states/AnimateShaderTransitionEffect.mxml
index 22397bd..6e5f3b8 100644
--- a/TourDeFlex/TourDeFlex3/src/spark/states/AnimateShaderTransitionEffect.mxml
+++ b/TourDeFlex/TourDeFlex3/src/spark/states/AnimateShaderTransitionEffect.mxml
@@ -20,7 +20,7 @@
 <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
 			   xmlns:s="library://ns.adobe.com/flex/spark" 
 			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   backgroundColor="0x000000" viewSourceURL="srcview/index.html">
+			   backgroundColor="0x000000">
 	
 	<s:states>
 		<s:State name="default"/>


[6/6] git commit: [flex-utilities] [refs/heads/develop] - renamed file

Posted by jm...@apache.org.
renamed file


Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/1ff24b48
Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/1ff24b48
Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/1ff24b48

Branch: refs/heads/develop
Commit: 1ff24b4877ebadd00312fea8d9481ca125f5094d
Parents: 9d8f729
Author: Justin Mclean <jm...@apache.org>
Authored: Sat Aug 9 18:19:00 2014 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Sat Aug 9 18:19:00 2014 +1000

----------------------------------------------------------------------
 .../src/spark/controls/OLAPDataGrid.mxml        | 231 -------------------
 .../src/spark/controls/OLAPDataGridExample.mxml | 230 ++++++++++++++++++
 .../src/spark/effects/WipeExample.html          | 121 ----------
 .../src/spark/effects/WipeExample.mxml          |  72 ++++++
 .../src/spark/effects/assets/back.png           | Bin 0 -> 121035 bytes
 .../src/spark/fxg/assets/ApacheFlexLogo.png     | Bin 0 -> 71228 bytes
 6 files changed, 302 insertions(+), 352 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/1ff24b48/TourDeFlex/TourDeFlex3/src/spark/controls/OLAPDataGrid.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/OLAPDataGrid.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/OLAPDataGrid.mxml
deleted file mode 100644
index 82fc104..0000000
--- a/TourDeFlex/TourDeFlex3/src/spark/controls/OLAPDataGrid.mxml
+++ /dev/null
@@ -1,231 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
-
--->
-<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
-			   xmlns:s="library://ns.adobe.com/flex/spark" 
-			   xmlns:mx="library://ns.adobe.com/flex/mx" 
-			   skinClass="TDFGradientBackgroundSkin" 
-			   viewSourceURL="srcview/index.html"
-			   creationComplete="creationCompleteHandler();">
-	
-	<fx:Script>
-		<![CDATA[
-			import mx.rpc.AsyncResponder;
-			import mx.rpc.AsyncToken;
-			import mx.olap.OLAPQuery;
-			import mx.olap.OLAPSet;
-			import mx.olap.IOLAPQuery;
-			import mx.olap.IOLAPQueryAxis;
-			import mx.olap.IOLAPCube;
-			import mx.olap.OLAPResult;
-			import mx.events.CubeEvent;
-			import mx.controls.Alert;
-			import mx.collections.ArrayCollection;
-			
-			
-			//
-			// Format of Objects in the ArrayCollection:
-			//
-			//  data:Object = {
-			//    customer:"AAA", 
-			//    product:"ColdFusion",
-			//    quarter:"Q1"
-			//    revenue: "100.00" 
-			//  }
-			//
-			
-			[Bindable]
-			private var flatData:ArrayCollection = new ArrayCollection(
-			[
-			{customer:"AAA", product:"ColdFusion", quarter:"Q1", revenue:210, cost:25},
-			{customer:"AAA", product:"Flex", quarter:"Q2", revenue:210, cost:25},
-			{customer:"AAA", product:"Dreamweaver", quarter:"Q3", revenue:250, cost:125},
-			{customer:"AAA", product:"Flash", quarter:"Q4", revenue:430, cost:75},
-			
-			{customer:"BBB", product:"ColdFusion", quarter:"Q2", revenue:125, cost:20},
-			{customer:"BBB", product:"Flex", quarter:"Q3", revenue:210, cost:20},
-			{customer:"BBB", product:"Dreamweaver", quarter:"Q4", revenue:320, cost:120},
-			{customer:"BBB", product:"Flash", quarter:"Q1", revenue:280, cost:70},
-			
-			{customer:"CCC", product:"ColdFusion", quarter:"Q3", revenue:375, cost:120},
-			{customer:"CCC", product:"Flex", quarter:"Q4", revenue:430, cost:120},
-			{customer:"CCC", product:"Dreamweaver", quarter:"Q1", revenue:470, cost:220},
-			{customer:"CCC", product:"Flash", quarter:"Q2", revenue:570, cost:170},
-			
-			{customer:"AAA", product:"ColdFusion", quarter:"Q4", revenue:215, cost:90},
-			{customer:"AAA", product:"Flex", quarter:"Q1", revenue:210, cost:90},
-			{customer:"AAA", product:"Dreamweaver", quarter:"Q2", revenue:175, cost:190},
-			{customer:"AAA", product:"Flash", quarter:"Q3", revenue:670, cost:75},
-			
-			{customer:"BBB", product:"ColdFusion", quarter:"Q1", revenue:175, cost:20},
-			{customer:"BBB", product:"Flex", quarter:"Q2", revenue:210, cost:20},
-			{customer:"BBB", product:"Dreamweaver",quarter:"Q3", revenue:120, cost:120},
-			{customer:"BBB", product:"Flash", quarter:"Q4", revenue:310, cost:70},
-			
-			{customer:"CCC", product:"ColdFusion", quarter:"Q1", revenue:385, cost:120},
-			{customer:"CCC", product:"Flex", quarter:"Q2", revenue:340, cost:120},
-			{customer:"CCC", product:"Dreamweaver", quarter:"Q3", revenue:470, cost:220},
-			{customer:"CCC", product:"Flash", quarter:"Q4", revenue:270, cost:170},
-			
-			{customer:"AAA", product:"ColdFusion", quarter:"Q1", revenue:100, cost:25},
-			{customer:"AAA", product:"Flex", quarter:"Q2", revenue:150, cost:25},
-			{customer:"AAA", product:"Dreamweaver", quarter:"Q3", revenue:200, cost:125},
-			{customer:"AAA", product:"Flash", quarter:"Q4", revenue:300, cost:75},
-			
-			{customer:"BBB", product:"ColdFusion", quarter:"Q2", revenue:175, cost:20},
-			{customer:"BBB", product:"Flex", quarter:"Q3", revenue:100, cost:20},
-			{customer:"BBB", product:"Dreamweaver", quarter:"Q4", revenue:270, cost:120},
-			{customer:"BBB", product:"Flash", quarter:"Q1", revenue:370, cost:70},
-			
-			{customer:"CCC", product:"ColdFusion", quarter:"Q3", revenue:410, cost:120},
-			{customer:"CCC", product:"Flex", quarter:"Q4", revenue:300, cost:320},
-			{customer:"CCC", product:"Dreamweaver", quarter:"Q1", revenue:510, cost:220},
-			{customer:"CCC", product:"Flash", quarter:"Q2", revenue:620, cost:170},
-			
-			{customer:"AAA", product:"ColdFusion", quarter:"Q4", revenue:215, cost:90},
-			{customer:"AAA", product:"Flex", quarter:"Q1", revenue:210, cost:90},
-			{customer:"AAA", product:"Dreamweaver", quarter:"Q2", revenue:175, cost:190},
-			{customer:"AAA", product:"Flash", quarter:"Q3", revenue:420, cost:75},
-			
-			{customer:"BBB", product:"ColdFusion", quarter:"Q1", revenue:240, cost:20},
-			{customer:"BBB", product:"Flex", quarter:"Q2", revenue:100, cost:20},
-			{customer:"BBB", product:"Dreamweaver", quarter:"Q3", revenue:270, cost:120},
-			{customer:"BBB", product:"Flash", quarter:"Q4", revenue:370, cost:70},
-			
-			{customer:"CCC", product:"ColdFusion", quarter:"Q1", revenue:375, cost:120},
-			{customer:"CCC", product:"Flex", quarter:"Q2", revenue:420, cost:120},
-			{customer:"CCC", product:"Dreamweaver", quarter:"Q3", revenue:680, cost:220},
-			{customer:"CCC", product:"Flash", quarter:"Q4", revenue:570, cost:170}         
-			]);
-			
-			private function creationCompleteHandler():void {
-				// You must initialize the cube before you 
-				// can execute a query on it.
-				myMXMLCube.refresh();
-			}
-			
-			// Create the OLAP query.
-			private function getQuery(cube:IOLAPCube):IOLAPQuery {
-				// Create an instance of OLAPQuery to represent the query. 
-				var query:OLAPQuery = new OLAPQuery;
-				
-				// Get the row axis from the query instance.
-				var rowQueryAxis:IOLAPQueryAxis = 
-				query.getAxis(OLAPQuery.ROW_AXIS);
-				// Create an OLAPSet instance to configure the axis.
-				var productSet:OLAPSet = new OLAPSet;
-				// Add the Product to the row to aggregate data 
-				// by the Product dimension.
-				productSet.addElements(
-				cube.findDimension("ProductDim").findAttribute("Product").children);
-				// Add the OLAPSet instance to the axis.
-				rowQueryAxis.addSet(productSet);
-				
-				// Get the column axis from the query instance, and configure it
-				// to aggregate the columns by the Quarter dimension. 
-				var colQueryAxis:IOLAPQueryAxis = 
-				query.getAxis(OLAPQuery.COLUMN_AXIS);         
-				var quarterSet:OLAPSet= new OLAPSet;
-				quarterSet.addElements(
-				cube.findDimension("QuarterDim").findAttribute("Quarter").children);
-				colQueryAxis.addSet(quarterSet);
-				
-				return query;       
-			}
-			
-			// Event handler to execute the OLAP query 
-			// after the cube completes initialization.
-			private function runQuery(event:CubeEvent):void {
-				// Get cube.
-				var cube:IOLAPCube = IOLAPCube(event.currentTarget);
-				// Create a query instance.
-				var query:IOLAPQuery = getQuery(cube);
-				// Execute the query.
-				var token:AsyncToken = cube.execute(query);
-				// Setup handlers for the query results.
-				token.addResponder(new AsyncResponder(showResult, showFault));
-			}
-			
-			// Handle a query fault.
-			private function showFault(result:Object, token:Object):void {
-				Alert.show("Error in query.");
-			}
-			
-			// Handle a successful query by passing the query results to 
-			// the OLAPDataGrid control..
-			private function showResult(result:Object, token:Object):void {
-				if (!result) {
-					Alert.show("No results from query.");
-					return;
-				}
-				myOLAPDG.dataProvider= result as OLAPResult;            
-			}        
-		]]>
-	</fx:Script>
-	
-	<s:layout>
-		<s:HorizontalLayout horizontalAlign="center" />
-	</s:layout>
-	
-	<fx:Declarations>
-		<mx:OLAPCube name="FlatSchemaCube" dataProvider="{flatData}" id="myMXMLCube" complete="runQuery(event);">
-			<mx:OLAPDimension name="CustomerDim">
-				<mx:OLAPAttribute name="Customer" dataField="customer"/>
-				<mx:OLAPHierarchy name="CustomerHier" hasAll="true">
-					<mx:OLAPLevel attributeName="Customer"/>
-				</mx:OLAPHierarchy>
-			</mx:OLAPDimension>
-			
-			<mx:OLAPDimension name="ProductDim">
-				<mx:OLAPAttribute name="Product" dataField="product"/>
-				<mx:OLAPHierarchy name="ProductHier" hasAll="true">
-					<mx:OLAPLevel attributeName="Product"/>
-				</mx:OLAPHierarchy>
-			</mx:OLAPDimension>
-			
-			<mx:OLAPDimension name="QuarterDim">
-				<mx:OLAPAttribute name="Quarter" dataField="quarter"/>
-				<mx:OLAPHierarchy name="QuarterHier" hasAll="true">
-					<mx:OLAPLevel attributeName="Quarter"/>
-				</mx:OLAPHierarchy> 
-			</mx:OLAPDimension>
-			
-			<mx:OLAPMeasure name="Revenue" 
-							dataField="revenue" 
-							aggregator="SUM"/>
-		</mx:OLAPCube>
-	</fx:Declarations>
-	
-	
-	
-	<s:Panel title="OLAPDataGrid Control" color="0x000000" 
-			 borderAlpha="0.15" 
-			 width="600">
-		
-		<s:layout>
-			<s:HorizontalLayout horizontalAlign="center" 
-								paddingLeft="10" paddingRight="10" 
-								paddingTop="10" paddingBottom="10"/>
-		</s:layout>
-		
-		<mx:OLAPDataGrid id="myOLAPDG" color="0x323232" width="100%" height="100%"/>
-		
-	</s:Panel>
-	
-</s:Application>

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/1ff24b48/TourDeFlex/TourDeFlex3/src/spark/controls/OLAPDataGridExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/controls/OLAPDataGridExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/controls/OLAPDataGridExample.mxml
new file mode 100644
index 0000000..d176fc8
--- /dev/null
+++ b/TourDeFlex/TourDeFlex3/src/spark/controls/OLAPDataGridExample.mxml
@@ -0,0 +1,230 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+-->
+<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"  
+			   xmlns:s="library://ns.adobe.com/flex/spark" 
+			   xmlns:mx="library://ns.adobe.com/flex/mx" 
+			   skinClass="TDFGradientBackgroundSkin"
+			   creationComplete="creationCompleteHandler();">
+	
+	<fx:Script>
+		<![CDATA[
+			import mx.rpc.AsyncResponder;
+			import mx.rpc.AsyncToken;
+			import mx.olap.OLAPQuery;
+			import mx.olap.OLAPSet;
+			import mx.olap.IOLAPQuery;
+			import mx.olap.IOLAPQueryAxis;
+			import mx.olap.IOLAPCube;
+			import mx.olap.OLAPResult;
+			import mx.events.CubeEvent;
+			import mx.controls.Alert;
+			import mx.collections.ArrayCollection;
+			
+			
+			//
+			// Format of Objects in the ArrayCollection:
+			//
+			//  data:Object = {
+			//    customer:"AAA", 
+			//    product:"ColdFusion",
+			//    quarter:"Q1"
+			//    revenue: "100.00" 
+			//  }
+			//
+			
+			[Bindable]
+			private var flatData:ArrayCollection = new ArrayCollection(
+			[
+			{customer:"AAA", product:"ColdFusion", quarter:"Q1", revenue:210, cost:25},
+			{customer:"AAA", product:"Flex", quarter:"Q2", revenue:210, cost:25},
+			{customer:"AAA", product:"Dreamweaver", quarter:"Q3", revenue:250, cost:125},
+			{customer:"AAA", product:"Flash", quarter:"Q4", revenue:430, cost:75},
+			
+			{customer:"BBB", product:"ColdFusion", quarter:"Q2", revenue:125, cost:20},
+			{customer:"BBB", product:"Flex", quarter:"Q3", revenue:210, cost:20},
+			{customer:"BBB", product:"Dreamweaver", quarter:"Q4", revenue:320, cost:120},
+			{customer:"BBB", product:"Flash", quarter:"Q1", revenue:280, cost:70},
+			
+			{customer:"CCC", product:"ColdFusion", quarter:"Q3", revenue:375, cost:120},
+			{customer:"CCC", product:"Flex", quarter:"Q4", revenue:430, cost:120},
+			{customer:"CCC", product:"Dreamweaver", quarter:"Q1", revenue:470, cost:220},
+			{customer:"CCC", product:"Flash", quarter:"Q2", revenue:570, cost:170},
+			
+			{customer:"AAA", product:"ColdFusion", quarter:"Q4", revenue:215, cost:90},
+			{customer:"AAA", product:"Flex", quarter:"Q1", revenue:210, cost:90},
+			{customer:"AAA", product:"Dreamweaver", quarter:"Q2", revenue:175, cost:190},
+			{customer:"AAA", product:"Flash", quarter:"Q3", revenue:670, cost:75},
+			
+			{customer:"BBB", product:"ColdFusion", quarter:"Q1", revenue:175, cost:20},
+			{customer:"BBB", product:"Flex", quarter:"Q2", revenue:210, cost:20},
+			{customer:"BBB", product:"Dreamweaver",quarter:"Q3", revenue:120, cost:120},
+			{customer:"BBB", product:"Flash", quarter:"Q4", revenue:310, cost:70},
+			
+			{customer:"CCC", product:"ColdFusion", quarter:"Q1", revenue:385, cost:120},
+			{customer:"CCC", product:"Flex", quarter:"Q2", revenue:340, cost:120},
+			{customer:"CCC", product:"Dreamweaver", quarter:"Q3", revenue:470, cost:220},
+			{customer:"CCC", product:"Flash", quarter:"Q4", revenue:270, cost:170},
+			
+			{customer:"AAA", product:"ColdFusion", quarter:"Q1", revenue:100, cost:25},
+			{customer:"AAA", product:"Flex", quarter:"Q2", revenue:150, cost:25},
+			{customer:"AAA", product:"Dreamweaver", quarter:"Q3", revenue:200, cost:125},
+			{customer:"AAA", product:"Flash", quarter:"Q4", revenue:300, cost:75},
+			
+			{customer:"BBB", product:"ColdFusion", quarter:"Q2", revenue:175, cost:20},
+			{customer:"BBB", product:"Flex", quarter:"Q3", revenue:100, cost:20},
+			{customer:"BBB", product:"Dreamweaver", quarter:"Q4", revenue:270, cost:120},
+			{customer:"BBB", product:"Flash", quarter:"Q1", revenue:370, cost:70},
+			
+			{customer:"CCC", product:"ColdFusion", quarter:"Q3", revenue:410, cost:120},
+			{customer:"CCC", product:"Flex", quarter:"Q4", revenue:300, cost:320},
+			{customer:"CCC", product:"Dreamweaver", quarter:"Q1", revenue:510, cost:220},
+			{customer:"CCC", product:"Flash", quarter:"Q2", revenue:620, cost:170},
+			
+			{customer:"AAA", product:"ColdFusion", quarter:"Q4", revenue:215, cost:90},
+			{customer:"AAA", product:"Flex", quarter:"Q1", revenue:210, cost:90},
+			{customer:"AAA", product:"Dreamweaver", quarter:"Q2", revenue:175, cost:190},
+			{customer:"AAA", product:"Flash", quarter:"Q3", revenue:420, cost:75},
+			
+			{customer:"BBB", product:"ColdFusion", quarter:"Q1", revenue:240, cost:20},
+			{customer:"BBB", product:"Flex", quarter:"Q2", revenue:100, cost:20},
+			{customer:"BBB", product:"Dreamweaver", quarter:"Q3", revenue:270, cost:120},
+			{customer:"BBB", product:"Flash", quarter:"Q4", revenue:370, cost:70},
+			
+			{customer:"CCC", product:"ColdFusion", quarter:"Q1", revenue:375, cost:120},
+			{customer:"CCC", product:"Flex", quarter:"Q2", revenue:420, cost:120},
+			{customer:"CCC", product:"Dreamweaver", quarter:"Q3", revenue:680, cost:220},
+			{customer:"CCC", product:"Flash", quarter:"Q4", revenue:570, cost:170}         
+			]);
+			
+			private function creationCompleteHandler():void {
+				// You must initialize the cube before you 
+				// can execute a query on it.
+				myMXMLCube.refresh();
+			}
+			
+			// Create the OLAP query.
+			private function getQuery(cube:IOLAPCube):IOLAPQuery {
+				// Create an instance of OLAPQuery to represent the query. 
+				var query:OLAPQuery = new OLAPQuery;
+				
+				// Get the row axis from the query instance.
+				var rowQueryAxis:IOLAPQueryAxis = 
+				query.getAxis(OLAPQuery.ROW_AXIS);
+				// Create an OLAPSet instance to configure the axis.
+				var productSet:OLAPSet = new OLAPSet;
+				// Add the Product to the row to aggregate data 
+				// by the Product dimension.
+				productSet.addElements(
+				cube.findDimension("ProductDim").findAttribute("Product").children);
+				// Add the OLAPSet instance to the axis.
+				rowQueryAxis.addSet(productSet);
+				
+				// Get the column axis from the query instance, and configure it
+				// to aggregate the columns by the Quarter dimension. 
+				var colQueryAxis:IOLAPQueryAxis = 
+				query.getAxis(OLAPQuery.COLUMN_AXIS);         
+				var quarterSet:OLAPSet= new OLAPSet;
+				quarterSet.addElements(
+				cube.findDimension("QuarterDim").findAttribute("Quarter").children);
+				colQueryAxis.addSet(quarterSet);
+				
+				return query;       
+			}
+			
+			// Event handler to execute the OLAP query 
+			// after the cube completes initialization.
+			private function runQuery(event:CubeEvent):void {
+				// Get cube.
+				var cube:IOLAPCube = IOLAPCube(event.currentTarget);
+				// Create a query instance.
+				var query:IOLAPQuery = getQuery(cube);
+				// Execute the query.
+				var token:AsyncToken = cube.execute(query);
+				// Setup handlers for the query results.
+				token.addResponder(new AsyncResponder(showResult, showFault));
+			}
+			
+			// Handle a query fault.
+			private function showFault(result:Object, token:Object):void {
+				Alert.show("Error in query.");
+			}
+			
+			// Handle a successful query by passing the query results to 
+			// the OLAPDataGrid control..
+			private function showResult(result:Object, token:Object):void {
+				if (!result) {
+					Alert.show("No results from query.");
+					return;
+				}
+				myOLAPDG.dataProvider= result as OLAPResult;            
+			}        
+		]]>
+	</fx:Script>
+	
+	<s:layout>
+		<s:HorizontalLayout horizontalAlign="center" />
+	</s:layout>
+	
+	<fx:Declarations>
+		<mx:OLAPCube name="FlatSchemaCube" dataProvider="{flatData}" id="myMXMLCube" complete="runQuery(event);">
+			<mx:OLAPDimension name="CustomerDim">
+				<mx:OLAPAttribute name="Customer" dataField="customer"/>
+				<mx:OLAPHierarchy name="CustomerHier" hasAll="true">
+					<mx:OLAPLevel attributeName="Customer"/>
+				</mx:OLAPHierarchy>
+			</mx:OLAPDimension>
+			
+			<mx:OLAPDimension name="ProductDim">
+				<mx:OLAPAttribute name="Product" dataField="product"/>
+				<mx:OLAPHierarchy name="ProductHier" hasAll="true">
+					<mx:OLAPLevel attributeName="Product"/>
+				</mx:OLAPHierarchy>
+			</mx:OLAPDimension>
+			
+			<mx:OLAPDimension name="QuarterDim">
+				<mx:OLAPAttribute name="Quarter" dataField="quarter"/>
+				<mx:OLAPHierarchy name="QuarterHier" hasAll="true">
+					<mx:OLAPLevel attributeName="Quarter"/>
+				</mx:OLAPHierarchy> 
+			</mx:OLAPDimension>
+			
+			<mx:OLAPMeasure name="Revenue" 
+							dataField="revenue" 
+							aggregator="SUM"/>
+		</mx:OLAPCube>
+	</fx:Declarations>
+	
+	
+	
+	<s:Panel title="OLAPDataGrid Control" color="0x000000" 
+			 borderAlpha="0.15" 
+			 width="600">
+		
+		<s:layout>
+			<s:HorizontalLayout horizontalAlign="center" 
+								paddingLeft="10" paddingRight="10" 
+								paddingTop="10" paddingBottom="10"/>
+		</s:layout>
+		
+		<mx:OLAPDataGrid id="myOLAPDG" color="0x323232" width="100%" height="100%"/>
+		
+	</s:Panel>
+	
+</s:Application>

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/1ff24b48/TourDeFlex/TourDeFlex3/src/spark/effects/WipeExample.html
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/effects/WipeExample.html b/TourDeFlex/TourDeFlex3/src/spark/effects/WipeExample.html
deleted file mode 100644
index 37d9446..0000000
--- a/TourDeFlex/TourDeFlex3/src/spark/effects/WipeExample.html
+++ /dev/null
@@ -1,121 +0,0 @@
-<!--
-  Licensed to the Apache Software Foundation (ASF) under one or more
-  contributor license agreements.  See the NOTICE file distributed with
-  this work for additional information regarding copyright ownership.
-  The ASF licenses this file to You under the Apache License, Version 2.0
-  (the "License"); you may not use this file except in compliance with
-  the License.  You may obtain a copy of the License at
-
-      http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
--->
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<!-- saved from url=(0014)about:internet -->
-<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">	
-    <!-- 
-    Smart developers always View Source. 
-    
-    This application was built using Adobe Flex, an open source framework
-    for building rich Internet applications that get delivered via the
-    Flash Player or to desktops via Adobe AIR. 
-    
-    Learn more about Flex at http://flex.org 
-    // -->
-    <head>
-        <title></title>         
-        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-		<!-- Include CSS to eliminate any default margins/padding and set the height of the html element and 
-		     the body element to 100%, because Firefox, or any Gecko based browser, interprets percentage as 
-			 the percentage of the height of its parent container, which has to be set explicitly.  Initially, 
-			 don't display flashContent div so it won't show if JavaScript disabled.
-		-->
-        <style type="text/css" media="screen"> 
-			html, body	{ height:100%; }
-			body { margin:0; padding:0; overflow:auto; text-align:center; 
-			       background-color: #ffffff; }   
-			#flashContent { display:none; }
-        </style>
-		
-		<!-- Enable Browser History by replacing useBrowserHistory tokens with two hyphens -->
-        <!-- BEGIN Browser History required section -->
-        <link rel="stylesheet" type="text/css" href="history/history.css" />
-        <script type="text/javascript" src="history/history.js"></script>
-        <!-- END Browser History required section -->  
-		    
-        <script type="text/javascript" src="swfobject.js"></script>
-        <script type="text/javascript">
-            <!-- For version detection, set to min. required Flash Player version, or 0 (or 0.0.0), for no version detection. --> 
-            var swfVersionStr = "10.0.0";
-            <!-- To use express install, set to playerProductInstall.swf, otherwise the empty string. -->
-            var xiSwfUrlStr = "playerProductInstall.swf";
-            var flashvars = {};
-            var params = {};
-            params.quality = "high";
-            params.bgcolor = "#ffffff";
-            params.allowscriptaccess = "sameDomain";
-            params.allowfullscreen = "true";
-            var attributes = {};
-            attributes.id = "sample";
-            attributes.name = "sample";
-            attributes.align = "middle";
-            swfobject.embedSWF(
-                "sample.swf", "flashContent", 
-                "100%", "100%", 
-                swfVersionStr, xiSwfUrlStr, 
-                flashvars, params, attributes);
-			<!-- JavaScript enabled so display the flashContent div in case it is not replaced with a swf object. -->
-			swfobject.createCSS("#flashContent", "display:block;text-align:left;");
-        </script>
-    </head>
-    <body>
-        <!-- SWFObject's dynamic embed method replaces this alternative HTML content with Flash content when enough 
-			 JavaScript and Flash plug-in support is available. The div is initially hidden so that it doesn't show
-			 when JavaScript is disabled.
-		-->
-        <div id="flashContent">
-        	<p>
-	        	To view this page ensure that Adobe Flash Player version 
-				10.0.0 or greater is installed. 
-			</p>
-			<script type="text/javascript"> 
-				var pageHost = ((document.location.protocol == "https:") ? "https://" :	"http://"); 
-				document.write("<a href='http://www.adobe.com/go/getflashplayer'><img src='" 
-								+ pageHost + "www.adobe.com/images/shared/download_buttons/get_flash_player.gif' alt='Get Adobe Flash player' /></a>" ); 
-			</script> 
-        </div>
-	   	
-       	<noscript>
-            <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%" id="sample">
-                <param name="movie" value="sample.swf" />
-                <param name="quality" value="high" />
-                <param name="bgcolor" value="#ffffff" />
-                <param name="allowScriptAccess" value="sameDomain" />
-                <param name="allowFullScreen" value="true" />
-                <!--[if !IE]>-->
-                <object type="application/x-shockwave-flash" data="sample.swf" width="100%" height="100%">
-                    <param name="quality" value="high" />
-                    <param name="bgcolor" value="#ffffff" />
-                    <param name="allowScriptAccess" value="sameDomain" />
-                    <param name="allowFullScreen" value="true" />
-                <!--<![endif]-->
-                <!--[if gte IE 6]>-->
-                	<p> 
-                		Either scripts and active content are not permitted to run or Adobe Flash Player version
-                		10.0.0 or greater is not installed.
-                	</p>
-                <!--<![endif]-->
-                    <a href="http://www.adobe.com/go/getflashplayer">
-                        <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash Player" />
-                    </a>
-                <!--[if !IE]>-->
-                </object>
-                <!--<![endif]-->
-            </object>
-	    </noscript>		
-   </body>
-</html>

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/1ff24b48/TourDeFlex/TourDeFlex3/src/spark/effects/WipeExample.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/effects/WipeExample.mxml b/TourDeFlex/TourDeFlex3/src/spark/effects/WipeExample.mxml
new file mode 100644
index 0000000..451ee18
--- /dev/null
+++ b/TourDeFlex/TourDeFlex3/src/spark/effects/WipeExample.mxml
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+
+-->
+<s:Application
+	xmlns:fx="http://ns.adobe.com/mxml/2009"
+	xmlns:mx="library://ns.adobe.com/flex/mx"
+	xmlns:s="library://ns.adobe.com/flex/spark">
+	
+	<s:states>
+		<s:State name="default"/>
+		<s:State name="flipped"/>
+	</s:states>
+	
+	<s:transitions>
+		<s:Transition id="t1">
+			<s:Wipe id="wipe"
+					direction="right"
+					target="{holder}"
+					duration="1000" />
+		</s:Transition>
+	</s:transitions>
+	
+	<s:Panel title="Wipe Effect Example" skinClass="skins.TDFPanelSkin"
+			 width="100%" height="100%">
+		
+		<s:HGroup horizontalCenter="0" top="15" >
+			<s:VGroup width="100%" height="100%">
+				<s:Group id="holder">
+					<s:BitmapImage
+						source="@Embed('assets/back.png')"
+						visible="true" visible.flipped="false"/>
+					<s:BitmapImage
+						source="@Embed('assets/ApacheFlexLogo.png')"
+						visible="false" visible.flipped="true"/>
+					
+				</s:Group>
+				<s:Button 
+					label="Wipe Right"
+					click="currentState = (currentState == 'flipped') ? 'default' : 'flipped';" />
+			</s:VGroup>
+			
+			
+			<!-- Directions -->
+			<s:VGroup id="detailsBox"
+					  width="400"
+					  left="0">
+				<s:Label
+					width="400"
+					color="#323232"
+					text="The Wipe effect wipes from bitmapFrom to the bitmapTo image in the given direction. Click the 'Wipe Right' button to see the effect."/>
+			</s:VGroup>
+		</s:HGroup>
+		
+	</s:Panel>
+	
+</s:Application>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/1ff24b48/TourDeFlex/TourDeFlex3/src/spark/effects/assets/back.png
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/effects/assets/back.png b/TourDeFlex/TourDeFlex3/src/spark/effects/assets/back.png
new file mode 100644
index 0000000..19367fb
Binary files /dev/null and b/TourDeFlex/TourDeFlex3/src/spark/effects/assets/back.png differ

http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/1ff24b48/TourDeFlex/TourDeFlex3/src/spark/fxg/assets/ApacheFlexLogo.png
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/spark/fxg/assets/ApacheFlexLogo.png b/TourDeFlex/TourDeFlex3/src/spark/fxg/assets/ApacheFlexLogo.png
new file mode 100644
index 0000000..4ff037f
Binary files /dev/null and b/TourDeFlex/TourDeFlex3/src/spark/fxg/assets/ApacheFlexLogo.png differ