flash on 2009-6-30
♥0 |
Line 19 |
Modified 2009-06-30 21:30:51 |
MIT License
archived:2017-03-30 09:49:59
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/cmIY
*/
<?xml version="1.0" encoding="UTF-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="init()">
<mx:XMLList id="menuXML">
<menuitem label="ファイル">
<menuitem label="新規" data="New"/>
<menuitem label="開く" data="Open"/>
<menuitem label="名前を付けて保存" data="Save"/>
<menuitem label="終了" data="Exit"/>
</menuitem>
<menuitem label="編集">
<menuitem label="切り取り" data="Cut"/>
<menuitem label="コピー" data="Copy"/>
<menuitem label="貼り付け" data="Paste"/>
</menuitem>
</mx:XMLList>
<mx:ApplicationControlBar id="dockedBar" dock="true">
<mx:MenuBar height="100%" dataProvider="{menuXML}" labelField="@label" showRoot="true"/>
</mx:ApplicationControlBar>
</mx:Application>