Re: [FLEXJS] inheritance/interfaces

2013-11-15 Thread Frank Wienberg
As far as I know, "instanceof" checks do *not* work with interfaces. That's what "is" is for. "is" works for both classes and interfaces. new B() instanceof A => true new B() instanceof IA => false (or even compile error?) new B() is A => true new B() is IA => true On Thu, Nov 14, 2013 at 7:18 P

Re: [OT} 360|Flex 2014

2013-11-15 Thread Jun Heider
On Nov 14, 2013, at 3:19 PM, Maurice Amsellem wrote: > Sorry, it was too short. > I have read your blog and you speak about performance and FB Profiler. > I thought Adobe Scout introduced a really new way of profiling apps, > especially on Mobile, so it might be interesting to speak about it a

Re: [FLEXJS] inheritance/interfaces

2013-11-15 Thread Erik de Bruin
> As far as I know, "instanceof" checks do *not* work with interfaces. That's > what "is" is for. "is" works for both classes and interfaces. Correct. I've updated the 'org.apache.flex.utils.Language.is()' method to take super class interface implementation into account. I also updated the exampl

Re: [OT] 360|Flex 2014

2013-11-15 Thread Erik de Bruin
I'm very likely attending, and I'd like a lab about fixing and debugging the SDK, please :-) Setting up your workspace, preparing the SDK, creating patches etc. EdB On Fri, Nov 15, 2013 at 3:52 AM, Justin Mclean wrote: > Hi, > > Alex already posted about this and ask what do you think he shou

RE: [OT] 360|Flex 2014

2013-11-15 Thread Mark Line
Personally I'd like to see stuff based around large enterprise development or mobile (as I think Flex is a great for both) Performance testing/improvement Testing Flex Unit etc Perhaps some news about falcon? That said I'm just happy its back :-) -Original Message- From: Justin Mclean [

Re: Flex 4.9 and FB 4.0

2013-11-15 Thread Tom Chiverton
On 14/11/2013 16:10, Raj U. Shaikh wrote: I am using Flash Builder 4.0.1 Really ? I don't think Adobe support that any more ? Even with the release before Apache Flex was created. Tom

Re: SDK 4.11 service pack ?

2013-11-15 Thread Tom Chiverton
On 14/11/2013 22:45, Mark Kessler wrote: supposed to match the build number? That's what 4.9.1 does if you install it with the installer (files and the XML agree). Tom

Flex at Scotch on the Rocks next year

2013-11-15 Thread Tom Chiverton
I notice that next years Scotch on the Rocks (Scotland, EU :-) ) has it's call for speakers open. I know a few Flex users were there last year. Has anyone submitted a Flex talk idea yet ? Is anyone other than me here going to be attending ? -- extravision Signature *Tom Chiverton* | Lead Develop

Re: Build failed in Jenkins: flex-sdk_mustella #531

2013-11-15 Thread Alex Harui
I'll take a look this weekend. On 11/14/13 11:17 PM, "Justin Mclean" wrote: >Hi, > >Sorry not had time to look at the issue, was hoping someone else might >help out. I'll revert and reopen the JIRA bug. > >https://issues.apache.org/jira/browse/FLEX-33879 > >Perhaps someone else can look at it? >

Re: Flex at Scotch on the Rocks next year

2013-11-15 Thread Alex Harui
I won't be there, but sounds like you should submit an offer to present there. -Alex On 11/15/13 6:23 AM, "Tom Chiverton" wrote: >I notice that next years Scotch on the Rocks (Scotland, EU :-) ) has >it's call for speakers open. I know a few Flex users were there last year. >Has anyone submitte

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-15 Thread Erik de Bruin
Big update: fixed! If you really want to know what needed to happen to make this work, please read the commit messages. It wasn't a simple fix. Note: the metadata property is now required on each class in the framework. I've added it to all the classes in the FlexJS framework that are under activ

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-15 Thread Alex Harui
Awesome! Definitely looked like a lot of work. Thanks for doing it. -Alex On 11/15/13 8:24 AM, "Erik de Bruin" wrote: >Big update: fixed! > >If you really want to know what needed to happen to make this work, >please read the commit messages. It wasn't a simple fix. > >Note: the metadata prop

Flex and AIR 4.0

2013-11-15 Thread Nick Collins
The first Adobe AIR 4.0 beta was just published to Adobe Labs today ( http://labs.adobe.com/technologies/flashruntimes/air/ ). One aspect of it that I believe may directly affect us is that as of 4.0, ASC 2.0 will be retired as a separate download, and will now be the only compiler. How will this a

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-15 Thread Erik de Bruin
Is there a particular reason there is a 'className' property which is set on some, but not all classes and even has 'getter/setter' methods? Unless the property is seriously misnamed, why would you want to be able to SET a class' name? If anything is constant, it should be the name of the class, s

Re: [OT] 360|Flex 2014

2013-11-15 Thread Jun Heider
On Nov 15, 2013, at 2:17 AM, Mark Line wrote: > What topics would you like see see talks or labs on at 360 Flex 2014? Figured I'd mention some tips, for those of you that are interested in this discussion or are thinking of going. 1. So far 6 Apache Flex team members are confirmed to speak ab

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-15 Thread Alex Harui
Looks like it should be ok to replace with getQualifiedClassName(). -Alex On 11/15/13 9:56 AM, "Erik de Bruin" wrote: >Is there a particular reason there is a 'className' property which is >set on some, but not all classes and even has 'getter/setter' methods? > >Unless the property is seriousl

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-15 Thread Erik de Bruin
Or, since that has gone the way of the dodo, I can just feed it 'this.FLEXJS_CLASS_INFO.names[0].name' ;-) EdB On Fri, Nov 15, 2013 at 7:12 PM, Alex Harui wrote: > Looks like it should be ok to replace with getQualifiedClassName(). > > -Alex > > On 11/15/13 9:56 AM, "Erik de Bruin" wrote: > >

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-15 Thread Alex Harui
Hopefully, although I grep'd and think I saw two places where there was some cheating going on. -Alex On 11/15/13 10:27 AM, "Erik de Bruin" wrote: >Or, since that has gone the way of the dodo, I can just feed it >'this.FLEXJS_CLASS_INFO.names[0].name' ;-) > >EdB > > > >On Fri, Nov 15, 2013 at 7

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-15 Thread Erik de Bruin
popup.className = 'popup' and this.titleLabel.element.className = 'TitleBarLabel'? EdB On Fri, Nov 15, 2013 at 7:33 PM, Alex Harui wrote: > Hopefully, although I grep'd and think I saw two places where there was > some cheating going on. > > -Alex > > On 11/15/13 10:27 AM, "Erik de Bruin" wro

