If you have a public get and set foo() and you want to store it in a
variable rather than simply calculating it on get or using the value on set,
you want:

//Notice the "private" and the underscore
private var _foo:*;

public function get foo() : * { return _foo; }
public function set foo(value : *) : void { _foo = value; }

-Josh

On Thu, Aug 7, 2008 at 12:51 PM, markflex2007 <[EMAIL PROTECTED]>wrote:

> problem is fixed.
>
> I remove the line
>
> public var bindMe:String = "";
>
> Thanks
>
> Mark
>
>
> ------------------------------------
>
> --
> Flexcoders Mailing List
> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> Search Archives:
> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups
> Links
>
>
>
>


-- 
"Therefore, send not to know For whom the bell tolls. It tolls for thee."

:: Josh 'G-Funk' McDonald
:: 0437 221 380 :: [EMAIL PROTECTED]

Reply via email to