flash on 2010-6-5

by kihon
♥0 | Line 14 | Modified 2010-06-05 01:34:51 | MIT License
play

ActionScript3 source code

/**
 * Copyright kihon ( http://wonderfl.net/user/kihon )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/HoJz
 */

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
			   xmlns:s="library://ns.adobe.com/flex/spark" 
			   xmlns:mx="library://ns.adobe.com/flex/mx">
	<fx:Declarations>
		<mx:AnimateProperty id="anime" property="x" fromValue="0" toValue="200" duration="3000" />
	</fx:Declarations>

	<s:Button mouseDownEffect="{anime}"/>
	<s:Button mouseDownEffect="{anime}" y="30" />
	<s:Button mouseDownEffect="{anime}" y="60" />
	<s:Button mouseDownEffect="{anime}" y="90" />
	<s:Button mouseDownEffect="{anime}" y="120" />
	<s:Button mouseDownEffect="{anime}" y="150" />
</s:Application>