Re: [FalconJx] Package down to Expression production; JSGoogEmiter prototype

2012-12-28 Thread Cosma Colanicchia
I'm following the discussions about JS transcoding in the last weeks - I do not feel skilled enough to contribute, but I'd like to thanks you all (and Frank Wienberg in particular) for the detailed explanations - really interesting stuff. 2012/12/28 Erik de Bruin > Both solutions have been impl

Re: Flex Mobile components in desktop/browser applications

2012-11-22 Thread Cosma Colanicchia
@alex I see, I haven't tried it but it should be ok: the docs states that touch APIs are part of the Flash Player (since 10.1), see [1] and [2]. I think that the DPI scaling functions are part of the Flex components, but they probably rely on the value of Capabilities.screenDPI [3] which, while s

Re: Flex Mobile components in desktop/browser applications

2012-11-21 Thread Cosma Colanicchia
@maxime: true, but we should begin considering that touch interactions is starting to exist on notebooks and desktop.. AIR and FP supports this since some major releases (AIR 2 and FP 10 I think), Windows supports touch screen since version 7, and with version 8 someone is actually selling such kin

Re: Flex Mobile components in desktop/browser applications

2012-11-21 Thread Cosma Colanicchia
Actually, a lot of mobile features could be ported to desktop in the future, as it seems to me that the differences are going to be less and less with new desktop operationg systems and devices, e.g. windows 8 tablets and touch enabled laptops. For example, the touch-enabled components (e.g. lists

Re: Angular JS ( Finally the JS project that comes close to Flex! ).

2012-04-26 Thread Cosma Colanicchia
AngularJS is really, really interesting, thanks for the tip. 2012/4/26 James Ong : > @Igor, Angular and Knockout are interesting. I been experimenting KnockOut > which is more like Flex declarative syntax, only Angular make code cleaner, > dependency injection and compact than any other librarie

Re: Database support for Adobe AIR

2012-04-11 Thread Cosma Colanicchia
I also used, for a little project, a pure as3 socket-based MySql driver from an AIR application, called assql [1] [1] http://code.google.com/p/assql/ 2012/4/11 Maciek Sakrejda : >>> Simply put, there is no roadmap in Apache Flex for AIR.  I was part of >>> an email thread last week about ANEs, a

Re: combo box

2012-04-10 Thread Cosma Colanicchia
://github.com/cosma/Apache-Flex-Personal-Whiteboard/blob/master/FixedElementsList.as [2] https://github.com/cosma/Apache-Flex-Personal-Whiteboard/blob/master/FixedElementsListDemo.mxml 2012/4/10 Cosma Colanicchia : > @Alex didn't know that MX components received this kind of upgrades in

Re: combo box

2012-04-10 Thread Cosma Colanicchia
@Alex didn't know that MX components received this kind of upgrades in the 4.x branch, I thought they were in "maintenance mode" (exluding the work on spark skins for halo). 2012/4/10 Cosma Colanicchia : > The EmptyItemComboBox class posted by David Coleman looks similar to &g

Re: combo box

2012-04-10 Thread Cosma Colanicchia
The EmptyItemComboBox class posted by David Coleman looks similar to some code I posted years ago on StackOverflow [1]. I added some explanation and a snippet of code showing its usage there. I'm not particularly proud of this code, but didn't managed to find a better way. The behavior approach se

Re: [VOTE][FLEX-7] package "org.apache.flex"

2012-04-02 Thread Cosma Colanicchia
1) +1 2) -1

Re: Actionscript workers and async locking?

2012-03-26 Thread Cosma Colanicchia
t;  You should that if you sent it two command to process, the second would > error out -- > > -Nick > > On Mon, Mar 26, 2012 at 9:21 AM, Cosma Colanicchia wrote: > >> @Nicholas: I suspect a misunderstanding, I was talking about the C# >> "await" (just co

Re: Welcome new Committer, Martin Heidegger to Apache Flex

2012-03-26 Thread Cosma Colanicchia
I used Flex in my work everyday in the last 4-5 years, and I think I read your name a lot of times - now it's great to have you aboard, welcome! :) Cosma 2012/3/26 Tink : > >> On Sun, Mar 25, 2012 at 2:03 PM, Bertrand Delacretaz >> >> >>> wrote: >> >> >>> On Sat, Mar 24, 2012 at 11:08 PM, Nichol

Re: Actionscript workers and async locking?

2012-03-26 Thread Cosma Colanicchia
> Sorry, this may be more typical of C/C++ people, but it's almost a subject > worth an xkcd comic... Every time I hear the word "standard" I expect it to > be followed by ISO / ASCII / ISBN or similar set of capital roman letters > and a number. :) Parsley is not a standard and it's commands are n

Re: Actionscript workers and async locking?

2012-03-26 Thread Cosma Colanicchia
@Tink: I see that pratically *all* the application frameworks designed for Flex try to address this requirements someway. @Taylor: I was talking about something that looks like C# "await", yes: "The await operator is applied to a task in an asynchronous method to suspend the execution of the met

Re: Actionscript workers and async locking?

2012-03-26 Thread Cosma Colanicchia
@Martin > A DSL for lazy operations has proven itself quite valuable as you can se > from the various tweening apis they may be a little wasteful but > ultimately result in more stable, flexible systems that are easier to read. In alternative to "real" synchronized methods, I agree that a powerfu

