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]
1  PureMVC Manifold / Bug Report / Re: [ WARNING ] asdoc broken in Flex 4 on: September 04, 2012, 05:25:28
Just a heads up that using flashbuilder 4.6 I'm still unable to successfully generate ASDOCS from puremvc source.

Errors such as this are generated
:
[Fatal Error] :13:6: The element type "P" must be terminated by the matching end-tag "</P>".
2  PureMVC Manifold / Standard Version / AS3 bootstrap implementation on: February 25, 2009, 04:34:41
Hi guys,
Am looking for some recommendations on how to implement a bootstrap into an AS3 puremvc project.
The task of the bootstrap is to load the main swf, and perhaps display a preloader in the process.
3  Announcements and General Discussion / General Discussion / Re: Where to put some url parsing code - proxy or command ? on: January 21, 2009, 08:47:36
I parse my configs into value objects on a proxy.

What is the advantage in doing this, opposed to using a static class (e.g Config.as) and calling Config.SITE_URL to retrieve the URL?

If the data is stored in a proxy, it means each time config data is required, the proxy has to be retrieved first. Seems overkill for simple constants like site URL which won't change.

Correct me if i'm wrong.
4  Announcements and General Discussion / General Discussion / Re: Where to put some url parsing code - proxy or command ? on: January 21, 2009, 05:10:31
hi guys,
I am doing a similar thing with my app.
I'm Using a command to parse config xml which contains site url and other paths.

Once the xml has been parsed, where should i be storing the config data?
Inside a proxy? Or inside a static class from which the proxy's grab the url when doing requests?

cheers
Pages: [1]