[Flashcoders] private property doesn't get called?

2006-08-14 Thread ilteris kaplan
Hello I am having a really strange problem here. I have a boolean property in my class and I am trying to set its value to true as it should be, but it looks like it didn't get even instantiated in the class. Briefly in my class first sendVar method gets call from outside and pass two

Re: [Flashcoders] private property doesn't get called?

2006-08-14 Thread Meinte van't Kruis
Just had a quick look here. This is the only place you set your flag: (within closeButton) trace(flag: + this.flag); // undefined this.flag = true; So the fact that you trace it BEFORE setting it kind of explains why it traces undefined. Something that would also be good form is