<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" backgroundColor="#eeeeee">
<mx:Move id="moveOn"
xFrom="{0-myImage.width}" xTo="150"
yFrom="{0-myImage.height}" yTo="100"
duration="10000"/>
<mx:Move id="moveOff"
xTo="{0-myImage.width}" xFrom="150"
yTo="{0-myImage.height}" yFrom="100"
duration="10000"/>
<mx:Image id="myImage" source="logo.jpg" x="150" y="100" showEffect="{moveOn}" hideEffect="{moveOff}"/>
<mx:Button x="150" y="375" label="Show Image" click="myImage.visible=true"/>
<mx:Button x="374" y="375" label="Hide Image" click="myImage.visible=false"/>
</mx:Application>
|