forked from: swf バージョン管理を右クリックで

by hacker_9p8x8mco forked from swf バージョン管理を右クリックで (diff: 1)
♥0 | Line 18 | Modified 2009-12-26 03:32:24 | MIT License
play

ActionScript3 source code

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

<?xml version="1.0" encoding="utf-8"?>
<!-- forked from matsu's swf バージョン管理を右クリックで -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="init();">
	<mx:Script>
		<![CDATA[
			private var PROJECT_NAME:String = "Test";
			private var VERSION:String = "1.0.0";
			private function init():void
			{
				// 右クリック メニュー
				var contextMenu:ContextMenu = new ContextMenu();
				var contextMenuItem:ContextMenuItem = new ContextMenuItem(PROJECT_NAME + " " + VERSION, true, true, true);
				contextMenu.customItems.push( contextMenuItem );
				contextMenu.hideBuiltInItems();
				this.contextMenu = contextMenu;
			}
		]]>
	</mx:Script>
</mx:Application>