add welcome page

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

Branch: refs/heads/develop
Commit: 29c0ddd6d7f4c8cf2158499d5af6cce49148d71b
Parents: fd6595d
Author: Justin Mclean <jmcl...@apache.org>
Authored: Sat Oct 18 11:22:11 2014 +1100
Committer: Justin Mclean <jmcl...@apache.org>
Committed: Sat Oct 18 11:22:11 2014 +1100

----------------------------------------------------------------------
 TourDeFlex/TourDeFlex3/src/Welcome.mxml | 55 ++++++++++++++++++++++++++++
 1 file changed, 55 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/29c0ddd6/TourDeFlex/TourDeFlex3/src/Welcome.mxml
----------------------------------------------------------------------
diff --git a/TourDeFlex/TourDeFlex3/src/Welcome.mxml 
b/TourDeFlex/TourDeFlex3/src/Welcome.mxml
new file mode 100644
index 0000000..ed16370
--- /dev/null
+++ b/TourDeFlex/TourDeFlex3/src/Welcome.mxml
@@ -0,0 +1,55 @@
+<?xml version="1.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.
+  -->
+
+<!-- Simple example to demonstrate the Button control. -->
+<mx: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" 
+                               paddingBottom="10" paddingTop="10" 
paddingLeft="10" paddingRight="10"
+                               height="100%" width="100%">
+
+    <mx:Panel title="Welcome to Tour De Flex"
+                         paddingBottom="10" paddingTop="10" paddingLeft="10" 
paddingRight="10"
+                         height="100%" width="100%">
+
+       <s:HGroup>
+               <s:Image source="@Embed('/apache/assets/ApacheFlexLogo.png')" 
width="50" height="50" />
+               <s:VGroup height="100%" verticalAlign="middle">
+                       <s:Label text="Apache Tour De Flex" fontSize="20" 
fontWeight="bold" />
+               </s:VGroup>     
+       </s:HGroup>
+               
+       <s:RichText width="100%">
+               <s:p />
+               <s:p>The Apache Flex Tour De Flex component explorer provides a 
sample set of working
+  Apache Flex examples.</s:p>
+               <s:p />
+               <s:p>New in this version:</s:p>
+               <s:list>
+                       <s:li>Added this welcome page</s:li>
+                       <s:li>Changed examples look and feel to be more 
consistent</s:li>
+                       <s:li>Added support for 3rd party examples</s:li>
+                       <s:li>Added Squiggly spelling engine examples</s:li>
+               </s:list>
+               <s:p />
+               <s:p>For a full list of changes please see the README.</s:p>
+               <s:p />
+       </s:RichText>
+
+    </mx:Panel>
+</mx:Application>
\ No newline at end of file

Reply via email to