Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
92 views

Parsley: how to share instance between 2 Parsley configurations?

I got 2 parsley configurations for my 2 elements. A.xml <fx:Declarations> <!--Presenters--> <presenters:ScenarioDefinitionPresenter id="scenarioDefinitionPresenter"/> ...
2
votes
1answer
271 views

Flex (Flash Builder 4) compilation with debug=false resulting in errors that do not occur when debug=true

We have a fairly large Flex application and our QA were getting random, but reproducible, errors that the Flex developers couldn't reproduce. Some of these errors were being thrown from the flash ...
2
votes
4answers
1k views

Robotlegs Vs Parsley

I am planning to start a new project in as3 and I want Dependency Injection in the project. I found that parsley and Robotlegs are two popular frameworks for implementing DI in AS3. Which is the ...
2
votes
3answers
1k views

How to Fake a AsyncToken return in ActionScript 3

Using Parsley, I have a service that I access through a [Command(selector='list')] public function getRssFeed( msg:RssEvent ):AsyncToken { return service.list() as AsyncToken; } when I point to the ...
1
vote
2answers
206 views

Flex - ArgumentError: Error #2025: The supplied DisplayObject must be a child of the caller when using added swc file

I know already so many questions have been asked here on this error #2025 topic. But, in my case, it is happening when trying to use a .swc file in a flex project. I am trying to use one of my ...
1
vote
2answers
581 views

Parsley dependency injection problem with Flex 4 using Presentation Model pattern

I have a View class EmployeeList as follows: <?xml version="1.0" encoding="utf-8"?> <s:NavigatorContent xmlns:fx="http://ns.adobe.com/mxml/2009" ...
1
vote
2answers
108 views

Injection model in Visual Component

I'm using Parsley framework. I'm trying to inject model in custom visual Tree component; private var _model:Model [Bindable] public function get model():Model { return _model; } public function ...
1
vote
1answer
89 views

Parseley framework for Flex

I recently came across a framework for as3 called "Parsley". I haven't heard about this framework yet. Can anyone give me a quick overview about this framework. I have worked with Cairgorm and the ...
1
vote
2answers
156 views

ModuleMessageInterceptor vs MessageInterceptor

I am developing an application in Flex using the cairngorm module library and Parsley. Parsley documentation chapter 5 says: "Interceptors may come in handy when you want to decide whether or not the ...
1
vote
1answer
200 views

GraniteDS with Parsley framework

I'm looking for an example about using GraniteDS for remote and Parsley ( client-side ) for MVC / IOC. The problem is that they both use the [inject] metadata... So, if anyone has a solution for ...
1
vote
2answers
243 views

Issue trying to get a example Parsley app working

I'm getting started on a new project at I'm trying to get an Parsley example to work. Here is the demo url: http://files.152.org/flex_examples/parsley/ View source is enabled I have parsley ...
0
votes
0answers
13 views

Which is a better implementation? Flex programming using Parsley Framework

I'm fairly new at event driven programming and using MVC so forgive me if this question seems like a non-question. I'm trying to assign values to my singleton model class (Client). I have 2 options: ...
0
votes
0answers
18 views

Flex multi module application using parsley

What are the best practices for using parsley with multi module flex application?
0
votes
1answer
33 views

Error: cannot add .mxml file to project

I have a project .swc made with maven. the build is successful. If I add the project to Flashbuilder, i get no errors. But if i add a .mxml file with flashbuilder, so its generated from flashbuilder. ...
0
votes
0answers
60 views

Flex 4.5 - Bootstrap Processor Error

I've just upgraded to Flex 4.5 and upgraded all the spicelibraries and cainrgorm libraries. Everything compiles...but when I run I get the following massive error which I'm unable to trace. I've ...
0
votes
1answer
40 views

Send custom event from one module to another module (Parsley)

I have created a modular application. I have two modules, for example Module1 and Module2. I have loaded these modules in my application. I am using Parsley in my application. I have loaded separate ...
0
votes
1answer
39 views

Parsley mxml tags are not displayed correctly in Intellij Idea 10+

I'm trying to use Parsley framework in Intellij Idea 10(11) IDE, but in doesn't recognize some mxml attributes, giving error "attribute 'type' is not allowed here". But in the Eclipse the mxml parses ...
0
votes
1answer
55 views

How does the Parsley Framework Messaging System Work?

I am trying to use parsley framework in my flex application. Messaging System is one of the best feature that I see while using parsley, But I had a doubt, Does using Parsley framework in your ...
0
votes
0answers
63 views

How to include Parsley once in library for project propogation?

I'm trying to set up a rather extensive set of Flex library projects so that I can build all functionality as modular components. Each individual library can be included in a test project at any given ...
0
votes
0answers
63 views

Flex BindingUtils - How do I know that my object are already constructed?

In flex 4.5 (in actionscript), I'm using BindingUtils.bindProperty method in order to bind one of my view property to a model property (I have my reasons for using this method and not the standard ...
0
votes
1answer
44 views

Flex Parsley - How to handle flash.events.MouseEvent

