Opps.

it's friday

it's not
var button:Button = myBar.getItemAt(index) as Button

it's

var button:Button = myBar.getChildAt(index) as Button

Mike

On Fri, Aug 22, 2008 at 6:59 PM, Michael Schmalle
<[EMAIL PROTECTED]>wrote:

> Hi,
>
> The button bar is just a normal container that reacts to a dataProvider
> collection event system.
>
> If you know the index of the dataProvider item, just use;
>
> var button:Button = myBar.getItemAt(index) as Button
> button.enabled = false;
>
> I can't remember if NavBar has a method that actually returns a button.
>
> Mike
>
>
> On Fri, Aug 22, 2008 at 2:33 PM, fumeng5 <[EMAIL PROTECTED]> wrote:
>
>>   Hi.
>>
>> I want to set properties for each element in my ToggleButtonBar's
>> dataprovider, i.e. enabled, visible, etc...
>>
>> Something like this:
>>
>> (myToggleButtonBar.dataProvider.getItemAt(0) as Button).enabled = false;
>>
>> But that doesn't work.
>>
>> I know the dataprovider of a ToggleButtonBar has to be a String,
>> Array, or IList. I already tried setting the dataprovider to be a
>> collection of buttons.
>>
>> So, is it possible to set button properties on my ToggleButtonBar?
>>
>> Thanks for any tips,
>>
>> fumeng.
>>
>>  
>>
>
>
>
> --
> 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'.
>



-- 
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'.

Reply via email to