Re: [Flashcoders] central up to date data

2007-10-24 Thread Rich Rainbolt
Unsubscribe Remove On Oct 19, 2007, at 4:49 PM, David Ngo wrote: You may want to look into using a Singleton or static class, depending on how you have things implemented and what the desired functionality is. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

Re: [Flashcoders] central up to date data

2007-10-24 Thread Rich Rainbolt
Unsubscribe Remove On Oct 20, 2007, at 5:21 AM, Michael Ypes wrote: Great to have the list back, I was worried for a while that it was gone forever, phew In answer to your question: Create a singleton class which stores all data. I use this in applications to store data from xml

RE: [Flashcoders] central up to date data

2007-10-21 Thread Michael Ypes
Great to have the list back, I was worried for a while that it was gone forever, phew In answer to your question: Create a singleton class which stores all data. I use this in applications to store data from xml files and use it as a mvc pattern. This way you can extract the information

Re: [Flashcoders] central up to date data

2007-10-20 Thread Bob Leisle
Hi Tom, It's a bit hard to tell without seeing the code. If your app class and your menu class, etc. are each creating their own extension of utils, then how are those subclasses communicating? Are they calling some update function in the super class? It sounds like you need to use a

Re: [Flashcoders] central up to date data

2007-10-20 Thread Stephen Downs
You're probably running into this because you're attempting to use instance variables like static variables. If you're just storing one variable, you can use a single static variable in your ancestor class. If you wanted to access this variable akin to a local property of specific

RE: [Flashcoders] central up to date data

2007-10-20 Thread David Ngo
You may want to look into using a Singleton or static class, depending on how you have things implemented and what the desired functionality is. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tom Huynen Sent: Friday, October 19, 2007 5:41 AM To: