Re: [Flashcoders] lil OOP question

2005-11-30 Thread Janis Radins
want to check if a property is "declared"? > > > You are the one who sets the declared variables inside the class. > > > > > > Is there something I'm not getting? > > > > > > Dimitrios > > > > > > - Original Messa

Re: [Flashcoders] lil OOP question

2005-11-30 Thread Dimitrios Bendilas
of this anyway. Regards, Dimitrios - Original Message - From: "Janis Radins" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent: Wednesday, November 30, 2005 3:50 PM Subject: Re: [Flashcoders] lil OOP question Explination to why I need this is ver

Re: [Flashcoders] lil OOP question

2005-11-30 Thread Ian Thomas
You are the one who sets the declared variables inside the class. > > > > Is there something I'm not getting? > > > > Dimitrios > > > > - Original Message - > > From: "Janis Radins" <[EMAIL PROTECTED]> > > To:

Re: [Flashcoders] lil OOP question

2005-11-30 Thread Janis Radins
clared variables inside the class. > > Is there something I'm not getting? > > Dimitrios > > - Original Message - > From: "Janis Radins" <[EMAIL PROTECTED]> > To: > Sent: Wednesday, November 30, 2005 3:24 PM > Subject: [Flashcoders] lil OOP qu

Re: [Flashcoders] lil OOP question

2005-11-30 Thread Dimitrios Bendilas
riginal Message - From: "Janis Radins" <[EMAIL PROTECTED]> To: Sent: Wednesday, November 30, 2005 3:24 PM Subject: [Flashcoders] lil OOP question hey ppl I'm wondering is there a way to chech wether some class function exists from constructor? smthn like: class foo { functi

Re: [Flashcoders] lil OOP question

2005-11-30 Thread Sam Shrefler
Janis, I'm just wondering why you would try and do this. I don't belive this is possible, maybe why you would want this would help with a solution... Sam On 11/30/05, Janis Radins <[EMAIL PROTECTED]> wrote: > > hey ppl > > I'm wondering is there a way to chech wether some class function > exi

[Flashcoders] lil OOP question

2005-11-30 Thread Janis Radins
hey ppl I'm wondering is there a way to chech wether some class function exists from constructor? smthn like: class foo { function foo(){ if(this class has property named fooProperty) dothis() else doThat() } public function set fooProperty (smthn):Void { someFooProperty = smth; } } As far as I'v