RE: InstallApacheFlex badge installer

2012-07-09 Thread Om
Hi, Thanks for testing the app. Can you please post details on the steps to reproduce this bug? Include your OS as well. Filinga a JIRA ticket can help track this issue better. Thanks, Om On Jul 9, 2012 8:41 PM, "원영국" wrote: > > I use Flash Builder 4.6. > I installed you app and make a flex

RE: InstallApacheFlex badge installer

2012-07-09 Thread 원영국
I use Flash Builder 4.6. I installed you app and make a flex sdk 4.8.0. and I used it in Flash Builder. but i met below error. 'unable to load SWC textLayout.swc' Dev for love d(^-^)b -Original Message- From: "Om" To: ; Cc: Sent:

InstallApacheFlex badge installer

2012-07-09 Thread Om
Tomasz, I need your help to finish up the badge installer. After seeing the feedback we are getting regarding the confusion caused by the .AIR app, I think it is better to just install either the .dmg file or the .exe file based on the current platform. Can you modify the action button(install)

[Discuss] Release Apache Flex 4.8.0 - RC3 - build number 1359417

2012-07-09 Thread Justin Mclean
Hi, Minor issue I think. There's a duplication of the asDocs zip file in the root directory and the docs directory. Congrats on the Flex has been trademark signed off! I never thought that would happen :-) Thanks, Justin

[VOTE] Release Apache Flex 4.8.0 - RC3 - build number 1359417 (and Flex has been trademark signed off by Adobe for donation to Apache)

2012-07-09 Thread Carol Frampton
Hi, This is a parity release with Adobe Flex 4.6.0. The Adobe donation of the Flex trademark was signed off by Adobe on July 4th - Independence Day! Now is the time to download this kit, test it out and vote on it's release. I'd like to get a minimum of 10 positive votes but more would be gr

Re: Leveraging HTML5 functionalities

2012-07-09 Thread Justin Mclean
Hi, Nice idea/list. I'd add WebSockets to that list (and it's possible to implement in Flash/AS rather than using the "native" version). http://caniuse.com/#search=web%20sockets Thanks, Justin

Leveraging HTML5 functionalities

2012-07-09 Thread Om
I am using HTML5 in a general sense here, but looking at the new functionalities, I can see a few of them that Flex can benefit from. HTML5 + stack really is a collection of new elements like Canvas, SVG based animation and supporting functionalities like geolocation, client storage,etc. Of these

Re: Odd undefined property via reference to static type compilation error

2012-07-09 Thread Jeff Dyer
Yes, that is because strict mode punts on index expressions, because it doesn't in general know the string value of the index. That'll be workaround #3. Jeff On Mon, Jul 9, 2012 at 2:53 PM, Om wrote: > On Mon, Jul 9, 2012 at 2:40 PM, Jeff Dyer wrote: > > > This is probably a compiler bug, if n

Re: Odd undefined property via reference to static type compilation error

2012-07-09 Thread Om
On Mon, Jul 9, 2012 at 2:40 PM, Jeff Dyer wrote: > This is probably a compiler bug, if not a language bug. Instance > initializers were ill defined in AS3. In the draft ES4 spec we pinned them > down to be scoped to the class static scope, so references to 'this' or > instance variables would not

Re: [VOTE] Release Apache Flex 4.8.0 - RC2 - build number 1358354

2012-07-09 Thread Carol Frampton
I will be rekitting when I get home tonight to fix the copylocale issues and the issues with the makeApacheFlexforFlashBuilder scripts. Carol On 7/6/12 5 :44PM, "Carol Frampton" wrote: >Hi, > >This is a parity release with Adobe Flex 4.6.0. > >The official Apache distribution is the source kit

Re: Odd undefined property via reference to static type compilation error

2012-07-09 Thread Jeff Dyer
This is probably a compiler bug, if not a language bug. Instance initializers were ill defined in AS3. In the draft ES4 spec we pinned them down to be scoped to the class static scope, so references to 'this' or instance variables would not be resolved in instance initializers. That said, AS3 did a

