flash on 2010-6-7

by kihon
♥0 | Line 10 | Modified 2010-06-07 02:25:36 | 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/rwlr
 */

<?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 startDelay="1000" duration="2000" id="anime" target="{button}" property="width" fromValue="70" toValue="200" />
	</fx:Declarations>
	
	<s:Button id="button" x="100" y="100" />
	<s:Button x="200" y="300" label="play" click="anime.play();" />
</s:Application>