swiz

Flex: swiz .6.2 undefined method loadbeans

I'm trying to set up the swiz framework in flex but cant seem to get it to compile. Im using swiz 0.6.2 and flex 3.0.2. The swc is in the libs directory of my flex project. Im following the tutorial here: http://code.google.com/p/swizframework/wiki/DefiningApplicationComponents and my code looks like: Swiz.mxml-- <mx:Application xml...

Flex Application Framework -- PureMVC Portability vs. Swiz?

Hi all, My company is building a Flex application that we may need to port to other platforms: Silverlight (likely) Mobile (maybe -- iPhone: Objective-C , Android: Java, etc.) Desktop (maybe -- AIR, .NET, etc.) TV sets (maybe eventually) Currently, I’m looking into application frameworks to build upon and I’m torn between pureMVC ...

Swiz mandates weak encapsulation.

I just started using Swiz, and, it seems like Swiz forces you to create classes with weak encapsulation. Swiz requires all event handlers to be public in order to mediate events. Assume that component 'A' dispatches a few events, which I want to listen to in component 'B'. Traditionally, I'll just add event listeners on 'A' in 'B' and a...

How to create instance model that can be shared throughout a component (which can be created more than once)

I am trying to create a modular structure that will eventually live inside another actionscript/flex application. I am using cairngorm in the outside application and I'd like to create more than one instance of this new component in the inside application. Cairngorm doesn't work for creating multiple duplicate components because of the...

Displaying Flex Object References

I have a bit of a memory leak issue in my Flex application, and the short version of my question is: is there any way (in AcitonScript 3) to find all live references to a given object? What I have is a number of views with presentation models behind each of them (using Swiz). The views of interest are children of a TabNavigator, so when...

How do you use Parsley with GraniteDS in Flex?

I want to use the Parsley framework and I want to use GraniteDS for remoting. As of 2.1, GraniteDS generates AS3 service classes from your Java code as local proxies, and I want to use these classes in Parsley. I can successfully inject the service classes with Parsley but when I call any of their methods I get a null object error at o...