flash on 2010-6-6

by kihon
♥0 | Line 11 | Modified 2010-06-06 03:59:52 | 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/6VYx
 */

<?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:Iris id="irisOut" duration="1000" showTarget="false" />
		<mx:Iris id="irisIn" duration="1000" showTarget="true" />
	</fx:Declarations>
	<mx:Label id="label" text="Move Test" fontSize="40" showEffect="{irisIn}" hideEffect="{irisOut}" />
	<mx:Button  x="100" y="200" id="button" click="label.visible = !label.visible;" />
</s:Application>