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 / Multicore Version / How to justify using PureMVC over AngularJS on: May 07, 2014, 01:49:55
Should I suggest to my colleagues that we're fine with PureMVC as a JavaScript framework (we know it well) and that we don't need to learn AngularJS?

Although it has many nice features, are the benefits over PureMVC significant enough to switch?
2  PureMVC Manifold / Multicore Version / Set value of proxy's instance var to that of the same proxy's static var on: December 18, 2012, 09:54:39
I'd like set the value of a proxy's instance variable to that of a static member of same class e.g.:
//JavaScript Port

instance_var: {
      prop_name: this.constructor.STATIC_VAR},

As shown, I'm building an object that will have more props...that's why I'm doing it this way.
But the "prop_name" value is undefined when queried later.
Is there a way to do this?

Thanks
NormC
3  PureMVC Manifold / Multicore Version / Re: multicore javascript on: April 10, 2012, 06:25:48
Thanks.
4  PureMVC Manifold / Multicore Version / multicore javascript on: April 09, 2012, 11:42:19
Greetings,
What is the suggested approach to creating a multicore app with JavaScript port?
There's no pipe utility for JavaScript, from what I see.
The 'Piping the machine' demo uses that utility:
http://joelhooks.com/2009/05/18/piping-the-machine-puremvc-multicore-with-pipes-and-the-finite-state-machine-fsm/

That's too complex for my energy level at this point, i.e., getting ramped up on these:
import org.puremvc.as3.multicore.utilities.pipes.interfaces.IPipeFitting;
import org.puremvc.as3.multicore.utilities.pipes.plumbing.Junction;
import org.puremvc.as3.multicore.utilities.pipes.plumbing.Pipe;
import org.puremvc.as3.multicore.utilities.pipes.plumbing.TeeMerge;

I just need to send an array from one module to another (one way, one time). Any suggestions on a simple way to do that?

Or any suggestions on best approach for multicore with javascript port?

Thanks,
Norm


5  Announcements and General Discussion / General Discussion / Re: ActionScript Developers Guide to PureMVC on: February 14, 2012, 12:22:40
Greetings,
I've downloaded the companion source code from http://examples.oreilly.com/0636920022459/  (the zip extracts to 3 folders: StoryArchitect, StoryArchitectModel, StoryArchitectTests)

I had these issues:
-  Unzipping on Win7: got several errors due to path names being too long. Used WinRar instead.
-  After importing the StoryArchitect project into Flex Builder 3 (and using 4.5 sdk), I had an error regarding missing StoryArchitectModel.swc. That file did not come with the download.
-  As a workaround, I copied the model folder from folder StoryArchitectModel to StoryArchitect, and also needed to copy over PrepareModelCommand.as

Now I am stuck with an error relating to NoteVO when it's a Vector type. Please see attached.

Running the app would really help in understanding the code, rather than trying to imagine how the app flows. Thanks.

Pages: [1]