This is typical designing issue. Decide the common component and make it part of your core functionality. You can adopt MVC pattern for your core application logic and expose the interfaces thru view layer (so that core logic can remain unchanged).
Based on my understanding for your requirement UI will be the most impacted/changed, hence have more flexibility in that part of application and use interface layer to communicate to app. Some of the useful sites are http://www.insideria.com/2009/04/51-actionscript-30-and-flex-op.html http://www.adobe.com/devnet/flex/articles/client_perf.html http://www.adobe.com/devnet/flex/articles/server_perf.html There are lot of information on performance optimization but it seems your problem is with designing hence would suggest to first create a common framework and later address top 20% of most problemtic/slow areas. HTH, Kay Kay. On Tue, Nov 17, 2009 at 9:55 PM, li eric <[email protected]> wrote: > Hi all: > I am eric from china, now I am a flash developer in a company just > like youtube in china. > we are developing a flash video player, we have a lot of projects for video > player, and every project is different. > I got puzzled. cause our market's problem,our customer want change the > function everyday,sometimes in UI.sometimes in logic. > > my questions are : > 1.How to make it better , if I want use hardcode in client site? > 2.Which framework is good for our situation?for now we implement our > project via PUREMVC framework,but i found it's not good for modules > interaction. > 3.In order to decrease the size of swf file,we choose pure as3 project > ,but sometimes it's not convinent for us to change the UI skin,(sometimes we > implment UI via pure as3 in flex,it's horrible) > 4.do you guys have any standard for coding in as3,cause sometimes our code > is too bad.:) > > > > -- > You received this message because you are subscribed to the Google Groups > "Flex India Community" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<flex_india%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/flex_india?hl=. > -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/flex_india?hl=.

