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 PM,

Re: [OT} 360|Flex 2014

2013-11-15 Thread Jun Heider
On Nov 14, 2013, at 3:19 PM, Maurice Amsellem maurice.amsel...@systar.com 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

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 example

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 jus...@classsoftware.com wrote: Hi, Alex already posted about this and ask

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

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 jus...@classsoftware.com 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

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

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

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,

Re: [OT] 360|Flex 2014

2013-11-15 Thread Jun Heider
On Nov 15, 2013, at 2:17 AM, Mark Line markl...@gmail.com 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

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 e...@ixsoftware.nl 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

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 aha...@adobe.com wrote: Looks like it should be ok to replace with getQualifiedClassName(). -Alex On 11/15/13 9:56 AM, Erik de Bruin

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 e...@ixsoftware.nl 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,

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 aha...@adobe.com 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

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

Re: [OT] 360|Flex 2014

2013-11-15 Thread OmPrakash Muppirala
On Fri, Nov 15, 2013 at 12:58 AM, Erik de Bruin e...@ixsoftware.nl 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,

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 jus...@classsoftware.comwrote: 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

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 bigosma...@gmail.comwrote: On Fri, Nov 15, 2013 at 3:32 PM, Justin Mclean jus...@classsoftware.com wrote: Hi, Now that 4.11 is out the installs of 4.10 are slowing (to

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

Re: Apache Flex 4.10/4.11 stats

2013-11-15 Thread OmPrakash Muppirala
On Nov 15, 2013 7:42 PM, Deepak MS megharajdee...@gmail.com 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