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] 3 4
16  Announcements and General Discussion / Public Demos, Tools and Applications / AdaptiveSubsampling Demo on: May 05, 2010, 11:32:40
Work in progress.

Inspired by Bitmap genius Quasimondo(Mario Klingemann) at FITC this year.
Some adaptive subsampling niceness...or 'playing with bitmaps'
PureMVC mutlicore
http://bitstream.ca/imageSubSample/
17  PureMVC Manifold / MultiCore Version / The evolution of PureMVC on: April 15, 2010, 10:02:14
Hi
I use and love PureMVC. Its been the cornerstone for over half a dozen large commercial websites I've worked on the past year.
But as a serious developer I'm always on the look out for better ways to achieve any given task. I was wondering if anyone has successfully integrated Robert Penner's new AS3 signals with a PureMVC project?
18  Announcements and General Discussion / Architecture / Proxy to Proxy communication and SWFAddress on: March 31, 2010, 02:23:35
Hi
In my current architecture I am using a proxy to handle all swfadddress requests.

It works fine except for browser url changes, which trigger  a SWFAddressEvent.CHANGE event, which in turn causes a notification to be sent.

Its a typical chicken & egg problem, the notification is sent BEFORE the view mediators have been registered.

If I kludge it by adding a half second delay it works.

What I'd like to do is instead start a polling emthod in the SWFAddress proxy, which checks/listens for all assets to be loaded BEFORE sending the notification.

What is the best way to handle proxy to proxy communication?
19  Announcements and General Discussion / Architecture / Dynamic loading of components on: March 13, 2010, 06:01:15
Hi
I have a completed project entirely contained in 1 swf.
I'd like to break it down partially, removing a few of the view components and loading them at runtime.

These view components aren't referenced directly by any mediator, but rather are parented and instantiated by other view components.

What is the best (practices) strategy to do this?

Besides making my application more modular and easier to work on with other developers, one of my goals is also to reduce the size of my 'main' swf, so this means removing any references to the view component class I need to load.

Should I then create a view  interface for these loadable components, which the parent components reference and instantiate??

Any suggestions welcome...
20  Announcements and General Discussion / General Discussion / Non-debug version of multicore for download? on: March 09, 2010, 03:57:24
Can someone tell me where to get the non debug versions of PureMVC?
The link at the bottom of this page
http://trac.puremvc.org/PureMVC_AS3_MultiCore/wiki/Downloads
I believe is for the debug version (the swc is 12k)
21  Announcements and General Discussion / Architecture / from AS3 to ObjectiveC on: March 07, 2010, 01:41:06
I know there is a Port to Objective C forum, but my question whether anyone has taken an application they've developed in as3, and then converted to ObjectiveC?

I'm talking about re architecting from scratch at the code level, not using CS5's ability to export to native iPhone code.

Can you share examples?
What were the pitfalls, gotchas?

With the iPad arrival, this is going to be a growing area of interest for many flash developers I'm sure.

22  Announcements and General Discussion / Public Demos, Tools and Applications / TweetMasher beta on: March 02, 2010, 02:03:02
A Twitter search appliance with some added features

In its first incarnation, mainly 3d widow dressing on top of the Twitter advanced search api.
But slowly adding new features to make it much more.

http://www.tweetmasher.com

puremvc multicore and fp10 3d api.
23  Announcements and General Discussion / Architecture / Navigating to a URL...URLProxy needed?? on: February 10, 2010, 03:09:00
Hi
Is a URLProxy necessary(or best practice) for simply loading a URL in a browser window?
OR simple keep the logic in the view component?
24  Announcements and General Discussion / Public Demos, Tools and Applications / Flickr Search API explorer on: January 07, 2010, 06:50:19
Played a bit with the flickr api over the holidays.
Not really a information visualization tool, my intent was simply to try and make the flickr search experience a little more playful and engaging.

PureMVC multicore.
http://bitstream.ca/
25  Announcements and General Discussion / Architecture / Q:a Searchable Photo Gallery on: December 18, 2009, 02:24:29
As a personal project currently working on a searchable photo gallery.
A user will be able to search for photos by date and tags as well as number of photos returned in search query.
At the very least I know I will need a 'SearchProxy' with a corresponding VO containing values for all the current search parameters.

But after selecting a specific photo returned in the initial search I also want to be able to retrieve additional info specific to that photo from the server.

Just not sure about the best way to architect this....

Should I implement an additional proxy or keep the logic for the 'additional info' query in the same proxy??
26  Announcements and General Discussion / Architecture / Custom logging and Configure Logging at Runtime on: November 26, 2009, 09:00:02
Great article on Logging Best ractices, but what really caught my eye was the last paragraph

'Configure Logging at Runtime'

http://opensource.adobe.com/wiki/display/cairngorm/Best+Practices+for+Logging

I use an AS3 modified version of luminicBox, but It would be really cool if a logging class or utility could be modified at runtime. Anyone know if a logging utility like this exists for PureMVC?
27  Announcements and General Discussion / Public Demos, Tools and Applications / Lexus Hybrid launch site on: November 23, 2009, 05:57:33
Created in conjunction with my client Lollipop Digital. Built for 2 languages and adapted for a kiosk application as well. I ended up using MultiCore and BulkLoader to handle assets loading.

http://www.lexus.ca/hs/en.html

28  Announcements and General Discussion / Architecture / Q:Flash Tracking using multiple vendors on: November 20, 2009, 08:03:46
I've read Cliff's suggestion on creating an abstract mediator and it seems the most elegant solution in my case
http://forums.puremvc.org/index.php?topic=1341.msg6210#msg6210

My question is how best to implement multiple vendors, in this case both Google Analytics and Web trends.

I think simplicity dictates that I just have one tracking proxy with multiple navigateToURL calls for the different vendors.

My question is will there be a problem with simultaneous navigateToURL calls, or will I need to implement some sort of que system, to stack these calls?
29  Announcements and General Discussion / Architecture / Abstract mediators? on: November 06, 2009, 07:46:37
Came across this post and explanation for reducing code in concrete mediators
http://www.ahrooga.com/2009/06/puremvc-creating-a-short-hand-mediator/
http://www.ahrooga.com/blog/wp-content/uploads/2009/06/AbstractMediator.as

Would this be a recommended(best) practice?
30  Announcements and General Discussion / General Discussion / Q: Size of StartupManger compiled code on: October 10, 2009, 04:07:14
Trying to decide whether to go with Bulkloader or the StartupManager (now called loadup??).

Filesize is always a concern, Bulkloader adds about 16k to the compiled swf, anyone know how much Startupmanager adds?
Pages: 1 [2] 3 4