Re: Users of Apache Flex

2014-12-12 Thread Angelo Anolin
I've done a fair bit of Flex development for the past couple of years: 1. In house enterprise system covering end-to-end business operations, consisting of different modules: Contracting and Purchase System Trading and Marketing Application Pricing And Forecasting Application 2. Reporting System

Re: AW: DG (class is not an IEventDispatcher)

2014-12-12 Thread Alex Harui
On 12/12/14, 11:19 AM, "DavidM" wrote: > >Separately: I'm getting this warning every single time that >ExternalInterface receives an object: > >WARNING: For content targeting Flash Player version 14 or higher, >ExternalInterface escapes strings using JSON conventions. To maintain >compatibility,

Re: AW: DG (class is not an IEventDispatcher)

2014-12-12 Thread DavidM
Nice suggestion Alex, the compiler was ok, but the runtime chocked: TypeError: Error #1034: Type Coercion failed: cannot convert Object@183e1f101 to model.common.Person. Then I realized that the object I'm putting in the array is *not actually typed* !! It's coming in from Firebase in JSON forma

Re: AW: DG (class is not an IEventDispatcher)

2014-12-12 Thread Alex Harui
You may have to import MyModel in an fx:Script if it is in a separate fx:Component. Fx;Component is sort of like a sub-document. On 12/12/14, 10:16 AM, "DavidM" wrote: >Alex, thanks for that awesome explanation, I really appreciate it. > >I tried casting to my model as you suggest {MyModel(data

Re: Users of Apache Flex

2014-12-12 Thread Sascha Ahrend
Hi Michael, I am in the Flash World for 13 yrs. with a focus on Flex for 5 yrs. I’ve used Flex for multimedia online apps, small to medium size business apps (Air) and personal IOS apps. Besides it is kind of my private home language, so if there’s anything I’d like to try out or experiment with

Re: AW: DG (class is not an IEventDispatcher)

2014-12-12 Thread DavidM
Alex, thanks for that awesome explanation, I really appreciate it. I tried casting to my model as you suggest {MyModel(data).field} but for some reason FlashBuilder won't resolve the MyModel class, even though it uses the same class elsewhere in the mxml file just fine. For now I'm going wit

Re: AW: DG (class is not an IEventDispatcher)

2014-12-12 Thread Alex Harui
Prepare() doesn’t really lend itself to using data binding. Prepare() might get called at a better time than the data setter, such as when more widgets in the renderer are ready, so that’s why it is often recommended. The data setter is of type Object, and you can’t bind to Objects so the compile

Re: Users of Apache Flex

2014-12-12 Thread Angelo Lazzari
Hi, 1) we developed and currently maintaining a mobile app (iphone, Android) + web app, used to create on site & real-time commercial quotation based on our client products. The same app is available as web app too. 2) We developed and currently maintaining a mobile app (iphone, Android) & Web App

Re: Users of Apache Flex

2014-12-12 Thread Héctor A
I mainly use it for mobile apps of any type (excluding for games). On Fri, Dec 12, 2014 at 4:46 PM, Miguel Ferreira < miguel.cd.ferre...@hotmail.com> wrote: > > Hi, > So in the last 5 years i am working in different project > 1 - Cancer Screening2 - Hospital software3 - Pre Catalog Producer4 - W

RE: Users of Apache Flex

2014-12-12 Thread Miguel Ferreira
Hi, So in the last 5 years i am working in different project 1 - Cancer Screening2 - Hospital software3 - Pre Catalog Producer4 - Web to Print (create post card, business cards, flyer, etc...)5 - Financial Application > Date: Fri, 12 Dec 2014 10:38:27 -0500 > Subject: Users of Apache Flex > Fro

Users of Apache Flex

2014-12-12 Thread Michael Astudillo
Hi comunity, In my interest to know who use, old and that kind of projects apache flex is used, because is very important for my work to determinate the future of the tool (Apache Flex), This work is part of my master degree. Thanks. -- Saludos Cordiales Ing. Michael Astudillo NOTA SOB

Flex Mojos and Export Release Build

2014-12-12 Thread Miguel Ferreira
Hi all and mainly for Chris :) Long time that i don't use the Export Release Build. I don't know if in fact is still possible for Flex SDK 4.10 (the one that i am using now) with combination for Flex mojos 6.0.1 to make the best release possible using something like export release build option i

