Search Flex Components Free

Custom Search

December 25, 2007

Flex move Effect Source Code

Flex Effects Sample Source Code:

Create a file:
MoveEffectsDemo.mxml


<?xml version="1.0" encoding="utf-8"?>

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" backgroundAlpha="0">

<mx:Panel title="moveEffect Demo" width="100%" height="100%"
horizontalAlign="center">

<mx:Label text="Click anywhere on the canvas to move the phone to that position"/>

<mx:Canvas id="canvas" width="100%" height="100%" mouseDown="img.move(mouseX - 40, mouseY - 80)">

<mx:Image id="img" source="@Embed('../assets/products/Nokia_6630.png')"
moveEffect="Move"/>

</mx:Canvas>

</mx:Panel>

</mx:Application>





Related Flex Tutorials