Add click listener to Menu : Menu « Components « Flex






Add click listener to Menu

Add click listener to Menu
      

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" height="600" width="600">
    <mx:Script>
    
    import mx.controls.*;
    import mx.events.*;

    private var myMenu:Menu;
    private function initMenu():void { 
        myMenu = new Menu();
        var dp:Object = [{label: "A"},
                         {label: "B"},
                         {label: "C"}
                        ];
        myMenu.dataProvider = dp;
        myMenu.addEventListener("itemClick", changeHandler);
        popB.popUp = myMenu;
    }
    private function changeHandler(event:MenuEvent):void {
        var label:String = event.label;
        popTypeB.text=String("Moved to " + label);
        popB.label = "Put in: " + label;
        popB.close();
    }
  
    </mx:Script>
    <mx:VBox>
        <mx:PopUpButton id="popB" label="Edit" width="135" creationComplete="initMenu();"/>
        <mx:Spacer height="50"/>
        <mx:TextInput id="popTypeB"/>
    </mx:VBox>
</mx:Application>

   
    
    
    
    
    
  








Related examples in the same category

1.Add icons to menuAdd icons to menu
2.Add submenu to submenuAdd submenu to submenu
3.Show menuShow menu
4.Define properties and reference in actionscriptDefine properties and reference in actionscript
5.Set menu to toggle menu itemSet menu to toggle menu item
6.Radio button menu itemsRadio button menu items
7.Using a nested array to drive a menu
8.CheckBox MenuItemCheckBox MenuItem
9.Creating a model that a menu uses to drive its display
10.Creating a menu from scratchCreating a menu from scratch
11.Compact way to initialize and display the menu all at onceCompact way to initialize and display the menu all at once
12.Set Menu style for disabled colorSet Menu style for disabled color
13.Show Menu at positioinShow Menu at positioin
14.Disable a menu itemDisable a menu item
15.Model for MenuModel for Menu
16.Submenu and radio button menuSubmenu and radio button menu
17.CheckBox menuCheckBox menu
18.Menu Control style settingMenu Control style setting
19.Adding icon to MenuitemAdding icon to Menuitem
20.Get clicked menu item index, label, toggle stateGet clicked menu item index, label, toggle state
21.Menu item click handlerMenu item click handler
22.Put Menu, TextInput and Button to ControlBarContentPut Menu, TextInput and Button to ControlBarContent
23.Creating a simple Menu controlCreating a simple Menu control