creationComplete="initCollections();">
import mx.events.MenuEvent;
import mx.controls.Alert;
import mx.collections.*;
[Bindable]
public var menuBarCollection:XMLListCollection;
private var menubarXML:XMLList =<>
>
private function initCollections():void {
menuBarCollection = new XMLListCollection(menubarXML);
}
private function changeHandler(event:MenuEvent):void {
if (event.menu != null) {
Alert.show("Label: " + event.item.@label + "\n" +"Data: " + event.item.@data, "Clicked menu item");
}
}
dataProvider="{menuBarCollection}"
change="changeHandler(event);"/>