Re: [Flashcoders] scope in AS3

2007-03-29 Thread Rob Romanek
On Wed, 28 Mar 2007 18:14:50 -0400, Dennis Asher [EMAIL PROTECTED] wrote: I've managed to avoid OOP till now but AS3 is here and no choice now. What's wrong in the class below? The code in the mouseover/mouseout functions do not reference the textfield correctly. I've tried adding:

RE: [Flashcoders] scope in AS3

2007-03-29 Thread Steven Sacks | BLITZ
in flash8 the propertie is _visible You are correct. However, he is coding in AS3 (see: package) and the subject of the thread has AS3 in it, which means this is Flash 9, which means the property is visible, no underscore. ___

Re: [Flashcoders] scope in AS3

2007-03-28 Thread Pedro Taranto
in flash8 the propertie is _visible, check it in the flash9 help --Pedro Taranto Dennis Asher escreveu: I've managed to avoid OOP till now but AS3 is here and no choice now. What's wrong in the class below? The code in the mouseover/mouseout functions do not reference the textfield correctly.

Re: [Flashcoders] scope in AS3

2007-03-28 Thread R�kos Attila
Your variable hello is local to the constructor, so it exists only while the constructor is executing and other methods of the class cannot use it. Make it a member of the class instead of local. Attila ___ Flashcoders@chattyfig.figleaf.com To