Modified: flex/site/trunk/content/tourdeflex/mx/effects/BlurEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/BlurEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/BlurEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/BlurEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,7 +17,9 @@ --> <!-- Simple example to demonstrate the Blur effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> <fx:Declarations> <mx:Blur id="blurImage" duration="1000" @@ -28,13 +30,15 @@ blurYFrom="10.0" blurYTo="0.0"/> </fx:Declarations> - <mx:Panel title="Blur Effect Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="Blur Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Click and hold the mouse on the image to see blurImage effect. Release the mouse to see the unblurImage effect."/> <mx:Image id="flex" source="@Embed(source='assets/ApacheFlexLogo.png')" + width="50%" height="50%" mouseDownEffect="{blurImage}" mouseUpEffect="{unblurImage}"/>
Modified: flex/site/trunk/content/tourdeflex/mx/effects/BlurEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/BlurEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/CompositeEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/CompositeEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/CompositeEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/CompositeEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate the Composite effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.effects.Move; @@ -68,29 +70,32 @@ ]]> </fx:Script> - <mx:Panel title="Composite Effect" width="75%" height="75%"> - <mx:Canvas id="canvas" width="100%" height="100%"> - - <mx:Label id="a" color="#009966" text="Sequence 1" - height="{(canvas.height-20)/2}" - width="{(canvas.width-20)/2}" - effectStart=" a.text= 'sequence 1 Running';" - effectEnd="a.text='sequence 1 ended!!!' "/> - - <mx:Label id="b" x="0" y="175" color="#00CCFF" - text="Sequence 2" - height="{(canvas.height-20)/2}" - width="{(canvas.width-20)/2}" - effectStart=" b.text= 'sequence 2 Running';" - effectEnd="b.text='sequence 2 ended!!'" /> - - <mx:Button id="button" x="245" y="85" - label="Start effect" - click="startEffect(200,175,200,0)" - effectStart="button.label='parallel effect running'" - effectEnd="button.label='parallel effect ended!!'"/> - - </mx:Canvas> + <mx:Panel title="Composite Effect" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> + + <mx:Canvas id="canvas" width="100%" height="100%"> + + <mx:Label id="a" color="#009966" text="Sequence 1" + height="{(canvas.height-20)/2}" + width="{(canvas.width-20)/2}" + effectStart=" a.text= 'sequence 1 Running'" + effectEnd="a.text='sequence 1 ended!!!' "/> + + <mx:Label id="b" x="0" y="175" color="#00CCFF" + text="Sequence 2" + height="{(canvas.height-20)/2}" + width="{(canvas.width-20)/2}" + effectStart=" b.text= 'sequence 2 Running'" + effectEnd="b.text='sequence 2 ended!!'" /> + + <mx:Button id="button" x="245" y="85" + label="Start effect" + click="startEffect(200,175,200,0)" + effectStart="button.label='parallel effect running'" + effectEnd="button.label='parallel effect ended!!'"/> + + </mx:Canvas> - </mx:Panel> + </mx:Panel> </mx:Application> \ No newline at end of file Modified: flex/site/trunk/content/tourdeflex/mx/effects/CompositeEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/CompositeEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/DefaultListEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/DefaultListEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/DefaultListEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/DefaultListEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -16,9 +16,11 @@ limitations under the License. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.effects.DefaultListEffect; import mx.collections.ArrayCollection; @@ -55,8 +57,9 @@ color="0x0000ff"/> </fx:Declarations> - <mx:Panel title="DefaultListEffect Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="DefaultListEffect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> <mx:List id="list0" width="150" @@ -68,10 +71,10 @@ <mx:Button label="Delete item" - click="deleteItem();"/> + click="deleteItem()"/> <mx:Button label="Add item" - click="addItem();"/> + click="addItem()"/> </mx:Panel> </mx:Application> \ No newline at end of file Modified: flex/site/trunk/content/tourdeflex/mx/effects/DefaultListEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/DefaultListEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/DefaultTileListEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/DefaultTileListEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/DefaultTileListEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/DefaultTileListEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -16,9 +16,11 @@ limitations under the License. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.effects.DefaultTileListEffect; import mx.effects.easing.Elastic; @@ -55,8 +57,9 @@ color="0x0000ff"/> </fx:Declarations> - <mx:Panel title="DefaultTileListEffect Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="DefaultTileListEffect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> <mx:TileList id="tlist0" height="100%" width="100%" @@ -70,10 +73,10 @@ <mx:Button label="Delete selected item(s)" - click="deleteItems();"/> + click="deleteItems()"/> <mx:Button label="Add item" - click="addItems();"/> + click="addItems()"/> </mx:Panel> </mx:Application> \ No newline at end of file Modified: flex/site/trunk/content/tourdeflex/mx/effects/DefaultTileListEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/DefaultTileListEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/DissolveEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/DissolveEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/DissolveEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/DissolveEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,16 +17,19 @@ --> <!-- Simple example to demonstrate the Dissolve effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> + <fx:Declarations> <mx:Dissolve id="dissolveOut" duration="1000" alphaFrom="1.0" alphaTo="0.0"/> <mx:Dissolve id="dissolveIn" duration="1000" alphaFrom="0.0" alphaTo="1.0"/> </fx:Declarations> - <mx:Panel title="Dissolve Effect Example" - width="95%" height="95%" layout="horizontal" - paddingTop="5" paddingLeft="10" paddingRight="10" paddingBottom="5"> + <mx:Panel title="Dissolve Effect Example" layout="horizontal" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> <mx:VBox height="100%"> <mx:Label text="Apache Flex" @@ -34,13 +37,14 @@ visible="{cb1.selected}" hideEffect="{dissolveOut}" showEffect="{dissolveIn}"/> - <mx:Image source="@Embed(source='assets/ApacheFlexLogo.png')" + <mx:Image source="@Embed(source='assets/ApacheFlexLogo.png')" + width="50%" height="50%" visible="{cb1.selected}" hideEffect="{dissolveOut}" showEffect="{dissolveIn}"/> </mx:VBox> <mx:VBox height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Use the Dissolve effect to show or hide the text, image, and button."/> <mx:Spacer height="100%"/> Modified: flex/site/trunk/content/tourdeflex/mx/effects/DissolveEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/DissolveEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/FadeEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/FadeEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/FadeEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/FadeEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,7 +17,9 @@ --> <!-- Simple example to demonstrate the Fade effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> <fx:Style> @font-face { @@ -32,10 +34,11 @@ <mx:Fade id="fadeIn" duration="1000" alphaFrom="0.0" alphaTo="1.0"/> </fx:Declarations> - <mx:Panel title="Fade Effect Example" width="95%" height="95%" - paddingTop="5" paddingLeft="10" paddingRight="10" paddingBottom="5"> + <mx:Panel title="Fade Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Use the Fade effect to show or hide the text and image. Use an embedded font when applying the Fade effect to text."/> <mx:Label text="Apache Flex" @@ -44,6 +47,7 @@ hideEffect="{fadeOut}" showEffect="{fadeIn}"/> <mx:Image source="@Embed(source='assets/ApacheFlexLogo.png')" + width="50%" height="50%" visible="{cb1.selected}" hideEffect="{fadeOut}" showEffect="{fadeIn}"/> Modified: flex/site/trunk/content/tourdeflex/mx/effects/FadeEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/FadeEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/GlowEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/GlowEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/GlowEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/GlowEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,7 +17,9 @@ --> <!-- Simple example to demonstrate the Glow effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> <fx:Declarations> <mx:Glow id="glowImage" duration="1000" @@ -32,13 +34,15 @@ color="0x0000FF"/> </fx:Declarations> - <mx:Panel title="Glow Effect Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> - - <mx:Text width="100%" color="blue" + <mx:Panel title="Glow Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> + + <mx:Text width="100%" text="Click and hold the mouse on the image to see glowImage effect. Release the mouse to see unglowImage effect."/> - <mx:Image source="@Embed(source='assets/ApacheFlexLogo.png')" + <mx:Image source="@Embed(source='assets/ApacheFlexLogo.png')" + width="50%" height="50%" mouseDownEffect="{glowImage}" mouseUpEffect="{unglowImage}"/> Modified: flex/site/trunk/content/tourdeflex/mx/effects/GlowEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/GlowEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/IrisEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/IrisEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/IrisEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/IrisEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,20 +17,24 @@ --> <!-- Simple example to demonstrate the Iris effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> <fx:Declarations> <mx:Iris id="irisOut" duration="1000" showTarget="true"/> <mx:Iris id="irisIn" duration="1000" showTarget="false"/> </fx:Declarations> - <mx:Panel title="Iris Effect Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="Iris Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Use the Iris effect to show or hide the logo."/> <mx:Image id="flex" source="@Embed(source='assets/ApacheFlexLogo.png')" + width="50%" height="50%" visible="{cb1.selected}" showEffect="{irisIn}" hideEffect="{irisOut}"/> Modified: flex/site/trunk/content/tourdeflex/mx/effects/IrisEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/IrisEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/MoveEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/MoveEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/MoveEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/MoveEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate the Move effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ private function moveImage():void { @@ -34,15 +36,17 @@ <mx:Move id="myMove" target="{img}"/> </fx:Declarations> - <mx:Panel title="Move Effect Example" width="95%" height="95%" - paddingTop="5" paddingLeft="10" paddingRight="10" paddingBottom="5"> + <mx:Panel title="Move Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Click anywhere on the canvas to move the logo horizontally to that position"/> - <mx:Canvas id="canvas" width="100%" height="100%" mouseDown="moveImage();"> + <mx:Canvas id="canvas" width="100%" height="100%" mouseDown="moveImage()"> - <mx:Image id="img" source="@Embed(source='assets/ApacheFlexLogo.png')"/> + <mx:Image id="img" source="@Embed(source='assets/ApacheFlexLogo.png')" + width="50%" height="50%"/> </mx:Canvas> Modified: flex/site/trunk/content/tourdeflex/mx/effects/MoveEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/MoveEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/ParallelEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/ParallelEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/ParallelEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/ParallelEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,7 +17,9 @@ --> <!-- Simple example to demonstrate the Parallel effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> <fx:Declarations> <mx:Parallel id="expand" target="{img}"> @@ -31,10 +33,11 @@ </mx:Parallel> </fx:Declarations> - <mx:Panel title="Parallel Effect Example" width="100%" height="100%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="Parallel Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Use the Button controls to move and resize the logo in parallel."/> <mx:Canvas id="canvas" width="100%" height="100%"> @@ -43,8 +46,8 @@ </mx:Canvas> <mx:ControlBar> - <mx:Button label="Expand" click="expand.end(); expand.play();"/> - <mx:Button label="Contract" click="contract.end(); contract.play();"/> + <mx:Button label="Expand" click="expand.end(); expand.play()"/> + <mx:Button label="Contract" click="contract.end(); contract.play()"/> </mx:ControlBar> </mx:Panel> Modified: flex/site/trunk/content/tourdeflex/mx/effects/ParallelEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/ParallelEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/PauseEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/PauseEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/PauseEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/PauseEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate the Pause effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.effects.easing.*; ]]> @@ -33,14 +35,15 @@ </mx:Sequence> </fx:Declarations> - <mx:Panel title="Pause Effect Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="Pause Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Click the logo to start the Sequence effect. The effect pauses for 2 seconds between moves."/> - <mx:Image - source="@Embed(source='assets/ApacheFlexLogo.png')" + <mx:Image source="@Embed(source='assets/ApacheFlexLogo.png')" + width="50%" height="50%" mouseDownEffect="{movePauseMove}"/> </mx:Panel> Modified: flex/site/trunk/content/tourdeflex/mx/effects/PauseEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/PauseEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/ResizeEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/ResizeEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/ResizeEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/ResizeEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,25 +17,28 @@ --> <!-- Simple example to demonstrate the Resize effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> <fx:Declarations> <mx:Resize id="expand" target="{img}" widthTo="100" heightTo="200"/> <mx:Resize id="contract" target="{img}" widthTo="30" heightTo="60"/> </fx:Declarations> - <mx:Panel title="Resize Effect Example" width="100%" height="100%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="Resize Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Use the Button controls to resize the image."/> <mx:Image id="img" width="30" height="60" source="@Embed(source='assets/ApacheFlexLogo.png')"/> <mx:ControlBar> - <mx:Button label="Expand" click="expand.end(); expand.play();"/> - <mx:Button label="Contract" click="contract.end(); contract.play();"/> + <mx:Button label="Expand" click="expand.end(); expand.play()"/> + <mx:Button label="Contract" click="contract.end(); contract.play()"/> </mx:ControlBar> </mx:Panel> Modified: flex/site/trunk/content/tourdeflex/mx/effects/ResizeEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/ResizeEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/RotateEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/RotateEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/RotateEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/RotateEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate the Rotate effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ [Bindable] public var angle:int=0; @@ -44,23 +46,24 @@ <mx:Rotate id="rotate" angleFrom="{angle-45}" angleTo="{angle}" target="{myVB}"/> </fx:Declarations> - <mx:Panel title="Rotate Effect Example" horizontalAlign="center" - width="75%" height="75%" layout="horizontal" - paddingTop="5" paddingLeft="10" paddingRight="10" paddingBottom="5"> + <mx:Panel title="Rotate Effect Example" layout="horizontal" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> <mx:VBox id="myVB" width="50%" horizontalAlign="center"> <mx:Label text="Apache Flex" fontFamily="OpenSans" fontSize="14"/> - <mx:Image id="img" + <mx:Image id="img" + width="50%" height="50%" source="@Embed(source='assets/ApacheFlexLogo.png')"/> </mx:VBox> - <mx:Text width="50%" color="blue" + <mx:Text width="50%" text="Click the button to rotate the image 45 degrees. Use an embedded font when applying the Rotate effect to text."/> <mx:ControlBar> - <mx:Button label="Rotate 45 Degrees" click="rotateImage();"/> + <mx:Button label="Rotate 45 Degrees" click="rotateImage()"/> </mx:ControlBar> </mx:Panel> </mx:Application> Modified: flex/site/trunk/content/tourdeflex/mx/effects/RotateEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/RotateEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/SequenceEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/SequenceEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/SequenceEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/SequenceEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate the Sequence effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.effects.easing.*; ]]> @@ -33,14 +35,15 @@ </mx:Sequence> </fx:Declarations> - <mx:Panel title="Sequence Effect Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="Sequence Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Click the logo to start the Sequence effect. The effect pauses for 2 seconds between moves."/> - <mx:Image - source="@Embed(source='assets/ApacheFlexLogo.png')" + <mx:Image source="@Embed(source='assets/ApacheFlexLogo.png')" + width="50%" height="50%" mouseDownEffect="{movePauseMove}"/> </mx:Panel> Modified: flex/site/trunk/content/tourdeflex/mx/effects/SequenceEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/SequenceEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/SimpleEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/SimpleEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/SimpleEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/SimpleEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate the Effect class. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.controls.Alert; @@ -42,25 +44,26 @@ <fx:Declarations> <mx:Resize id="expand" target="{img}" widthTo="100" heightTo="200" - duration="10000" effectEnd="endEffectHandler();"/> + duration="10000" effectEnd="endEffectHandler()"/> </fx:Declarations> - <mx:Panel title="Resize Effect Example" width="100%" height="100%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="Resize Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Use the Button controls to control the Resize effect."/> <mx:Image id="img" width="30" height="60" source="@Embed(source='assets/ApacheFlexLogo.png')"/> <mx:ControlBar> - <mx:Button id="button1" label="Start" click="expand.play(); button1.enabled=false;"/> - <mx:Button label="Pause" click="expand.pause();"/> - <mx:Button label="Resume" click="expand.resume();"/> - <mx:Button label="Reverse" click="expand.reverse();"/> - <mx:Button label="End" click="expand.end();"/> - <mx:Button label="Reset" click="resetHandler();"/> + <mx:Button id="button1" label="Start" click="expand.play(); button1.enabled=false"/> + <mx:Button label="Pause" click="expand.pause()"/> + <mx:Button label="Resume" click="expand.resume()"/> + <mx:Button label="Reverse" click="expand.reverse()"/> + <mx:Button label="End" click="expand.end()"/> + <mx:Button label="Reset" click="resetHandler()"/> </mx:ControlBar> </mx:Panel> Modified: flex/site/trunk/content/tourdeflex/mx/effects/SimpleEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/SimpleEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/SimpleTweenEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/SimpleTweenEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/SimpleTweenEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/SimpleTweenEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate the TweenEffect class. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.events.TweenEvent; @@ -44,14 +46,15 @@ <fx:Declarations> <mx:Resize id="expand" target="{img}" widthTo="100" heightTo="200" duration="10000" - tweenUpdate="tweenUpdateHandler(event);" - tweenEnd="tweenUpdateHandler(event);"/> + tweenUpdate="tweenUpdateHandler(event)" + tweenEnd="tweenUpdateHandler(event)"/> </fx:Declarations> - <mx:Panel title="Resize Effect Example" width="100%" height="100%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="Resize Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Use the Button controls to resize the image."/> <mx:HBox width="100%"> @@ -61,12 +64,12 @@ </mx:HBox> <mx:ControlBar> - <mx:Button id="button1" label="Start" click="expand.play(); button1.enabled=false;"/> - <mx:Button label="Pause" click="expand.pause();"/> - <mx:Button label="Resume" click="expand.resume();"/> - <mx:Button label="Reverse" click="expand.reverse();"/> - <mx:Button label="End" click="expand.end();"/> - <mx:Button label="Reset" click="resetHandler();"/> + <mx:Button id="button1" label="Start" click="expand.play(); button1.enabled=false"/> + <mx:Button label="Pause" click="expand.pause()"/> + <mx:Button label="Resume" click="expand.resume()"/> + <mx:Button label="Reverse" click="expand.reverse()"/> + <mx:Button label="End" click="expand.end()"/> + <mx:Button label="Reset" click="resetHandler()"/> </mx:ControlBar> </mx:Panel> Modified: flex/site/trunk/content/tourdeflex/mx/effects/SimpleTweenEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/SimpleTweenEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/SoundEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/SoundEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/SoundEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/SoundEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,19 +17,23 @@ --> <!-- Simple example to demonstrate the SoundEffect effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> <fx:Declarations> <mx:SoundEffect id="mySounds" source="@Embed(source='./assets/ping.mp3')"/> </fx:Declarations> - <mx:Panel title="Sound Effect Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="Sound Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Label width="100%" color="blue" + <mx:Label width="100%" text="Click on the logo to hear the sound effect."/> - <mx:Image id="flex" source="@Embed(source='assets/ApacheFlexLogo.png')" + <mx:Image id="flex" source="@Embed(source='assets/ApacheFlexLogo.png')" + width="50%" height="50%" mouseDownEffect="{mySounds}"/> </mx:Panel> Modified: flex/site/trunk/content/tourdeflex/mx/effects/SoundEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/SoundEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/WipeDownExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/WipeDownExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/WipeDownExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/WipeDownExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,17 +17,20 @@ --> <!-- Simple example to demonstrate the WipeDown effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> <fx:Declarations> <mx:WipeDown id="wipeOut" duration="1000"/> <mx:WipeDown id="wipeIn" duration="1000"/> </fx:Declarations> - <mx:Panel title="WipeDown Effect Example" width="95%" height="95%" - paddingTop="5" paddingLeft="10" paddingRight="10" paddingBottom="5"> + <mx:Panel title="WipeDown Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Use the WipeDown effect to show or hide the text and image."/> <mx:Label text="Apache Flex" @@ -36,6 +39,7 @@ hideEffect="{wipeOut}" showEffect="{wipeIn}"/> <mx:Image source="@Embed(source='assets/ApacheFlexLogo.png')" + width="50%" height="50%" visible="{cb1.selected}" hideEffect="{wipeOut}" showEffect="{wipeIn}"/> Modified: flex/site/trunk/content/tourdeflex/mx/effects/WipeDownExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/WipeDownExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/WipeLeftExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/WipeLeftExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/WipeLeftExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/WipeLeftExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,17 +17,20 @@ --> <!-- Simple example to demonstrate the WipeLeft effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> <fx:Declarations> <mx:WipeLeft id="wipeOut" duration="1000"/> <mx:WipeLeft id="wipeIn" duration="1000"/> </fx:Declarations> - <mx:Panel title="WipeLeft Effect Example" width="95%" height="95%" - paddingTop="5" paddingLeft="10" paddingRight="10" paddingBottom="5"> + <mx:Panel title="WipeLeft Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Use the WipeLeft effect to show or hide the text and image."/> <mx:Label text="Apache Flex" @@ -35,7 +38,8 @@ visible="{cb1.selected}" hideEffect="{wipeOut}" showEffect="{wipeIn}"/> - <mx:Image source="@Embed(source='assets/ApacheFlexLogo.png')" + <mx:Image source="@Embed(source='assets/ApacheFlexLogo.png')" + width="50%" height="50%" visible="{cb1.selected}" hideEffect="{wipeOut}" showEffect="{wipeIn}"/> Modified: flex/site/trunk/content/tourdeflex/mx/effects/WipeLeftExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/WipeLeftExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/WipeRightExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/WipeRightExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/WipeRightExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/WipeRightExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,17 +17,20 @@ --> <!-- Simple example to demonstrate the WipeRight effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> <fx:Declarations> <mx:WipeRight id="wipeOut" duration="1000"/> <mx:WipeRight id="wipeIn" duration="1000"/> </fx:Declarations> - <mx:Panel title="WipeRight Effect Example" width="95%" height="95%" - paddingTop="5" paddingLeft="10" paddingRight="10" paddingBottom="5"> + <mx:Panel title="WipeRight Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Use the WipeRight effect to show or hide the text and image."/> <mx:Label text="Apache Flex" @@ -35,7 +38,8 @@ visible="{cb1.selected}" hideEffect="{wipeOut}" showEffect="{wipeIn}"/> - <mx:Image source="@Embed(source='assets/ApacheFlexLogo.png')" + <mx:Image source="@Embed(source='assets/ApacheFlexLogo.png')" + width="50%" height="50%" visible="{cb1.selected}" hideEffect="{wipeOut}" showEffect="{wipeIn}"/> Modified: flex/site/trunk/content/tourdeflex/mx/effects/WipeRightExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/WipeRightExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/WipeUpExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/WipeUpExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/WipeUpExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/WipeUpExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,17 +17,20 @@ --> <!-- Simple example to demonstrate the WipeUp effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> <fx:Declarations> <mx:WipeUp id="wipeOut" duration="1000"/> <mx:WipeUp id="wipeIn" duration="1000"/> </fx:Declarations> - <mx:Panel title="WipeUp Effect Example" width="95%" height="95%" - paddingTop="5" paddingLeft="10" paddingRight="10" paddingBottom="5"> + <mx:Panel title="WipeUp Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Use the WipeUp effect to show or hide the text and image."/> <mx:Label text="Apache Flex" @@ -35,7 +38,8 @@ visible="{cb1.selected}" hideEffect="{wipeOut}" showEffect="{wipeIn}"/> - <mx:Image source="@Embed(source='assets/ApacheFlexLogo.png')" + <mx:Image source="@Embed(source='assets/ApacheFlexLogo.png')" + width="50%" height="50%" visible="{cb1.selected}" hideEffect="{wipeOut}" showEffect="{wipeIn}"/> Modified: flex/site/trunk/content/tourdeflex/mx/effects/WipeUpExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/WipeUpExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/effects/ZoomEffectExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/ZoomEffectExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/effects/ZoomEffectExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/effects/ZoomEffectExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate the Zoom effect. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ import flash.events.MouseEvent; @@ -37,18 +39,19 @@ </fx:Script> <fx:Declarations> - <mx:Zoom id="zoomAll" zoomWidthTo="1" zoomHeightTo="1" zoomWidthFrom=".5" zoomHeightFrom=".5" /> + <mx:Zoom id="zoomAll" zoomWidthTo="0.5" zoomHeightTo="0.5" zoomWidthFrom="0.25" zoomHeightFrom="0.25" /> </fx:Declarations> - <mx:Panel title="Zoom Effect Example" width="95%" height="95%" horizontalAlign="center" - paddingTop="5" paddingLeft="10" paddingRight="10" paddingBottom="5"> + <mx:Panel title="Zoom Effect Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Move the mouse over the image to enlarge it. Move the mouse off of the image to shrink it."/> <mx:Image id="img" source="@Embed(source='assets/ApacheFlexLogo.png')" - scaleX=".5" scaleY=".5" + scaleX="0.25" scaleY="0.25" rollOver="doZoom(event)" rollOut="doZoom(event)"/> Modified: flex/site/trunk/content/tourdeflex/mx/effects/ZoomEffectExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/effects/ZoomEffectExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/formatters/CurrencyFormatterExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/formatters/CurrencyFormatterExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/formatters/CurrencyFormatterExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/formatters/CurrencyFormatterExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate the CurrencyFormatter. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.events.ValidationResultEvent; @@ -52,8 +54,7 @@ allowNegative="true" domain="real"/> </fx:Declarations> - <mx:Panel title="CurrencyFormatter Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="CurrencyFormatter Example" height="100%" width="100%"> <mx:Form> <mx:FormItem label="Enter U.S. dollar amount:"> @@ -65,7 +66,7 @@ </mx:FormItem> <mx:FormItem> - <mx:Button label="Validate and Format" click="Format();"/> + <mx:Button label="Validate and Format" click="Format()"/> </mx:FormItem> </mx:Form> Modified: flex/site/trunk/content/tourdeflex/mx/formatters/CurrencyFormatterExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/formatters/CurrencyFormatterExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/formatters/DateFormatterExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/formatters/DateFormatterExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/formatters/DateFormatterExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/formatters/DateFormatterExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate the DateFormatter. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.events.ValidationResultEvent; @@ -46,8 +48,7 @@ <mx:DateValidator id="dateVal" source="{dob}" property="text" inputFormat="mm/dd/yyyy"/> </fx:Declarations> - <mx:Panel title="DateFormatter Example" width="95%" height="95%" - paddingTop="10" paddingLeft="5" paddingRight="5" paddingBottom="10"> + <mx:Panel title="DateFormatter Example" height="100%" width="100%"> <mx:Form width="100%"> <mx:FormItem label="Enter date (mm/dd/yyyy):" width="100%"> @@ -59,7 +60,7 @@ </mx:FormItem> <mx:FormItem> - <mx:Button label="Validate and Format" click="Format();"/> + <mx:Button label="Validate and Format" click="Format()"/> </mx:FormItem> </mx:Form> Modified: flex/site/trunk/content/tourdeflex/mx/formatters/DateFormatterExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/formatters/DateFormatterExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/formatters/NumberFormatterExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/formatters/NumberFormatterExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/formatters/NumberFormatterExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/formatters/NumberFormatterExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate NumberFormatter. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.events.ValidationResultEvent; @@ -49,8 +51,7 @@ allowNegative="true" domain="real"/> </fx:Declarations> - <mx:Panel title="NumberFormatter Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="NumberFormatter Example" height="100%" width="100%"> <mx:Form> <mx:FormItem label="Enter number:"> @@ -62,7 +63,7 @@ </mx:FormItem> <mx:FormItem> - <mx:Button label="Validate and Format" click="Format();"/> + <mx:Button label="Validate and Format" click="Format()"/> </mx:FormItem> </mx:Form> Modified: flex/site/trunk/content/tourdeflex/mx/formatters/NumberFormatterExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/formatters/NumberFormatterExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/formatters/PhoneFormatterExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/formatters/PhoneFormatterExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/formatters/PhoneFormatterExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/formatters/PhoneFormatterExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate PhoneFormatter. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.events.ValidationResultEvent; @@ -48,8 +50,7 @@ allowedFormatChars=""/> </fx:Declarations> - <mx:Panel title="PhoneFormatter Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="PhoneFormatter Example" height="100%" width="100%"> <mx:Form> <mx:FormItem label="Enter a 10-digit phone number:"> @@ -61,7 +62,7 @@ </mx:FormItem> <mx:FormItem> - <mx:Button label="Validate and Format" click="Format();"/> + <mx:Button label="Validate and Format" click="Format()"/> </mx:FormItem> </mx:Form> Modified: flex/site/trunk/content/tourdeflex/mx/formatters/PhoneFormatterExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/formatters/PhoneFormatterExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/formatters/SimpleFormatterExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/formatters/SimpleFormatterExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/formatters/SimpleFormatterExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/formatters/SimpleFormatterExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate the Formatter class. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ // Event handler to format the input. @@ -46,8 +48,7 @@ <mx:NumberFormatter id="numberFormatter"/> </fx:Declarations> - <mx:Panel title="NumberFormatter Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="NumberFormatter Example" height="100%" width="100%"> <mx:Form> <mx:FormItem label="Enter number - a letter is invalid:"> @@ -59,7 +60,7 @@ </mx:FormItem> <mx:FormItem> - <mx:Button label="Validate and Format" click="Format();"/> + <mx:Button label="Validate and Format" click="Format()"/> </mx:FormItem> </mx:Form> Modified: flex/site/trunk/content/tourdeflex/mx/formatters/SimpleFormatterExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/formatters/SimpleFormatterExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/formatters/SwitchSymbolFormatterExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/formatters/SwitchSymbolFormatterExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/formatters/SwitchSymbolFormatterExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/formatters/SwitchSymbolFormatterExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate SwitchSymbolFormatter. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.formatters.SwitchSymbolFormatter; @@ -50,13 +52,14 @@ <mx:SocialSecurityValidator id="scVal" source="{scNum}" property="text"/> </fx:Declarations> - <mx:Panel title="SwitchSymbolFormatter Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="SwitchSymbolFormatter Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> <mx:Label text="Enter a 9 digit Social Security number with no separator characters:"/> <mx:TextInput id="scNum" text="" maxChars="9" width="50%"/> - <mx:Button label="Validate and Format" click="Format();"/> + <mx:Button label="Validate and Format" click="Format()"/> <mx:TextInput id="formattedSCNumber" editable="false" width="75%"/> </mx:Panel> Modified: flex/site/trunk/content/tourdeflex/mx/formatters/SwitchSymbolFormatterExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/formatters/SwitchSymbolFormatterExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/formatters/ZipCodeFormatterExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/formatters/ZipCodeFormatterExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/formatters/ZipCodeFormatterExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/formatters/ZipCodeFormatterExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate ZipCodeFormatter. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.events.ValidationResultEvent; @@ -47,8 +49,7 @@ <mx:ZipCodeValidator id="zcVal" source="{zip}" property="text" allowedFormatChars=""/> </fx:Declarations> - <mx:Panel title="ZipCodeFormatter Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="ZipCodeFormatter Example" height="100%" width="100%"> <mx:Form width="100%"> <mx:FormItem label="Enter a 5 or 9 digit U.S. ZIP code:" width="100%"> @@ -60,7 +61,7 @@ </mx:FormItem> <mx:FormItem> - <mx:Button label="Validate and Format" click="Format();"/> + <mx:Button label="Validate and Format" click="Format()"/> </mx:FormItem> </mx:Form> Modified: flex/site/trunk/content/tourdeflex/mx/formatters/ZipCodeFormatterExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/formatters/ZipCodeFormatterExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/printing/AdvancedPrintDataGridExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/printing/AdvancedPrintDataGridExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/printing/AdvancedPrintDataGridExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/printing/AdvancedPrintDataGridExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- printing\ADGPrint.mxml --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.printing.*; import mx.collections.ArrayCollection; @@ -81,8 +83,8 @@ </fx:Script> <mx:Panel title="PrintAdvancedDataGrid Control Example" - height="75%" width="75%" layout="horizontal" - paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10"> + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> <mx:AdvancedDataGrid id="adg" width="100%" height="100%"> @@ -100,6 +102,6 @@ <mx:Button id="myButton" label="Print" - click="doPrint();"/> + click="doPrint()"/> </mx:Panel> </mx:Application> \ No newline at end of file Modified: flex/site/trunk/content/tourdeflex/mx/printing/AdvancedPrintDataGridExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/printing/AdvancedPrintDataGridExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/printing/FormPrintFooter.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/printing/FormPrintFooter.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/printing/FormPrintFooter.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/printing/FormPrintFooter.mxml Sat Nov 29 07:19:59 2014 @@ -19,14 +19,16 @@ <!-- Custom control for the footer area of the printed page. --> <mx:VBox xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" - width="60%" horizontalAlign="right" > + width="60%" horizontalAlign="right"> + <!-- Declare and initialize the product total variable. --> - - <fx:Script> + <fx:Script> <![CDATA[ [Bindable] public var pTotal:Number = 0; ]]> </fx:Script> + <mx:Label text="Product Total: {pTotal}"/> + </mx:VBox> \ No newline at end of file Modified: flex/site/trunk/content/tourdeflex/mx/printing/FormPrintFooter.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/printing/FormPrintFooter.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/printing/FormPrintHeader.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/printing/FormPrintHeader.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/printing/FormPrintHeader.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/printing/FormPrintHeader.mxml Sat Nov 29 07:19:59 2014 @@ -19,7 +19,7 @@ <!-- Custom control for the header area of the printed page. --> <mx:VBox xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" - width="60%" horizontalAlign="right" > + width="60%" horizontalAlign="right"> <mx:Label text="This is a placeholder for first page contents"/> </mx:VBox> \ No newline at end of file Modified: flex/site/trunk/content/tourdeflex/mx/printing/FormPrintHeader.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/printing/FormPrintHeader.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/printing/FormPrintView.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/printing/FormPrintView.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/printing/FormPrintView.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/printing/FormPrintView.mxml Sat Nov 29 07:19:59 2014 @@ -21,7 +21,7 @@ <mx:VBox xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" xmlns="*" backgroundColor="#FFFFFF" paddingTop="50" paddingBottom="50" paddingLeft="50"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.core.* // Declare and initialize the variables used in the component. Modified: flex/site/trunk/content/tourdeflex/mx/printing/FormPrintView.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/printing/FormPrintView.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/printing/PrintDataGridExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/printing/PrintDataGridExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/printing/PrintDataGridExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/printing/PrintDataGridExample.mxml Sat Nov 29 07:19:59 2014 @@ -18,9 +18,10 @@ <!-- Main application to print a DataGrid control on multiple pages. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" initialize="initData();"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" initialize="initData()"> - <fx:Script> + <fx:Script> <![CDATA[ import mx.core.FlexGlobals; @@ -120,8 +121,9 @@ ]]> </fx:Script> - <mx:Panel title="DataGrid Printing Example" height="75%" width="75%" - paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10"> + <mx:Panel title="DataGrid Printing Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> <mx:DataGrid id="myDataGrid" dataProvider="{dgProvider}"> <mx:columns> @@ -130,14 +132,14 @@ </mx:columns> </mx:DataGrid> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Specify the number of lines and click Fill Grid first. Then you can click Print."/> <mx:TextInput id="dataItems" text="35"/> <mx:HBox> - <mx:Button id="setDP" label="Fill Grid" click="setdgProvider(int(dataItems.text));"/> - <mx:Button id="printDG" label="Print" click="doPrint();"/> + <mx:Button id="setDP" label="Fill Grid" click="setdgProvider(int(dataItems.text))"/> + <mx:Button id="printDG" label="Print" click="doPrint()"/> </mx:HBox> </mx:Panel> </mx:Application> \ No newline at end of file Modified: flex/site/trunk/content/tourdeflex/mx/printing/PrintDataGridExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/printing/PrintDataGridExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/states/StatesExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/states/StatesExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/states/StatesExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/states/StatesExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,7 +17,9 @@ --> <!-- Simple example to demonstrate the States class. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> <!-- Define one view state, in addition to the base state.--> <mx:states> @@ -27,10 +29,11 @@ <!-- Define a Panel container that defines the login form.--> <mx:Panel title="Login" title.register="Register" id="loginPanel" - horizontalScrollPolicy="off" verticalScrollPolicy="off" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + horizontalScrollPolicy="off" verticalScrollPolicy="off" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Click the 'Need to Register?' link to change state. Click the 'Return to Login' link to return to the base state."/> <mx:Form id="loginForm"> Modified: flex/site/trunk/content/tourdeflex/mx/states/StatesExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/states/StatesExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/states/TransitionExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/states/TransitionExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/states/TransitionExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/states/TransitionExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,7 +17,9 @@ --> <!-- Simple example to demonstrate the Transition class. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> <!-- Define one view state, in addition to the base state.--> <mx:states> @@ -53,10 +55,11 @@ <!-- Define a Panel container that defines the login form.--> <mx:Panel title="Login" title.register="Register" id="loginPanel" - horizontalScrollPolicy="off" verticalScrollPolicy="off" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + horizontalScrollPolicy="off" verticalScrollPolicy="off" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> - <mx:Text width="100%" color="blue" + <mx:Text width="100%" text="Click the 'Need to Register?' link to change state. Click the 'Return to Login' link to return to the base state."/> <mx:Form id="loginForm"> Modified: flex/site/trunk/content/tourdeflex/mx/states/TransitionExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/states/TransitionExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/validators/CreditCardValidatorExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/validators/CreditCardValidatorExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/validators/CreditCardValidatorExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/validators/CreditCardValidatorExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate the CreditCardValidator. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> - - <fx:Script> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> + + <fx:Script> import mx.controls.Alert; </fx:Script> @@ -38,12 +40,13 @@ trigger="{myButton}" triggerEvent="click" cardTypeListener="{cardTypeCombo}" cardNumberListener="{cardNumberInput}" - valid="Alert.show('Validation Succeeded!');"/> + valid="Alert.show('Validation Succeeded!')"/> </fx:Declarations> - <mx:Panel title="CreditCardValidator Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> - + <mx:Panel title="CreditCardValidator Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> + <mx:Form id="creditCardForm"> <mx:FormItem label="Card Type"> <mx:ComboBox id="cardTypeCombo"> Modified: flex/site/trunk/content/tourdeflex/mx/validators/CreditCardValidatorExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/validators/CreditCardValidatorExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/validators/CurrencyValidatorExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/validators/CurrencyValidatorExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/validators/CurrencyValidatorExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/validators/CurrencyValidatorExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,20 +17,23 @@ --> <!-- Simple example to demonstrate the CurrencyValidator. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> import mx.controls.Alert; </fx:Script> <fx:Declarations> <mx:CurrencyValidator source="{priceUS}" property="text" precision="2" trigger="{myButton}" triggerEvent="click" - valid="Alert.show('Validation Succeeded!');"/> + valid="Alert.show('Validation Succeeded!')"/> </fx:Declarations> - <mx:Panel title="CurrencyValidator Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="CurrencyValidator Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> <mx:Form> <mx:FormItem label="Enter a U.S. dollar amount: "> Modified: flex/site/trunk/content/tourdeflex/mx/validators/CurrencyValidatorExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/validators/CurrencyValidatorExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/validators/DateValidatorExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/validators/DateValidatorExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/validators/DateValidatorExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/validators/DateValidatorExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,9 +17,11 @@ --> <!-- Simple example to demonstrate the DateValidator. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> import mx.controls.Alert; </fx:Script> @@ -32,11 +34,12 @@ <mx:DateValidator source="{dob}" property="text" allowedFormatChars="/" trigger="{myButton}" triggerEvent="click" - valid="Alert.show('Validation Succeeded!');"/> + valid="Alert.show('Validation Succeeded!')"/> </fx:Declarations> - <mx:Panel title="DateValidator Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="DateValidator Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> <mx:Form> <mx:FormItem label="Enter date of birth (mm/dd/yyyy): "> Modified: flex/site/trunk/content/tourdeflex/mx/validators/DateValidatorExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/validators/DateValidatorExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available. Modified: flex/site/trunk/content/tourdeflex/mx/validators/EmailValidatorExample.mxml URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/validators/EmailValidatorExample.mxml?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== --- flex/site/trunk/content/tourdeflex/mx/validators/EmailValidatorExample.mxml (original) +++ flex/site/trunk/content/tourdeflex/mx/validators/EmailValidatorExample.mxml Sat Nov 29 07:19:59 2014 @@ -17,20 +17,23 @@ --> <!-- Simple example to demonstrate the EmailValidator. --> -<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx"> +<mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:mx="library://ns.adobe.com/flex/mx" + paddingBottom="0" paddingTop="0" paddingLeft="0" paddingRight="0" + height="100%" width="100%"> - <fx:Script> + <fx:Script> import mx.controls.Alert; </fx:Script> <fx:Declarations> <mx:EmailValidator source="{email}" property="text" trigger="{myButton}" triggerEvent="click" - valid="Alert.show('Validation Succeeded!');"/> + valid="Alert.show('Validation Succeeded!')"/> </fx:Declarations> - <mx:Panel title="EmailValidator Example" width="75%" height="75%" - paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10"> + <mx:Panel title="EmailValidator Example" + paddingBottom="10" paddingTop="10" paddingLeft="10" paddingRight="10" + height="100%" width="100%"> <mx:Form> <mx:FormItem label="Enter an e-mail address: "> Modified: flex/site/trunk/content/tourdeflex/mx/validators/EmailValidatorExample.swf URL: http://svn.apache.org/viewvc/flex/site/trunk/content/tourdeflex/mx/validators/EmailValidatorExample.swf?rev=1642397&r1=1642396&r2=1642397&view=diff ============================================================================== Binary files - no diff available.
