Hi,
> /**
> * @param value The event containing new style properties.
> */
> COMPILE::JS
> protected function styleChangeHandler(value:ValueChangeEvent):void
> {
> var newStyle:Object = {};
> newStyle[value.propertyName] = value.newValue;
> ValuesManager.valuesImpl.applyStyles(this, newStyle);
> };I noticed in Application valuesImpl is a write only value can applyStlyes can’t be called on it. Is this by intent? Thanks, Justin
