PureMVC Architects Lounge

PureMVC Manifold => MultiCore Version => Topic started by: sanghuacai on February 08, 2009, 09:03:53



Title: pure as project for multicore ?(not flex project)
Post by: sanghuacai on February 08, 2009, 09:03:53
I use little flex UI components because it will produce larger swf file.
I wish I can create a pure actoinscript project with multicore version of puremvc.
I don't know how to do that,maybe some people can give me a demo?


Title: Re: pure as project for multicore ?(not flex project)
Post by: puremvc on February 08, 2009, 09:12:10
The nice thing about PureMVC is that Whether the view components are mxml or sprites, the concepts are the same. Dispatch events from them, listen to the events with mediators. Let mediators set the data on these components.

-=Cliff>


Title: Re: pure as project for multicore ?(not flex project)
Post by: sanghuacai on February 08, 2009, 10:44:39
thanks a lot!

I have seen "helloPipesDemo",and love puremvc framework very much.
I know lots about actionscript but little about "mxml".From what you have mentioned,I think I can create a multicore based project without any mxml file(use loader instead flex's module loader). Is that right?


Title: Re: pure as project for multicore ?(not flex project)
Post by: puremvc on February 09, 2009, 06:18:44
Yes, that's it.

Flex modules are really just loaded swfs, and MXML is just a way of declaring a visual hierarchy of components (fancy sprites) using xml.

Either way, PureMVC is just the glue in the middle.

-=Cliff>