flash on 2010-5-24
♥0 |
Line 15 |
Modified 2010-05-24 08:42:55 |
MIT License
archived:2017-03-10 01:32:02
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/uwSy
*/
<?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:Script>
<![CDATA[
protected function click(event:MouseEvent):void
{
if (button.label == "AS3") button.label = "FLASH";
else button.label = "AS3";
}
]]>
</fx:Script>
<s:Button x="101" y="195" label="ボタン" click="click(event)" id="button" />
</s:Application>