I am trying to update an ArrayCollection with new values from a
localeChain change. Everything tied to an display control is changing
properly, however, the ArrayCollection does not.
I've tried the following three methods for accessing the resource, but
none work. Is the ResourceManager binding ignored on AC's? Is there a
solution?
[Bindable]
public var cbDP:ArrayCollection = new ArrayCollection();
cbDP.addItem(
{label:Application.application.resourceManager.getString('myResources',
'FIRST_NAME'),
data:0});
cbDP.addItem( {label:_resourceManager.getString('myResources',
'LAST_NAME'), data:1});
cbDP.addItem(
{label:ResourceManager.getInstance().getString('myResources',
'PHONE'), data:2});