alert test
♥0 |
Line 16 |
Modified 2009-07-13 03:47:29 |
MIT License
archived:2017-03-30 04:55:16
ActionScript3 source code
/**
* Copyright uwi ( http://wonderfl.net/user/uwi )
* MIT License ( http://www.opensource.org/licenses/mit-license.php )
* Downloaded from: http://wonderfl.net/c/xaTY
*/
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="206" height="212" backgroundColor="#FFFFFF"
applicationComplete="onAC()"
>
<mx:Script>
<![CDATA[
import flash.display.Sprite;
import mx.core.Application;
import mx.controls.Alert;
private function onAC() : void
{
Alert.show(Application.application.url);
}
]]>
</mx:Script>
</mx:Application>