I had the same problem like you, but I managed to add the menu options
to the Roster component.1. Create a function addMenuOptions:private
function addMenuOptions( userDescriptor :UserDescriptor):Object{ var dp:
ArrayCollection = new ArrayCollection() // you can chose your favorite
type of dataProvider( XML, Array...) dp.addItem( {label: "Kick", data:
0}); dp.addItem( {label: "Ban", data: 1}); dp.addItem( {label: "Kick&
Ban", data: 2}); return dp;}2. Add the function to your Roster component
( m...