understanding as3 context menus

understanding as3 context menus

ID:24296227

大小:54.00 KB

页数:4页

时间:2018-11-13

understanding as3 context menus_第1页
understanding as3 context menus_第2页
understanding as3 context menus_第3页
understanding as3 context menus_第4页
资源描述:

《understanding as3 context menus》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库

1、UnderstandingAS3contextmenus  Youallshouldknoenu.  Acontextmenu(alsocalledcontextual,shortcut,andpopuporpop-upmenu)isamenuinagraphicaluserinterface(GUI)thatappearsuponuserinteraction,suchasarightmouseclick.Acontextmenuoffersalimitedsetofchoicesthatareavailableinth

2、ecurrentstate,orcontext,oftheoperatingsystemorapplication(source:enu; import flash.ui.ContextMenuItem; import flash.events.ContextMenuEvent; public class context extends Sprite {  // this is the circle you see on the stage  public var the_sphere:sphere=neenus  pub

3、lic var place_randomly_menu:ContextMenu=neenu:ContextMenu=neenu items  public var place_randomly_item:ContextMenuItem=ne("Place randomly");  public var reset_item:ContextMenuItem=ne("Reset");  public function context() {   // placing the circle on the stage   addC

4、hild(the_sphere);   // calling the function to place the sphere in the middle of the stage   // I am passing a null value because it's the same function I am using   // in the listener, and functions in listeners require a parameter   reset_sphere(null);   // addi

5、ng to the context menu item a listener to execute "place_sphere" function   place_randomly_item.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT,place_sphere);   // hiding default items in the context menu   place_randomly_menu.hideBuiltInItems();   // pusing (i

6、n this case placing) the menu item in the context menu   place_randomly_menu.customItems.push(place_randomly_item);   // assigning the context menu to the circle   the_sphere.contextMenu=(place_randomly_menu)   // repeating the same thing enu, the stage one   rese

7、t_item.addEventListener(ContextMenuEvent.MENU_ITEM_SELECT,reset_sphere);   reset_menu.hideBuiltInItems();   reset_menu.customItems.push(reset_item);12下一页[感谢阅读这篇文章,..,]this.contextMenu=reset_menu;  }  public function place_sphere(event:ContextMenuEvent):void {   th

8、e_sphere.x=Math.random()*400+50;   the_sphere.y=Math.random()*300+50;  }  public function reset_sphere(event:ContextMenuEvent):void {   the_sphere.x=250

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。