blob: 8dbb12d7f6e87a4c70da4cd2f15d154b545694c1 [file] [log] [blame]
<?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.
-->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" verticalAlign="top"
horizontalAlign="center" backgroundGradientColors="[0x000000,0x323232]" paddingTop="0" viewSourceURL="srcview/index.html">
<mx:Script>
<![CDATA[
import mx.controls.Alert;
// Event handler for the effectEnd event.
private function endEffectHandler():void {
Alert.show("Effect Ended!");
button1.enabled=false;
button2.enabled=false;
button3.enabled=false;
button4.enabled=false;
button5.enabled=false;
button6.enabled=true;
}
// Event handler for the reset button.
private function resetHandler():void {
expand.end();
img.width=30;
img.height=60;
button1.enabled=true;
button2.enabled=false;
button3.enabled=false;
button4.enabled=false;
button5.enabled=false;
}
private function startHandler():void {
expand.play();
button1.enabled=false;
button2.enabled=true;
button3.enabled=false;
button4.enabled=true;
button5.enabled=true;
button6.enabled=true;
}
// Event handler for the reset button.
private function pauseHandler():void {
expand.pause();
button2.enabled=false;
button3.enabled=true;
}
private function resumeHandler():void {
expand.resume();
button2.enabled=true;
button3.enabled=false;
}
private function endHandler():void {
expand.end();
button1.enabled=false;
button2.enabled=false;
button3.enabled=false;
button4.enabled=false;
button5.enabled=false;
}
private function reverseHandler():void{
expand.reverse();
}
private function smoothImage(ev:Event):void{
//set image smoothing so image looks better when transformed.
var bmp:Bitmap = ev.target.content as Bitmap;
bmp.smoothing = true;
}
]]>
</mx:Script>
<mx:Resize id="expand" target="{img}" widthTo="120" heightTo="120"
duration="10000" effectEnd="endEffectHandler();"/>
<mx:Panel title="Effect" layout="vertical" color="0xffffff" borderAlpha="0.15" width="500" height="240"
paddingTop="5" paddingRight="10" paddingBottom="10" paddingLeft="10" horizontalAlign="center">
<mx:Text width="100%" color="0x323232" textAlign="center" paddingBottom="5"
text="Use the Button controls to control the Resize effect."/>
<mx:Image id="img" width="23" height="24" source="@Embed('images/helmet.jpg')" creationComplete="smoothImage(event);" />
<mx:ControlBar horizontalAlign="center">
<mx:Button id="button1" label="Start" click="startHandler();"/>
<mx:Button id="button2" label="Pause" click="pauseHandler();" enabled="false"/>
<mx:Button id="button3" label="Resume" click="resumeHandler();" enabled="false"/>
<mx:Button id="button4" label="Reverse" click="reverseHandler();" enabled="false"/>
<mx:Button id="button5" label="End" click="endHandler();" enabled="false"/>
<mx:Button id="button6" label="Reset" click="resetHandler();" enabled="false"/>
</mx:ControlBar>
</mx:Panel>
</mx:Application>