Re: [Flashcoders] MVC - ScreenManager

2012-03-27 Thread Peter Ginneberge
Sent: Monday, March 26, 2012 7:07 PM Subject: Re: [Flashcoders] MVC - ScreenManager If I'm loading XML would that be done in the model or the controller? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com

Re: [Flashcoders] MVC - ScreenManager

2012-03-26 Thread Creighton, Gerry
If I'm loading XML would that be done in the model or the controller? On 3/9/12 9:06 AM, Glen Pike g...@engineeredarts.co.uk wrote: :D On 09/03/2012 05:20, Karl DeSaulniers wrote: If you can't take the Henrik, get out of the kitchen.. lol ___

Re: [Flashcoders] MVC - ScreenManager

2012-03-26 Thread Ross Sclafani
In my approach, the controller loads the XML, then puts it in the model which causes a CHANGE event to dispatch. Ross P. Sclafani Owner / Creative Director Neuromantic Industries http://www.neuromantic.com http://ross.sclafani.net http://www.twitter.com/rosssclafani 347.204.5714 On Mar 26,

Re: [Flashcoders] MVC - ScreenManager

2012-03-26 Thread tom rhodes
well, either you can add an Service to MVC and get MVCS, or perhaps your main app controller would load it if it's config stuff and set up models accordingly. i imagine you have a model ready and waiting to store the info in? basically you want to keep app logic out of models, they just want to

Re: [Flashcoders] MVC - ScreenManager

2012-03-26 Thread Creighton, Gerry
I thought that it should be in the controller. Just wanted to be certain. Thanks, -Gerry On 3/26/12 1:21 PM, tom rhodes tom.rho...@gmail.com wrote: well, either you can add an Service to MVC and get MVCS, or perhaps your main app controller would load it if it's config stuff and set up models

RE: [Flashcoders] MVC - ScreenManager

2012-03-26 Thread Merrill, Jason
Global Learning ___ -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Creighton, Gerry Sent: Monday, March 26, 2012 1:25 PM To: Flash Coders List Subject: Re: [Flashcoders] MVC

Re: [Flashcoders] MVC - ScreenManager

2012-03-26 Thread Ross Sclafani
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Creighton, Gerry Sent: Monday, March 26, 2012 1:25 PM To: Flash Coders List Subject: Re: [Flashcoders] MVC - ScreenManager I thought that it should be in the controller. Just wanted to be certain. Thanks, -Gerry On 3

Re: [Flashcoders] MVC - ScreenManager

2012-03-09 Thread Glen Pike
:D On 09/03/2012 05:20, Karl DeSaulniers wrote: If you can't take the Henrik, get out of the kitchen.. lol ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] MVC - ScreenManager

2012-03-08 Thread Ross Sclafani
This guys approach sounds a lot like mine. At an airport but I'll try to check out his files Ross P. Sclafani Owner / Creative Director Neuromantic Industries http://www.neuromantic.com http://ross.sclafani.net http://www.twitter.com/rosssclafani 347.204.5714 On Mar 8, 2012, at 9:14 AM, Terry

Re: [Flashcoders] MVC - ScreenManager

2012-03-08 Thread Terry Riney
On 3/8/2012 9:49 AM, Ross Sclafani wrote: This guys approach sounds a lot like mine. At an airport but I'll try to check out his files Ross P. Sclafani Owner / Creative Director Neuromantic Industries http://www.neuromantic.com http://ross.sclafani.net http://www.twitter.com/rosssclafani

Re: [Flashcoders] MVC - ScreenManager

2012-03-08 Thread Terry Riney
On 3/8/2012 11:16 AM, Terry Riney wrote: On 3/8/2012 9:49 AM, Ross Sclafani wrote: This guys approach sounds a lot like mine. At an airport but I'll try to check out his files Ross P. Sclafani Owner / Creative Director Neuromantic Industries http://www.neuromantic.com http://ross.sclafani.net

Re: [Flashcoders] MVC - ScreenManager

2012-03-08 Thread Terry Riney
On 3/8/2012 11:38 AM, Terry Riney wrote: On 3/8/2012 11:16 AM, Terry Riney wrote: On 3/8/2012 9:49 AM, Ross Sclafani wrote: This guys approach sounds a lot like mine. At an airport but I'll try to check out his files Ross P. Sclafani Owner / Creative Director Neuromantic Industries

Re: [Flashcoders] MVC - ScreenManager

2012-03-08 Thread Terry Riney
On 3/8/2012 11:47 AM, Terry Riney wrote: On 3/8/2012 11:38 AM, Terry Riney wrote: On 3/8/2012 11:16 AM, Terry Riney wrote: On 3/8/2012 9:49 AM, Ross Sclafani wrote: This guys approach sounds a lot like mine. At an airport but I'll try to check out his files Ross P. Sclafani Owner / Creative

Re: [Flashcoders] MVC - ScreenManager

2012-03-08 Thread Henrik Andersson
Terry Riney skriver: Would like to pass a score/time/damage to client will stick with score/damage right now: package observer{ import observer.Observer; /** * A Java-style Observable class used to represent the subject * of the Observer design pattern. Observers must

Re: [Flashcoders] MVC - ScreenManager

2012-03-08 Thread Terry Riney
On 3/8/2012 12:42 PM, Henrik Andersson wrote: Terry Riney skriver: Would like to pass a score/time/damage to client will stick with score/damage right now: package observer{ import observer.Observer; /** * A Java-style Observable class used to represent the subject * of

Re: [Flashcoders] MVC - ScreenManager

2012-03-08 Thread Karl DeSaulniers
If you can't take the Henrik, get out of the kitchen.. lol On Mar 8, 2012, at 11:53 AM, Terry Riney wrote: On 3/8/2012 12:42 PM, Henrik Andersson wrote: Terry Riney skriver: Would like to pass a score/time/damage to client will stick with score/damage right now: package observer{