Update to the Maven-SDK-Converter (aka Mavenizer)

2015-07-16 Thread Christofer Dutz
Hi, I just wanted to inform you guys that I just comitted an update to the mavenizer, that now bundles up the android, aot and nai directories in the Air SDKs lib directory. This was needed for me to implement native packaging in Flexmojos. So don't be surprised if during a build a new Air con

AW: AW: Thoughts on mobile packaging for Flexmojos

2015-07-16 Thread Christofer Dutz
Ok ... more good news ... I just updated the mavenizer to package the missing parts. Together with my lokal changes on Flexmojos I am now able do do native packaging for Android without any need to do tweaking ... but now I'll have to concentrate on correct parametrization of the Air packagers

Re: [FalconJX] Scope when calling member function from a reference

2015-07-16 Thread Frank Wienberg
Hi guys, honestly I didn't read through the whole thread, but just wanted to remind you of what we collected about binding methods in the Apache Flex Wiki: https://cwiki.apache.org/confluence/display/FLEX/Simulating+AS3+language+features+in+JavaScript+using+AMD+and+ES5#SimulatingAS3languagefeatures

Re: New installer failures

2015-07-16 Thread Fabrice Montfort
I was trying to install FlexJS to give it a try and install (via FlexInstaller 3.3) failed with that log : Installer version 3.3.0 (mac) Using Locale: fr_FR L'URL de téléchargement du SDK à été récupérée à partir du CGI. SDK version Apache FlexJS 0.0.2 AIR version 18.0 Flash Player version 18.0 Cr

Re: New installer failures

2015-07-16 Thread Alex Harui
Hi. I just updated the MD5s for the closure library. Please try installing again. If you right-click before selection FlexJS you should find the option to choose the Nightly build (0.0.3) which has more improvements over 0.0.2. -Alex On 7/16/15, 3:58 AM, "Fabrice Montfort" wrote: >I was tryi

Re: [FalconJX] Scope when calling member function from a reference

2015-07-16 Thread Alex Harui
Hi Frank, Thanks for the reminder. I’ll wait a few days to see if there is any other input before trying to implement this. The main output is using Google Closure Library which uses goog.bind and may also write a named property for @export, so it would be good to make sure other’s can’t think o

FW: Travel Assistance for ACEU closes tomorrow!

2015-07-16 Thread Alex Harui
Whether you are a committer or not, if you are interested in attending ApacheCon in Budapest, you can save money by volunteering to help out at the conference and get travel assistance. Deadline for applying for travel assistance is tomorrow. -Alex From: Gavin McDonald mailto:gmcdon...@apache

AW: Travel Assistance for ACEU closes tomorrow!

2015-07-16 Thread Christofer Dutz
And we should mention that 6 flex talks have been confirmed and justin, Om and I will be having a full flex track 😁 Von meinem Samsung Galaxy Smartphone gesendet. Ursprüngliche Nachricht Von: Alex Harui Datum: 16.07.2015 18:13 (GMT+01:00) An: dev@flex.apache.org, us...@fle

Re: AW: Travel Assistance for ACEU closes tomorrow!

2015-07-16 Thread Igor Costa
Thats good news Chris. On Jul 16, 2015 1:25 PM, "Christofer Dutz" wrote: > And we should mention that 6 flex talks have been confirmed and justin, > Om and I will be having a full flex track 😁 > > > > Von meinem Samsung Galaxy Smartphone gesendet. > > > Ursprüngliche Nachricht

Re: git commit: [flex-sdk] [refs/heads/develop] - FLEX-34854 FLEX-34884 Adding unit test to make sure that the changes in FLEX-34854 haven't changed anything about findItem.

2015-07-16 Thread Alex Harui
Hi Mihai, We have seen mustella test failures that appear to be related to your changes. Can you take a look? [java] = [java] Failed: [java] = [java] LangPacks/Japane

Re: [FalconJX] Scope when calling member function from a reference

2015-07-16 Thread Josh Tynjala
This little snippet from that wiki page looks like it should be helpful. function bind(object, boundMethodName) { if (object.hasOwnProperty(boundMethodName)) { return object[boundMethodName]; } var boundMethod = object[boundMethodName].bind(object); Object.defineProperty(object, boundM

Re: [FalconJX] Scope when calling member function from a reference

2015-07-16 Thread Michael Schmalle
HA, I just looked at the code I wrote 2+ years ago for the AMD emitter, looks like I already did this. :) If you look at JSAMDEmitter.java at line 845. :) That AS3.bind() call IS that function in javascript you just listed out. So I guess that answers that, my comment was; // AS3.bi

Re: git commit: [flex-sdk] [refs/heads/develop] - FLEX-34854 FLEX-34884 Adding unit test to make sure that the changes in FLEX-34854 haven't changed anything about findItem.

2015-07-16 Thread Mihai Chira
> changes. Can you take a look? on it

Re: [FalconJX] Scope when calling member function from a reference

2015-07-16 Thread Josh Tynjala
Yeah, that looks like the function in use. The comment specifically mentions being on the right side of an equals sign. Would the same code be used when passed as a function argument, or would that need to happen elsewhere? Maybe in the emitArgumentIdentifier() function above that? I don't know if

Re: git commit: [flex-sdk] [refs/heads/develop] - FLEX-34854 FLEX-34884 Adding unit test to make sure that the changes in FLEX-34854 haven't changed anything about findItem.

2015-07-16 Thread Mihai Chira
At least one of the failures should now be fixed. If others are left, I'll tackle them in the next few days. How can I monitor the test results? The bookmark I have for the build server is this[1] and it doesn't seem to be working. Sorry if there was a url change that I didn't catch. [1] http://ap

Re: [FalconJX] Scope when calling member function from a reference

2015-07-16 Thread Michael Schmalle
Yeah, it can be. The more I look at this the more I remember doing it all for variables, function/method arguments for Randori as well. I mean some type of function binding. I am still rusty when looking at this and just doing a high level browse right at the moment. So is there any other place I

Re: git commit: [flex-sdk] [refs/heads/develop] - FLEX-34854 FLEX-34884 Adding unit test to make sure that the changes in FLEX-34854 haven't changed anything about findItem.

2015-07-16 Thread Alex Harui
The link at [1] is the build server that is currently down. It doesn’t run mustella. Mustella tests are at http://flex-mustella.cloudapp.net and failures are sent to commits@ Every couple of days, we start getting weird failures that requires fiddling with the mustella server. It looks like we’

Re: AW: AW: AW: Problems Installing Flash SDK according to documentation

2015-07-16 Thread mscharp
I've finally had a chance to get outside of my company proxy and try this out. I made better progress, but still failing to build. I did see a couple of things that I thought might be worth mentioning, in addition to the ultimate failure. I noticed that it tried to install items twice. For exam

Re: [FalconJX] Scope when calling member function from a reference

2015-07-16 Thread Alex Harui
Isn’t it that any FunctionDefinition that isn’t local and isn’t being used in a call needs to be turned into a closure and cached so that same closure gets re-used the next time? You could be building an array of callbacks: Var foo:Array = new Array(10); foo[1] = someFunction;