Hi, I see what you r problem is now, You need to change these icons (styles);
radioIcon, radioDisabledIcon, checkIcon, checkDisabledIcon. You see the default.css is; radioIcon: Embed(source="Assets.swf",symbol="MenuRadioEnabled"); That will solve your problem. Mike On Tue, Oct 21, 2008 at 5:58 AM, itdanny2002 <[EMAIL PROTECTED]> wrote: > Please check the code: > > <?xml version="1.0" encoding="utf-8"?> > <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" > layout="absolute" backgroundGradientAlphas="[1.0, 1.0]" > backgroundGradientColors="[#000033, #000033]"> > <mx:Script> > <![CDATA[ > [Bindable] > private var setData:Array = [ > {label:"Menu", type:"normal", children:[ > {label: "A", type:"radio", groupName: "S1"}, > {label: "B", type:"radio", groupName: "S1", toggled:true}, > {label: "C", type:"check",toggled:true }]}]; > ]]> > </mx:Script> > > <mx:Style> > .menuStyle { > iconColor: #ffff00; > background-color: #000033; > textSelectedColor: #000000; > color: #cccc00; > } > </mx:Style> > > <mx:MenuBar dataProvider="{setData}" menuStyleName="menuStyle" > ></mx:MenuBar> > > </mx:Application> > > > -- Teoti Graphix, LLC http://www.teotigraphix.com Teoti Graphix Blog http://www.blog.teotigraphix.com You can find more by solving the problem then by 'asking the question'.