Re: Odd undefined property via reference to static type compilation error

2012-07-09 Thread Harbs
Weird stuff. I would not have thought that private and protected would be different here. Harbs On Jul 9, 2012, at 10:14 PM, Desai, Ashish S wrote: > Different decompiler can give different results. Somehow what you gave in > source happens to work. Even this works > > private static var myva

RE: Odd undefined property via reference to static type compilation error

2012-07-09 Thread Desai, Ashish S
Different decompiler can give different results. Somehow what you gave in source happens to work. Even this works private static var myvarfirst:String = "testing"; private var myVar:String = this.myvarfirst; It allows assigning static values in non-static way and non-static values in static wa

Re: Odd undefined property via reference to static type compilation error

2012-07-09 Thread Om
FWIW, I ran the compiled code through a decompiler and this is how the same code gets converted as: *Source*: package { public class A { public var minHeight:Number = 9; public var minHeight2:Number = minHeight; } } *After decompilation*: package { public c

Re: Odd undefined property via reference to static type compilation error

2012-07-09 Thread Ryan Frishberg
In ActionScript, it looks like this doesn't work: class A { public var minHeight:Number = 9; protected var minHeight2:Number = this.minHeight; } Someone who knows ActionScript in more detail can probably explain why the compilter/runtime can't figure out what "this" should refer to when initia

Re: [VOTE] Release Apache Flex 4.8.0 - RC2 - build number 1358354

2012-07-09 Thread Om
On Mon, Jul 9, 2012 at 6:49 AM, Carol Frampton wrote: > > > On 7/8/12 11 :43PM, "Om" wrote: > > >Let me kick it off with a -1. The copylocale issue is still there. The > >absence of certain locale folders is more concerning to me than the > >'copylocale' functionality being broken. The absenc

[jira] [Created] (FLEX-33135) Flex 4.8.0 RC2 - CopyLocale not functioning correctly

2012-07-09 Thread OmPrakash Muppirala (JIRA)
OmPrakash Muppirala created FLEX-33135: -- Summary: Flex 4.8.0 RC2 - CopyLocale not functioning correctly Key: FLEX-33135 URL: https://issues.apache.org/jira/browse/FLEX-33135 Project: Apache Flex

RE: (FLEX-33134) New Apache Flex website

2012-07-09 Thread Desai, Ashish S
Yup! I got that. We are trying to retain the layer styles (Drop Shadows esp.), which is being removed in CSS. If you noticed, the Header buttons are created using CSS but don’t have drop shadow. However, how do you like the layout on various devices? Thanks, Ashish -Original Message-

Re: (FLEX-33134) New Apache Flex website

2012-07-09 Thread Tomasz Maciąg | Fuse Collective
Check it out. The first three buttons on the horizontal sub nav are functional. About buttons will be changed to the actual ones, once my designer is in. The buttons are pretty simple so we should be able to create them in CSS. I'm not very good at this but I've managed create preview: http:/

Re: [VOTE] Release Apache Flex 4.8.0 - RC2 - build number 1358354

2012-07-09 Thread Carol Frampton
On 7/8/12 11 :43PM, "Om" wrote: >Let me kick it off with a -1. The copylocale issue is still there. The >absence of certain locale folders is more concerning to me than the >'copylocale' functionality being broken. The absence of these locales >could manifest itself in a lot of different pla

AW: RSL load error

2012-07-09 Thread christofer.d...@c-ware.de
Hi, Is it intenional, that the textLayout have the same version as the FDK? Up to Flex 4.6 textLayout and osmf tended to have individual versions. Chris -Ursprüngliche Nachricht- Von: Dasa Paddock [mailto:dpadd...@esri.com] Gesendet: Samstag, 7. Juli 2012 00:31 An: flex-dev@incubator.a

Re: RSL load error

2012-07-09 Thread Carol Frampton
On 7/6/12 6 :31PM, "Dasa Paddock" wrote: >This is fixed in RC2. It now loads these RSLs at runtime for a basic test >app: > >framework_4.8.0.1358354.swf >spark_4.8.0.1358354.swf >textLayout_4.8.0.1358354.swf > >I first had to make this change to makeApacheFlexForFlashBuilder.sh >though: > >APAC

Re: [DISCUSS] Release Apache Flex 4.8.0 - RC2 - build number 1358354

2012-07-09 Thread Carol Frampton
On 7/6/12 6 :05PM, "Om" wrote: >Sorry to hijack your thread again, Carol. > >The InstallApacheFlex app is trying to download the binary from >http://people.apache.org/~cframpton/ApacheFlexRC/current/apache-flex-sdk-4 >.8.0-incubating-bin.zipand >getting a 404 error. Because the binaries are no

Re: [RT] Presentation: Apache Flex and the imperfect Web

2012-07-09 Thread Tomislav Pokrajcic
Sure, thnx for sharing :) On 9.7.2012. 13:21, Sebastian Mohr wrote: @Tomislav ... Thanks for sharing your slides, too! Furthermore, do not hesitate to use some slides of my presentation, in case they fit to your context ;) The source files of the diagrams which I have created can be found in my

