Re: [flexcoders] Re: Is there a good log application?

2009-06-28 Thread Jens Halm
be used on every OS where you can install a Java Runtime. Nice thing is that it allows you to colorize the different log levels. Jens Halm www.spicefactory.org

[flexcoders] [ANN] Parsley 2.0 Application Framework for Flex + Flash (Dependency Injection, Messaging, MVC)

2009-06-08 Thread Jens Halm
Hello all, this weekend we released Parsley 2, the completely redesigned version of our Flex + Flash Application Framework, taking it to a new level of power and flexibility: # Versatile IOC Container: Supports configuration with AS3 Metadata, MXML, XML files, ActionScript # Dependency

Re: [flexcoders] [ANN] Parsley 2.0 Application Framework for Flex + Flash (Dependency Injection, Messaging, MVC)

2009-06-08 Thread Jens Halm
# A very extensive Developer Manual - http://www.spicefactory.org/parsley/docs/2.0/maunal/ Sorry, link is broken, this is the right one: http://www.spicefactory.org/parsley/docs/2.0/manual/ Jens -- Flexcoders Mailing List FAQ:

[flexcoders] [ANN]: Pimento Data Services integrate JPA/Hibernate with Flex/Flash

2008-12-01 Thread Jens Halm
Integration Tests written in AS3, with automatic database population * And much more... You can download the first Release Candidate from: http://www.spicefactory.org/pimento/download.php Jens Halm Spicefactory -- Flexcoders Mailing List FAQ: http

Re: [flexcoders] Re: How to expose Hibernate 'non' conventional beans into flex apps via remoting

2008-06-06 Thread Jens Halm
with FetchPlan instances created in AS3. Jens Halm Spicefactory

[flexcoders] Re: Flex CRUD?

2008-03-13 Thread Jens Halm
the Pimento API and create your own UI). It will work with any Java EE server. Unfortunately it's the only Spicefactory framework we haven't even started with yet (except for concepts). So we expect to have an initial release later this year and something production-ready next year. Jens Halm

[flexcoders] Re: Flex CRUD?

2008-03-13 Thread Jens Halm
. Unfortunately it's the only Spicefactory framework we haven't even started with yet (except for concepts). So we expect to have an initial release later this year and something production-ready next year. Jens Halm Spicefactory

[flexcoders] ANN: Parsley IOC Container and Cinnamon Remoting (Open Source)

2008-01-14 Thread Jens Halm
with or without Flex (does not built upon the RemoteObject API). All Spicefactory projects are licensed under the Apache License 2.0. You'll find a lot more information at the project website. Jens Halm Spicefactory

Re: [flexcoders] Re: Mock objects in AS3

2007-12-26 Thread Jens Halm
to the specified InvocationHandler instance. It would really be great to have something similar in AS4! Typesafe proxy objects are useful for: - AOP frameworks - Mock frameworks - Remote Service Stubs and very likely for a ton of other things! Jens Halm Spicefactory www.spicefactory.org

Re: [flexcoders] Subversion clients

2007-11-30 Thread Jens Halm
=subversive It seems to be less buggy than the alternative Subclipse plugin. Also it became an official Eclipse project, so in the future it might be part of the core platform like the CVS plugin. I'm using Subversive with HTTP and with svn+ssh and did not have any issues yet. Jens Halm

Re: [flexcoders] Flex Remoting Options - Any Opinions?

2007-11-16 Thread Jens Halm
integration with Spring configuration and a lot of flexibility for mapping AS3 classes to Java classes. Jens Halm Spicefactory

Re: [flexcoders] programatically assigning an ArrayCollection as the DataProvider bug...

2006-04-12 Thread Jens Halm
Geoffrey, This is a common misconception about return types. In the Flex docs, the type specified is the lowest subclass supported for the returned data. If the return type is Object, this can include Array, Boolean, String, Number, components, and most custom classes. But alas that is

Re: [flexcoders] Re: How to dynamically invoke AS3 class constructor ?

2006-03-02 Thread Jens Halm
This code is similar to var a:* = new A(1,2,3); in my original post. Arguments count is statically specified at compile time. But I am looking for the way to pass different number of arguments to constructor at runtime. Arguments type and count are unknown at compilation time, that is

Re: [flexcoders] addChild method in mx.core.Container

2006-02-23 Thread Jens Halm
var s:Sprite = new Sprite(); var b:Box = new Box(); // box - mx.core.Container.Box then: b.addChild(s);// - ERROR: cannot convert flash.display::[EMAIL PROTECTED] to mx.core.IUIComponent i know (from debugger) that method 'addChild(val:DisplayObject)' in mx.core.Container

Re: [flexcoders] addChild method in mx.core.Container

2006-02-23 Thread Jens Halm
You can wrap your Sprite inside an UIComponent (code not tested): var s:Sprite = new Sprite(); var c:UIComponent = new UIComponent(); c.addChild(s); var b:Box = new Box(); b.addChild(b); I meant b.addChild(c) of course... -- Flexcoders Mailing List FAQ:

Re: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-12 Thread Jens Halm
My point is that every time there's a new language (yes I've been around for awhile :) there are people complaining that it's unlike some other language (mostly an older one). It's understandable, but I also know that the people implementing the language spec's for the most parts is not

Re: [flexcoders] AS3 class constructors can't be private? Abstract classes?

2006-02-11 Thread Jens Halm
again from other people's coming to the Flash platform  they look at all this stuff as the typical flash hacks from old days. I don't know why are you so reactive to introduce private constructors that are very clear and precise to resolve this kind of things and don't need any trick.

Re: [flexcoders] Flex 2 - Looking for feedback on Flex API doc

2006-02-03 Thread Jens Halm
We modeled this documentation on JavaDocs. So, if you are familiar with JavaDocs, it should look pretty familiar. You can see it here: Will there be a tool in the free release of Compiler/Framework to generate such documentation? Would be a great thing to have the same doc format used by all

Re: [flexcoders] addChild from String

2006-01-18 Thread Jens Halm
Hi All, I'd like to provide a String value which represents the DisplayObject class I want to create dynamically with addChild. Has anyone accomplished this? You mean like this? public function createInstance (className : String) : Object { var MyClass : Class =

Re: [flexcoders] addChild from String

2006-01-18 Thread Jens Halm
public function createInstance (className:String, args:Array) : Object { var myClass : Class = getClassByName(className); var inst : Object = new myClass(); inst.initArgs.apply(inst, args); return inst; } Yes, that would be a workaround if I have complete control over the