Re: Tooltip on GroupingCollection2

2014-12-12 Thread Oleg Konovalov
OK, now I saw a dataToolTip for that column. However, it does not show it for the "folder" level row. How can I do that? Please advise. TIA, Oleg On Tue, Dec 9, 2014 at 11:51 PM, Oleg Konovalov wrote: > > Hi, > > Is there an easy way of showing tooltip on "folder" level > when you use ADG with

RE: AW: AW: [FlexMojos] Compatible Model Validator

2014-12-12 Thread Frédéric THOMAS
Yeah, I added that recently, thinking it was better than checking if the file was present from inside a pom profile :-) Frédéric THOMAS > From: christofer.d...@c-ware.de > To: users@flex.apache.org > Subject: AW: AW: [FlexMojos] Compatible Model Validator > Date: Fri, 12 Dec 2014 10:56:55 +

AW: AW: [FlexMojos] Compatible Model Validator

2014-12-12 Thread Christofer Dutz
Ah ... you use it to auto-install the lib ... I thought it were an alternative to copying to the lib/ext directory. Chris Von: Frédéric THOMAS Gesendet: Freitag, 12. Dezember 2014 11:22 An: users@flex.apache.org Betreff: RE: AW: [FlexMojos] Compatible Mo

RE: AW: [FlexMojos] Compatible Model Validator

2014-12-12 Thread Frédéric THOMAS
Hi Chris, > I remember a post of you using the extensions inside the pom ... as far as I > understood the thing this only works for adding wagon providers to maven. > > http://maven.apache.org/guides/mini/guide-using-extensions.html Not only, "and plug-ins which provide lifecycle enhancements" fr

stage.stage3Ds

2014-12-12 Thread Richard Hirstle
Hi Guys Looking for some help with stage3D. Trying to get past first base with Alternativa 8 and have created a basic app from here http://www.adobe.com...ng-started.htm All good except that stage.stage3Ds returns as a null object. I am using flash builder 4.6. I have v12 of the flashplayer.

Re: Blurry AIR App on Retina

2014-12-12 Thread Harbs
Of course that begs the question: why did Adobe not make high the default? On Dec 12, 2014, at 7:00 AM, Alex Harui wrote: > I asked on an internal list. The one person who responded said it should > be safe to set to high. > > -Alex > > On 12/11/14, 1:26 PM, "Harbs" wrote: > >> I assume som

AW: DG (class is not an IEventDispatcher)

2014-12-12 Thread Krüger , Olaf
> I'm guessing that the 'set data()' function is preferred over the 'prepare()' > function but I seem to recall reading somewhere that 'prepare()' is more > efficient. I'm always override the 'set data()' setter if I have to do something 'special' inside the ItemRenderer, but I don't know if thi

AW: [FlexMojos] Compatible Model Validator

2014-12-12 Thread Christofer Dutz
Well after about 2 Weeks of not being able to invest one second in Flex & FlexMojos today I'll be able to :-) One thing th Flexmojos FlexJS support is currently still lacking, is that Flexmojos enforces some rules on the poms. I will have to greatly change these and will probably add my configu

Re: DG (class is not an IEventDispatcher)

2014-12-12 Thread DavidM
Olaf, Both my examples above work, even though dataField is not specified. It would appear that the GridItemRenderer triggers on row changes, not data field changes. This makes sense to me because often you want to create a nested structure in a cell that reacts to more than one datafield

AW: DG (class is not an IEventDispatcher)

2014-12-12 Thread Krüger , Olaf
Try to pass it in your mxml: -Ursprüngliche Nachricht- Von: DavidM [mailto:dmos...@gmail.com] Gesendet: Freitag, 12. Dezember 2014 09:24 An: users@flex.apache.org Betreff: Re: DG (class is not an IEventDispatcher) -- View this message in context: http://apache-flex-users.246.

Re: DG (class is not an IEventDispatcher)

2014-12-12 Thread DavidM
-- View this message in context: http://apache-flex-users.246.n4.nabble.com/DG-class-is-not-an-IEventDispatcher-tp9124p9129.html Sent from the Apache Flex Users mailing list archive at Nabble.com.

AW: DG (class is not an IEventDispatcher)

2014-12-12 Thread Krüger , Olaf
> Thoughts? Seems that you've forgot to pass the 'dataField' property to your 'itemRenderer column':