Yep, here's an example:
private var _myProperty:String;
[Transient]
[Bindable( event="myPropertyChange" )]
/**
* myProperty.
* @private
*/
public function get myProperty():String
{
return _myProperty;
}
/** @private */
public function set myProperty( value:String ):void
{
_myProperty = value;
dispatchEvent( new Event( "myPropertyChange" ) );
}
-TH
--- In [email protected], "Amy" <amyblankens...@...> wrote:
>
> --- In [email protected], ouaqa ab@ wrote:
> >
> >
> > This is an option but i was wondering if you couldn't use some
special
> > "ninja" keyword telling lcds not to map the field to lcds.
>
> Transient?
>