[flexcoders] Applications forgetting variables

2005-11-09 Thread nostra72
I have had a problem with my applications forgetting the values of variables. My application has one mxml file and several .as files and it seems to forget the values at times in the process of running. What I want to know is this if I declare a variable in one .as file do I have to declare it

[flexcoders] Applications forgetting variables

2005-05-24 Thread nostra72
I can not help but feel I have ran in to more problems than neccessary because my flex applicaitons forget variables. I mean I know from a code standpoint I am doing the right thing when I write my code but I think it forgets variables and I think this is causing me more stress than need be. Wh

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

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-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-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-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-24 Thread Gordon Smith
is; instance variables last as long as the object itself.   - Gordon   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, May 24, 2005 7:41 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Applications forgetting variables

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
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-25 Thread Erik Westra
] Applications forgetting variables I can not help but feel I have ran in to more problems than neccessary because my flex applicaitons forget variables. I mean I know from a code standpoint I am doing the right thing when I write my code but I think it forgets variables and I think this is causing

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 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 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