RE: [flexcoders] Applications forgetting variables

2005-11-10 Thread Matt Chotin
: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Applications forgetting variables   What do you mean recreating classes -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders

Re: [flexcoders] Applications forgetting variables

2005-11-10 Thread nostra72
What do you mean recreating classes -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com YAHOO! GROUPS LINKS  Visit your group "flexcoders" on the w

RE: [flexcoders] Applications forgetting variables

2005-11-09 Thread Matt Chotin
Nope, are you sure you’re not re-creating classes?     From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, November 09, 2005 9:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Applications forgetting vari

RE: [flexcoders] Applications forgetting variables

2005-05-26 Thread Tracy Spratt
@yahoogroups.com] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, May 26, 2005 1:16 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Applications forgetting variables   perhaps you are right do you know of any such tutorial. The reason I do not post a lot of my code is its way to long and

Re: [flexcoders] Applications forgetting variables

2005-05-25 Thread nostra72
perhaps you are right do you know of any such tutorial. The reason I do not post a lot of my code is its way to long and complicated. I would rather post a simple example of code Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/  To unsub

RE: [flexcoders] Applications forgetting variables

2005-05-25 Thread Gordon Smith
ders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, May 25, 2005 2:31 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Applications forgetting variables   Ok assuming your right and again I hope this is not another silly question but what does a

Re: [flexcoders] Applications forgetting variables

2005-05-25 Thread Jordan Snyder
It all depends on WHERE you declare the variable. In the first case, you were defining your var outisde of the function, which should keep its value even when the function is through running. If you declare the var inside the function, however, that variable will be destroyed when that function i

Re: [flexcoders] Applications forgetting variables

2005-05-25 Thread nostra72
Ok assuming your right and again I hope this is not another silly question but what does a local variable look like and what does an instance variable look like? To me I just thought all variables were just like this public var name:String you know things like that Yahoo! Groups Links T

RE: [flexcoders] Applications forgetting variables

2005-05-25 Thread Erik Westra
The difference between these two approaches is scope.   In your first example u create a variable on the instance of the class u are working in. This variable exists as long as that instance has a reference somewhere in the application.   In the second example u create a variable inside

RE: [flexcoders] Applications forgetting variables

2005-05-24 Thread Gordon Smith
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, May 24, 2005 9:58 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Applications forgetting variables   I will set a variable to be a certain amount in one function then call it in a later functi

Re: [flexcoders] Applications forgetting variables

2005-05-24 Thread nostra72
I will set a variable to be a certain amount in one function then call it in a later function and its completely forgotten it Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/  To unsubscribe from this group, send an email to:[EMAIL PROTE

RE: [flexcoders] Applications forgetting variables

2005-05-24 Thread Gordon Smith
Can you be more specific about what you mean when you say "it keeps forgetting", or post a tiny but complete that demonstrates the problem?   The meanings of 'var age' in your two examples are very different. Your second example would "forget" that you set age to 23, because you are se