Re: Actionscript workers and async locking?

2012-03-26 Thread Cosma Colanicchia
@LeftRight: > [...] what I'm trying to say is that the perceived simplicity > of another approach is not such. The entire process is more complex, and > you cannot reduce it's complexity beyond certain level [...] I agree - even if I didn't explicitly expressed it, my code sample just wasn't a re

Re: Actionscript workers and async locking?

2012-03-26 Thread Cosma Colanicchia
@LeftRight: I agree that event-based async methods are more idiomatic, but my opinion is that they are more simple to use only in a limited use cases. If you take the scenario I described (if f(x) return g(x) else return h(x)" with f, g and h being async operations) that is not very complex, yet it

Re: Actionscript workers and async locking?

2012-03-26 Thread Cosma Colanicchia
Good point, Justin. Note that the "single" concurrency just throws an error if you try to invoke a second call while there is another one in progress for the same RemoteObject. 2012/3/26 Justin Mclean : > Hi, > >> I feel like a lot of people tried and are trying to address the >> disadvantages o

Re: Actionscript workers and async locking?

2012-03-26 Thread Cosma Colanicchia
@LeftRight: about faults.. the first idea on my mind was simply translating fault events into standard Error throwing, so you can use normal try/catch logic to handle failed sequences instead of explicitly analyzing the result of each "synchronized" invocation. @Robert: exactly, I don't really car

Re: Actionscript workers and async locking?

2012-03-23 Thread Cosma Colanicchia
Thank you for the suggestions, in fact I wrote some classes to help managing a set of parallel/sequence remote invocations (e.g. lanch multiple methods sequentially or in parallel, and notify me with the results at the end). However, the problem usually arise when the next invocation is based on t

Re: Advice for Logo Contest Round 2

2012-01-25 Thread Cosma Colanicchia
Just a suggestion about #49: the logo author may try to shorten the middle segment, to avoid the illusion of a "plain surface" that could be causing the sinking ship effect.. Cosma 2012/1/25 Dimitri K. : > Let's not forget we are currently chosing a logo for an enterprise > framework. > It's a

Re: [VOTE] Logo contest round #2

2012-01-24 Thread Cosma Colanicchia
+1 #49 (no sinking ship for me - a good, clean design around typography) IMO, #40 is a little too impersonal, and also somewhat similar to the JBoss ModeShape project (http://www.jboss.org/modeshape) #42 make me remember of some old Microsoft product, but I can't remember exactly which (I could b

Re: OSGi bundle Plugin registry system

2012-01-21 Thread Cosma Colanicchia
>> On 1/20/12 9:29 AM, "Cosma Colanicchia" > (mailto:cosma...@gmail.com)> wrote: >> >> > I don't like very much the current implementation because, AFAIK, a >> > module has to be a visual element on the stage.. >> > >> >>

Re: OSGi bundle Plugin registry system

2012-01-20 Thread Cosma Colanicchia
| J.P. > Morgan | 125 London Wall, EC2Y 5AJ,  London, United Kingdom | T: > +442077420836 | espen.sko...@jpmorgan.com | jpmorgan.com > > > -Original Message- > From: Cosma Colanicchia [mailto:cosma...@gmail.com] > Sent: 20 January 2012 13:12 > To: flex-dev@incubator

Re: OSGi bundle Plugin registry system

2012-01-20 Thread Cosma Colanicchia
I think we should first identify which low-level requirements that any module system may want to address. I see the following ones, in ascending order of complexity: 1) bootstrap-time incremental loading of modules 2) late and on-demand incremental loading of modules 3) support for on-demand u

Re: [VOTE] Logo contest

2012-01-19 Thread Cosma Colanicchia
ID 49: 3pt ID 29: 2pt

Re: OSGi bundle Plugin registry system

2012-01-18 Thread Cosma Colanicchia
2012/1/18 Michael Schmalle : > Also note, I am no app domain or security expert, this would all need to be > investigated as a team. > I'd like to be part of that team. Cosma

Re: OSGi bundle Plugin registry system

2012-01-18 Thread Cosma Colanicchia
Hello Michael, thanks, this is very interesting - I am probably the user you were referring to :) I don't have the time to look into it now, but I'd like to know if the base (plugin) framework can be used without the UI part, and how did you manage runtime loading and unloading of plugins, and I

Re: Fix to get DropDownList working on Mobile

2012-01-18 Thread Cosma Colanicchia
In some mobile projects based on AIR I ended up creating a SkinnablePopUpContainer to provide drop down lists with a more native feeling. The "mobile way" of presenting a selection among a list of values is usually obtained displaying the value of the selected item, and to open, on touch, a popup

Re: [Logo] Kap IT proposal #2

2012-01-18 Thread Cosma Colanicchia
This is beautiful, I love this one. Cosma 2012/1/18 Michael Schmalle : > Quoting Florian Fesseler : > >> The logo is a combination of letters A(pache) and F(lex). No ship involved >> :p >> The reflection can be removed at sometime if needed. >> >> Thanks for the feedback anyway. >> BTW, the lin

Re: ActionScript and Apache Flex

2012-01-18 Thread Cosma Colanicchia
Hello everybody, this is my first post on the list. I'm very interested in marshall plan and any other techniques to obtain modular applications in Flex, I experimented with them in the past and experienced a lot of headaches.. I was very curious to see Gravity framework in action, I know that it