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 flexcoders@yahoogroups.com, "Amy" <amyblankens...@...> wrote:
>
> --- In flexcoders@yahoogroups.com, 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?
>


Reply via email to