> 2) I don't think you can make a variable bindable by putting [Bindable] > AFTER the variable (unless you were intending to make your button > variable bindable on dataChange). -- right, that was an error in my code. it should go before the getter, as in:
=========
// Make the data property bindable.
[Bindable("dataChange")]
public function get data():Object {
return _data;
}
=========
thanks for pointing that out.

