Futurescale, Inc. PureMVC Home

The PureMVC Framework Code at the Speed of Thought


Over 10 years of community discussion and knowledge are maintained here as a read-only archive.

New discussions should be taken up in issues on the appropriate projects at https://github.com/PureMVC

Show Posts

* | |

  Show Posts
Pages: 1 [2]
16  Announcements and General Discussion / Getting Started / Re: 10 tips for working with PureMVC on: January 03, 2008, 01:25:10
Russian translation: "10 советов по PureMVC".

P.S. Thanks to Aleksey Jakowenko for the Russian translation!

-sectore
17  Announcements and General Discussion / Getting Started / Re: 10 tips for working with PureMVC on: December 27, 2007, 09:36:32
German translation: "10 Tips für das Arbeiten mit PureMVC" 

;)

-sectore
18  Announcements and General Discussion / Public Demos, Tools and Applications / Re: Flex based tool using PureMVC: "WSPatternStyleGenerator" (incl. source) on: November 27, 2007, 09:41:25
New update: WSPatternStyleGenerator has been updated using PureMVC 1.6 and Flex 3.

Have fun ;)

-sectore
19  Announcements and General Discussion / General Discussion / Re: Creative Commons 3.0 Attribution US License on: November 21, 2007, 07:27:04
As promised I have added a new post about the project mentioned above.

-sectore
20  Announcements and General Discussion / Public Demos, Tools and Applications / Flash based community using PureMVC: www.panfu.de on: November 21, 2007, 07:21:06
Panfu (www.panfu.de) is a German multiuser learning and gaming community for children. The Panfu-World based on Flash 9 using PureMVC. For the communication between the server- and client-side it uses Flash-Remoting based on OpenAMF and a XMLSocket solution based on a self developed SocketServer for the multiuser management.

PureMVC helps us a lot to develop well structured AS3 code. Furthermore the project has had the possibility to integrate new Flash developer whose not familar with the project as quickly as possible. The amazing documentation was a great help too. PureMVC is just awesome.

Cliff, thanks again for your great Framework ;)

P.S.: To register and login to Panfus Public Beta click here. (sorry, its currently in German only)

-sectore
21  Announcements and General Discussion / Architecture / Re: Setting texts, labels and styles on view components within a Flash app on: September 09, 2007, 08:45:42
Cliff, thanks again for your reply.

2)
You're right, it's a good way to externalize color and font constants into an XML file, too. Another way I've gone is using a simple data object with static members for these properties, similar - but in another context - you're using in your PureMVC Architecture 101 (Unit 3) for enumerations called "RoleEnum". This "data holder" is not a "real part" of PureMVC, which means it's not a Proxy or something else but rather a simple data object using by the views directly without breaking rules.

-sectore
22  Announcements and General Discussion / General Discussion / Re: Creative Commons 3.0 Attribution US License on: August 26, 2007, 12:48:15
Cliff, thanks for your detailed information - it sounds great :)

P.S. When I finish the project, I'll post the link to the app ;)

-sectore
23  Announcements and General Discussion / General Discussion / Creative Commons 3.0 Attribution US License on: August 25, 2007, 09:37:18
I'm not familiar with CC US Licenses... "Reuse is governed by the Creative Commons 3.0 Attribution US License". What does it mean? Can I use PureMVC in commercial projects without any restrictions? I would like to use PureMVC for my next AS3 project, which is a commercial, Flash based web application...
24  Announcements and General Discussion / General Discussion / Re: how to load my pureMVC adr_book.swf into a preloader.swf on: August 23, 2007, 12:18:50
Martin,

I've used an additional preloader-swf for a PureMVC project and it works like a charm.

But I've done the following steps:
- Adding the "extern" swf including my PureMVC app to the preloader swf after fired Event.COMPLETE (not on Event.INIT) to make sure loading all content
- Then I called an init function on my PureMVC app, which instantiates the ApplicationFacade and sends the "STARTUP" notification.

:
private function onAppComplete(event: Event):void
{
//
// opting out of compile time type checking
// therefore access external main class via event.target
var app:* = event.target.content;
//
// add content
this.addChild(app);
// init app
app.init();

removeAppLoaderListener();
}

I think you have to call the initialize process of your PureMVC app after loading all content and not within the constructor of your "extern" document class named "Adressbook".

-sectore
25  Announcements and General Discussion / Architecture / Setting texts, labels and styles on view components within a Flash app on: August 21, 2007, 02:36:37
Two questions about a "pure" Flash (not Flex) based application:

1) What do you mean is the best practice for setting texts, labels etc. on view components determining by an external XML file?
2) And what is the best place to maintain reusable style definitions such as Fonts, Colors etc.?

Here are my thoughts:

1) Let's assume a multi-lingual Flash based application, which gets its texts, labels etc. from an external XML file. So I have a "ContentProxy", which is acting as a Remote Proxy for loading and parsing the XML file and populating a Value Object called "ContentVO". After that, it dispatches a Notification "XML_LOADED" and its listeners such as a "ApplicationMediator" or a "NavigationMediator" will get the VO for setting texts and labels of its view components.

2) For this issue I defined a "StyleProxy" with static members such as
:
public static const COLOR_BG_SOLID_0: uint = 0x4A9696;
public static const COLOR_BG_BLEND_0: uint = 0x356A6A;
which are connected by the view components without using a "real" instance of the "StyleProxy". Until now I have not created several Mediator for all my view components, but I think that's not the best way... What do you think about this issue? Make it sense to create a Mediator for all view components only for setting "static" styles?




26  Announcements and General Discussion / Public Demos, Tools and Applications / Re: Login Sample using Flex, WebORB and PureMVC on: August 10, 2007, 11:04:42
@Cliff: Thanks for your feedback. The name of the link has been fixed ;)

-sectore
27  Announcements and General Discussion / Public Demos, Tools and Applications / Login Sample using Flex, WebORB and PureMVC on: August 10, 2007, 12:02:31
Do you know the Cairngorm LoginSample from Alex Uhlmann's blog?

On my blog you will find a Login Sample (incl. full source) based on it using WebORB for PHP and PureMVC instead of Cairngorm.

P.S. Any feedback or suggestion are welcome ;)

-sectore
28  Announcements and General Discussion / Public Demos, Tools and Applications / Re: Flex based tool using PureMVC 1.4: "WSPatternStyleGenerator" (incl. source) on: July 12, 2007, 12:21:49
Cliff,

thanks for your good feedback und suggestion :)
I've updated the *.zip-file's structure ;)

29  Announcements and General Discussion / Public Demos, Tools and Applications / Flex based tool using PureMVC: "WSPatternStyleGenerator" (incl. source) on: July 11, 2007, 01:55:03
WSPatternStyleGenerator is a Flex based tool creating well formated CSS sheets for using a Flex skin component named WSBackgroundPixelSkin.
It's based on PureMVC 1.4 PureMVC 1.6 - you'll find here the full source as well.

P.S. Thanks for sharing PureMVC - it's great ;)

-sectore
Pages: 1 [2]