Re: [RT] Presentation: Apache Flex and the imperfect Web

2012-07-09 Thread Tomislav Pokrajcic
Try now. Cheers, Tomislav On 9.7.2012. 13:46, Bharat Lohiya wrote: @Tomislav: Its not downlodable. :( Thanks, Bharat -Original Message- From: Bharat Lohiya [mailto:bharat_loh...@persistent.co.in] Sent: Monday, July 09, 2012 5:14 PM To: flex-dev@incubator.apache.org Subject: RE: [RT]

RE: [RT] Presentation: Apache Flex and the imperfect Web

2012-07-09 Thread Bharat Lohiya
@Tomislav: Its not downlodable. :( Thanks, Bharat -Original Message- From: Bharat Lohiya [mailto:bharat_loh...@persistent.co.in] Sent: Monday, July 09, 2012 5:14 PM To: flex-dev@incubator.apache.org Subject: RE: [RT] Presentation: Apache Flex and the imperfect Web @Tomislav Thanks for s

RE: [RT] Presentation: Apache Flex and the imperfect Web

2012-07-09 Thread Bharat Lohiya
@Tomislav Thanks for sharing your slides.. :) Thanks, Bharat -Original Message- From: Sebastian Mohr [mailto:masul...@gmail.com] Sent: Monday, July 09, 2012 4:52 PM To: flex-dev@incubator.apache.org Subject: Re: [RT] Presentation: Apache Flex and the imperfect Web @Tomislav ... Thanks f

(FLEX-33134) New Apache Flex website

2012-07-09 Thread Ashish Desai | Zootar LLP
I think my guys did a great job on this. Fits well on all form factors; portrait and landscape. Double tap works well to zoom in to a section. http://showcase.zootar.com Check it out. The first three buttons on the horizontal sub nav are functional. About buttons will be changed to the actual o

Re: [RT] Presentation: Apache Flex and the imperfect Web

2012-07-09 Thread Sebastian Mohr
@Tomislav ... Thanks for sharing your slides, too! Furthermore, do not hesitate to use some slides of my presentation, in case they fit to your context ;) The source files of the diagrams which I have created can be found in my SVN repository [1] - just in case you plan to modify the diagrams a bit

Re: [RT] Presentation: Apache Flex and the imperfect Web

2012-07-09 Thread Tomislav Pokrajcic
A couple of weeks ago I had a presentation on Flex at Java2012 - the first Croatian Java conference. Slides are not so detailed as Sebastian's but provide a brief overview of Flex today. Here's a Slideshare link: http://www.slideshare.net/tpokrajcic/apache-flex-enterprise-ready-gui-framework Ch