I am using Parsley framework. In my application, messaging system of Parsley is working fine for custom events. But, in some areas, I have event listeners for MouseDown, MouseUp events on some ...
0
votes
1answer
86 views

Flex Parsley - How to include ActionScript File in Configuration

I am trying to use Parsley framework on my application. I am able to include all my custom components (written in mxml) and other mxml files in Parsley's configuration file like this, ...
0
votes
2answers
90 views

Parsley Framework Error

Folks, I am trying to use Parsley Framework for my application. I am using Flex 3. I have included the following two libraries as Referenced Libraries : parsley-flex3-2.4.1.swc ...
0
votes
1answer
348 views

Flex and Parsley Logging

i'm looking for a possibility to log messages in my flex 4.5 Project. This should cover errormessages in remoteClasses, errorHandler or messages typing by hand. After reading a lot of webpages, the ...
0
votes
1answer
192 views

Looking for examples of command chaining in Parsley 2.4

In order to help me understand, I'm looking for examples of command chaining in Parsley. What I mean by command chaining is when one command returns a result that is then immediately used to initiate ...
0
votes
1answer
112 views

How can I inject a dictionary using parsley framework in as3?

In my parsley container, I'm instantiating an object 'A' that contains a Dictionary (flash.utils.Dictionary). I would like to create this Dictionary using parsley and inject it to 'A'. This ...
0
votes
1answer
40 views

Parsley: Creating an ObjectDefinitionBuilder from an ObjectDefinition

I'm working on a framework extension for Parsley, and need to effectively clone an ObjectDefinition during initialziation of the context, and mutate some of it's properties. As ObjectDefinition's are ...
0
votes
1answer
201 views

Flex Cairngorm 3 Presentation Model Initializations

ok so I have a TitleWindow that I open up... and I have 6 states defined. I am using the Presentation model pattern for all of my views. I have discovered a frustrating nuance. When I tell my ...
0
votes
1answer
210 views

parsley popup displaying 2 popup

I have a parsley popup that can create another popup. The issue comes when I close the root popup, when I open the popup again and click on the child popup, it's actually opening 2 child popups. ...
0
votes
1answer
140 views

SequenceWaiter doesn't recognize my event

I'm using this AsyncHelper. I would like to create basic test case where I would like to dispatch event from the test method (by Parsley MessageDispatcher), catch this event in any other method and ...
0
votes
1answer
510 views

Getting <parsley:ContextBuilder from popup window

I'm using <parsley:ContextBuilder config="{Parsley_Config}"/> in my main application. The problem is popup window cannot detect the configuration. Any kind help is appreciated.
0
votes
1answer
203 views

Why does injection fail when I dont provide an 'id' in the following flex/parsley code?

MXML snippet - <startup:MyTasks autoStart="false" > <startup:tasks> <startup:ATask id="aTask" /> <startup:BTask id="bTask" /> ...
0
votes
2answers
311 views

Making multiple asynchronous calls to fetch result from multiple services in the single click of a button in flex?

In one of our project we are using flex for front end, blazeds/java in the backend. Its an existing code where services are prewritten. I have to make calls to 3 services in the backend (basically 3 ...
0
votes
1answer
235 views

How do I compile latest Parsley framework for Flex from SVN

How do I compile from the Parsley framework repository to a Flex Library, so that i can use it with the latest 4.5 Flex framework? Step by step. Totally appreciated.
0
votes
2answers
768 views

How do you use Parsley framework in Flex Hero 4.5

I was wondering if Parsley framework is compatible for Flex Hero Mobile 4.5? I seem to get a warning saying it's not compatible. Thanks guys
0
votes
1answer
468 views

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 ...
0
votes
2answers
358 views

Flex / Parsley - Internal class quirk with compile mode

This is a puzzler. Relevant Environment: Flex app, running parsley, which gets built by ant. Problem class: package com.foo.bar { public class ProblemClass { // constructor ...
0
votes
1answer
537 views

How do I FlexUnit Test Parsley commands?

I needed some guidance on how to use FlexUnit 4 within Flash Builder, to unit test a Parsley-frameworked Flex application. I have tried lookign at one or two sites but with no avail. Thanks
0
votes
1answer
1k views

Including configuration files while compiling a Flex application with MXMLC

I'm using: - Flex SDK 3.5.0 - Parsley 2.2.2. - Flash Builder 4 Down in my src folder (which is configured as part of the source path in the Flash Builder), I have a logging.xml which I configure via ...
0
votes
2answers
132 views

How to determine which class has called a function

I am working on a Flex Front End at the moment, and have been using the Parsley framework for passing messages/events around. I was wondering if there is a simple way for a function (in this case, an ...
0
votes
2answers
125 views

Pragmatic Unit testing

I'm writing an application using an MVC framework which takes care of a lot of the boilerplate wiring of our system. Specifically - application is written in Flex, using the Parsley MVC framework. ...
0
votes
3answers
274 views

Parsley: Unable to execute command line tool after building it.. “Error while loading shared libraries: libparsley.so.0”

I'm getting started with Parsley (parslets.com), an interesting tool to parse data out of webpages. http://parselets.com/dev/command%5Fline I've downloaded the source, built it, and now I'm unable ...