[Bindable] protected var _item:XML;
public function set item(value:XML):void
{
this._item = value;
}
public function get item():XML
{
return this._item;
}
There is a problem with this;
The way you have written it makes the protected _item bindable.
Try this;
protected var _item:XML;
[Bindable]
public function set item(value:XML):void
{
this._item = value;
}
public function get item():XML
{
return this._item;
}
Mike
--
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'.