Re: [flexcoders] Modularising a flex app

2008-09-15 Thread Simon Bailey
Hi Guy, I have been building modular based Flex applications for a while and if the situation suits I really recommend modularisation. For constructing modular apps I use the PureMVC Multicore framework: http://trac.puremvc.org/PureMVC_AS3_MultiCore One you have your head round how to

Re: [flexcoders] Modularising a flex app

2008-09-15 Thread Guy Morton
Thanks guys. On 16/09/2008, at 4:44 AM, Simon Bailey wrote: Hi Guy, I have been building modular based Flex applications for a while and if the situation suits I really recommend modularisation. For constructing modular apps I use the PureMVC Multicore framework:

[flexcoders] Modularising a flex app

2008-09-13 Thread Guy Morton
Another question We have an app that has a number of parts that are not all required for all customers. What's the best way to build it to minimise file size and for ease of building and code maintenance? We currently keep the code separated in different classes and mxml components, so we

Re: [flexcoders] Modularising a flex app

2008-09-13 Thread Manu Dhanda
Using Modules is the one way to reduce the size of swf's from one to many. But, it's a big hassle while you are developing your application. As every build time is more as other modules are also part of your application and if many dev working on different modules, then dependency increases on

RE: [flexcoders] Modularising a flex app

2008-09-13 Thread Alex Harui
Conditional Compilation? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Guy Morton Sent: Friday, September 12, 2008 11:24 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Modularising a flex app Another question We have an app that has a number of parts