Re: [OT] 360|Flex 2014

2013-11-15 Thread Angelo Lazzari
Hi all guys! It's really excitig see that 360flex is still "up & running"! I know that organize an event of that size is time, money and resources expensive and you have a lot to manage, organize and so on, but, i would ask just one thing: how about an european 360|flex event? I mean i don't

Re: [FLEXJS] CSS value handling can't work in release code

2013-11-15 Thread Alex Harui
Actually, it was these two: as/src/org/apache/flex/html/staticControls/TitleBar.as: _titleLabel.class Name = className; as/src/org/apache/flex/html/staticControls/TitleBar.as: _closeButton.clas sName = className; But popup might be an issue as well. But you remi

Re: [OT] 360|Flex 2014

2013-11-15 Thread OmPrakash Muppirala
On Fri, Nov 15, 2013 at 12:58 AM, Erik de Bruin wrote: > I'm very likely attending, and I'd like a lab about fixing and > debugging the SDK, please :-) > > Setting up your workspace, preparing the SDK, creating patches etc. > > +1 to this idea. Thanks, Om > EdB > > > > On Fri, Nov 15, 2013 at

Re: Flex at Scotch on the Rocks next year

2013-11-15 Thread Justin Mclean
Hi, I'll be there. Go ahead and submit a Flex session but it may not be accepted. I was on the content advisory board last year and help organised the schedule but there was no Flex content in the schedule. Now Apache Flex has a few releases that may change. Thanks, Justin

Apache Flex 4.10/4.11 stats

2013-11-15 Thread Justin Mclean
Hi, Now that 4.11 is out the installs of 4.10 are slowing (to about 10/day). 4.11 is currently getting 100-150/installs a day In less than 3 months we've had more than 10,000 installs of Apache Flex 4.10. In the 3 weeks since it has been released 4.11 has had over 3000 installs. Not bad for a

Re: Apache Flex 4.10/4.11 stats

2013-11-15 Thread OmPrakash Muppirala
On Fri, Nov 15, 2013 at 3:32 PM, Justin Mclean wrote: > Hi, > > Now that 4.11 is out the installs of 4.10 are slowing (to about 10/day). > 4.11 is currently getting 100-150/installs a day > > In less than 3 months we've had more than 10,000 installs of Apache Flex > 4.10. In the 3 weeks since it h

Re: Apache Flex 4.10/4.11 stats

2013-11-15 Thread Mark Kessler
Oh good I'm not the only person geeking about stats. -Mark On Fri, Nov 15, 2013 at 6:35 PM, OmPrakash Muppirala wrote: > On Fri, Nov 15, 2013 at 3:32 PM, Justin Mclean >wrote: > > > Hi, > > > > Now that 4.11 is out the installs of 4.10 are slowing (to about 10/day). > > 4.11 is currently gett

Re: Apache Flex 4.10/4.11 stats

2013-11-15 Thread Justin Mclean
Hi, We're in the same ball park as Ralio. http://www.getrailo.org/index.cfm/download/statistics/ They count downloads not installs, and our installer underreports the actually number of installs as it's not the only way to install it. Thanks, Justin

Re: Apache Flex 4.10/4.11 stats

2013-11-15 Thread Justin Mclean
Hi, And there some interesting stats about Apache Flex here: http://www.ohloh.net/p/ApacheFlex Thanks, Justin

Re: Apache Flex 4.10/4.11 stats

2013-11-15 Thread Deepak MS
Great stats :) But I'm also quite curious to know what was the download\installation rate when flex was with Adobe. So that could compare the numbers now and then. I did try searching for it, but couldn't get it anywhere. On Sat, Nov 16, 2013 at 5:28 AM, Justin Mclean wrote: > Hi, > > And there

Re: Apache Flex 4.10/4.11 stats

2013-11-15 Thread OmPrakash Muppirala
On Nov 15, 2013 7:42 PM, "Deepak MS" wrote: > > Great stats :) > But I'm also quite curious to know what was the download\installation rate > when flex was with Adobe. So that could compare the numbers now and then. I > did try searching for it, but couldn't get it anywhere. I doubt if those stat

Re: Good Article about Adobe AIR

2013-11-15 Thread Deepak MS
Thanks for sharing it Angelo. Article is really good and I too have had almost same experience with it. Also happened to read through all the comments. I didn't like one of the comment there. I don't understand, why the heck on earth do some people give wrong information on the technology when th