Good News:  the Delete DOES remove it from the XMLList.
Bad News:  This xml list is used as the data provider for a popupMenuButton and 
the 
options are still there in the list when I click on the button.

Should I be removing the data from the popupMenuButton directly? or is there a 
way to 
refresh the button display?

thanks

Bruce

--- In flexcoders@yahoogroups.com, "Michael Schmalle" <[EMAIL PROTECTED]> wrote:
>
> Try;
> 
> menuOptionsData[1] = null;
> 
> Or
> 
> delete menuOptionsData[1];
> 
> Peace, Mike
> 
> On 5/1/07, boy_trike <[EMAIL PROTECTED]> wrote:
> >
> >   I have an XMLList that controls the options a user can get to. It looks
> > like the following:
> >
> > <mx:XMLList id="menuOptionsData">
> > <menu label="Sales" data="S" url="/lumber/Sales" />
> > <menu label="Purchasing" data="P" url="/po/po" />
> > <menu label="Logistics" data="L" url="/logistics/lo" />
> > </mx:XMLList>
> >
> > I want to REMOVE the purchasing line. Can someone help me with the syntax.
> > (I was hoping
> > for something like "menuOptionsData[1].delete !".
> >
> > Thanks
> > Bruce
> >
> >  
> >
> 
> 
> 
> -- 
> Teoti Graphix
> http://www.teotigraphix.com
> 
> Blog - Flex2Components
> http://www.flex2components.com
> 
> You can find more by solving the problem then by 'asking the question'.
>


Reply via email to