Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread João Fernandes
Yes from babel or from traceur but babel output is way cleaner. On May 28, 2015 00:01, "Michael Schmalle" wrote: > So basically your saying the output of ES5 from Babel? > > Mike > > On Wed, May 27, 2015 at 6:47 PM, Josh Tynjala > wrote: > > > You might also consider looking at the output of Bab

Re: Apache Flex Website thought

2015-05-27 Thread piotrz
Maybe writing whole website at this point in FlexJS will be really hard to achieve. But what about split everything into two directions. - Modify/write website in an "old" fashion in html - Start writing CMS for this website in FlexJS Many years ago I was working for some company where we wrote w

apacheflex.com domain name

2015-05-27 Thread Justin Mclean
Hi, BTW this is not the first time a issue has come up re that domain name. It was mentioned in the December 2013 board report. [1] Justin 1. http://mail-archives.apache.org/mod_mbox/flex-dev/201312.mbox/%3ccec235ea.135ad%25aha...@adobe.com%3E

Re: Need ideas for spare server

2015-05-27 Thread Justin Mclean
Hi, > Just fyi, flexjs.com was bought by some domain name squatters and it is being > sold for about $3000 > usd Sad but probably not a huge amount we can do about that. I don’t believe FlexJS is trademarked? > . apacheflex.com was also taken. Wish I hadn’t looked at that, as it's is clear vi

Need ideas for spare server

2015-05-27 Thread kevin.godell
I want to do something with a server that is running in my basement. It has been online for just over 7 years and it has served me well. I want to do something Flex or FlexJS related and I am looking for ideas. I was thinking about possibly using it for testing, maybe setting up some php scripts fo

Re: Apache Flex Website thought

2015-05-27 Thread kevin.godell
I don't mean to pile on, but the user groups section[1] needs a little attention. Some of the links go to dead websites or groups that no longer exist. From my perspective, which is that of an amateur at best, I had found the website and wiki difficult to navigate. And when I had tried to visit so

Re: [FalconJX] JXEmitter accessors

2015-05-27 Thread Alex Harui
On 5/27/15, 4:16 PM, "Michael Schmalle" wrote: >Ok, This needs to be clear to me before I go off to OZ. > >In Flex JS you have; > >Object.defineProperties(Base.prototype, /** @lends {Base.prototype} */ { >/** @expose */ >text: { >get: /** @this {Base} */ function() { > return "A" + org_apache_

Re: [FalconJX] JXEmitter accessors

2015-05-27 Thread Michael Schmalle
Also, this is what happens when you are away from something for 2 years. You forget the major headaches that make this idea seem impossible(straight transpiler). It's all coming back to me now, grr... Mike On Wed, May 27, 2015 at 7:16 PM, Michael Schmalle wrote: > Ok, This needs to be clear to

[FalconJX] JXEmitter accessors

2015-05-27 Thread Michael Schmalle
Ok, This needs to be clear to me before I go off to OZ. In Flex JS you have; Object.defineProperties(Base.prototype, /** @lends {Base.prototype} */ { /** @expose */ text: { get: /** @this {Base} */ function() { return "A" + org_apache_flex_utils_Language.superGetter(Base, this, 'text'); }, set:

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Michael Schmalle
So basically your saying the output of ES5 from Babel? Mike On Wed, May 27, 2015 at 6:47 PM, Josh Tynjala wrote: > You might also consider looking at the output of Babel. Babel transpiles > ECMAScript 6 back to older versions of the language that are more widely > supported today. TypeScript is

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Michael Schmalle
kludge to me is an ugly half solution for something that shouldn't have to have a solution. :) I am trying to figure out all the stuff I will run into if I go this way and this sounds like a road block. I seriously don't think TS has implemented a super property call yet. It's in the github issue

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Josh Tynjala
You might also consider looking at the output of Babel. Babel transpiles ECMAScript 6 back to older versions of the language that are more widely supported today. TypeScript is trying to be a superset of ES6, so it should be pretty similar. http://babeljs.io - Josh On Wed, May 27, 2015 at 2:23 P

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Alex Harui
On 5/27/15, 3:42 PM, "Michael Schmalle" wrote: >On Wed, May 27, 2015 at 6:35 PM, Alex Harui wrote: > >> >> >> On 5/27/15, 3:32 PM, "Michael Schmalle" >>wrote: >> >> >BTW, the ONE HELL I had with Randori was this get_ set_ crap, this will >> >make is SO much easier. :) >> >> True, but IMO, the

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Alex Harui
On 5/27/15, 3:37 PM, "Michael Schmalle" wrote: >Well, that is semantics that challenge me, the get_, set_ was kludge and I >hate kludge. :) I’m not sure of your definition of “kludge” but while Object.defineProperties is quite cool for translating: function get foo():int { } function set foo(

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Michael Schmalle
On Wed, May 27, 2015 at 6:35 PM, Alex Harui wrote: > > > On 5/27/15, 3:32 PM, "Michael Schmalle" wrote: > > >BTW, the ONE HELL I had with Randori was this get_ set_ crap, this will > >make is SO much easier. :) > > True, but IMO, there is still hell in calling the superclass’s getter > and/or se

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Michael Schmalle
Well, that is semantics that challenge me, the get_, set_ was kludge and I hate kludge. :) I will make a jxemitter branch when I start. Mike On Wed, May 27, 2015 at 6:35 PM, Alex Harui wrote: > > > On 5/27/15, 3:32 PM, "Michael Schmalle" wrote: > > >BTW, the ONE HELL I had with Randori was th

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Alex Harui
On 5/27/15, 3:32 PM, "Michael Schmalle" wrote: >BTW, the ONE HELL I had with Randori was this get_ set_ crap, this will >make is SO much easier. :) True, but IMO, there is still hell in calling the superclass’s getter and/or setter. -Alex

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Michael Schmalle
BTW, the ONE HELL I had with Randori was this get_ set_ crap, this will make is SO much easier. :) Mike On Wed, May 27, 2015 at 6:29 PM, Michael Schmalle wrote: > Get/Set > > For this TypeScript; > > class foo { > private _bar:Boolean = false; > get bar():Boolean { > return this

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Alex Harui
Yes, so good that will be in alignment. On 5/27/15, 3:29 PM, "Michael Schmalle" wrote: >Get/Set > >For this TypeScript; > >class foo { >private _bar:Boolean = false; >get bar():Boolean { >return this._bar; >} >set bar(theBar:Boolean) { >this._bar = theBar; >}

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Michael Schmalle
Get/Set For this TypeScript; class foo { private _bar:Boolean = false; get bar():Boolean { return this._bar; } set bar(theBar:Boolean) { this._bar = theBar; } } It produces; var foo = (function () { function foo() { this._bar = false; } Ob

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Alex Harui
On 5/27/15, 1:54 PM, "Michael Schmalle" wrote: >Ok, > >I am a doer... :) Since this is all POC right now and I am up to learn >some >JS, I will use this as a format. I have done this JSEmitter 2 times now so >the 3rd isn't going to be that hard, maybe the charm for me to. > >Note, most of the e

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Michael Schmalle
On Wed, May 27, 2015 at 5:46 PM, Alex Harui wrote: > > > > Hey, can you email Roland about AS3Commons’ ZIP library? We use that in > the Installer and I think it needs to be moved someplace more stable like > GitHub because the old links to it stopped working. > > Yeah if I get a hold of him to

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Alex Harui
On 5/27/15, 1:13 PM, "Michael Schmalle" wrote: >On Wed, May 27, 2015 at 4:02 PM, Alex Harui wrote: > >> >> This is where, for Apache projects, it gets tricky/messy. Tamarin code >>is >> MPL (or xGPL) and Apache doesn’t like have source code dependencies on >> those licenses. You can have a d

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Michael Schmalle
Ok Update. I have been researching TypeScript and it's output, this is what I am doing. For some reason this "just" makes sense to me and the are 100's of examples I can use to test the code generation against. Josh, I would say if you want to start experimenting with your framework, use what you

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Michael Schmalle
Ok, I am a doer... :) Since this is all POC right now and I am up to learn some JS, I will use this as a format. I have done this JSEmitter 2 times now so the 3rd isn't going to be that hard, maybe the charm for me to. Note, most of the expressions and statements are already done. As noted, inher

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Josh Tynjala
When I played with TypeScript, I loved that I could subclass CreateJS prototypes very easily. As long as something like that is possible from ActionScript (assuming I could provide a SWC or something for CreateJS or whichever library I want to use), I don't have too strong of an opinion on how the

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Michael Schmalle
On Wed, May 27, 2015 at 4:02 PM, Alex Harui wrote: > > This is where, for Apache projects, it gets tricky/messy. Tamarin code is > MPL (or xGPL) and Apache doesn’t like have source code dependencies on > those licenses. You can have a dependency on compiled MPL code so if > there was a swc in a

Re: Apache Flex Website thought

2015-05-27 Thread Harbs
Now THAT, is a really interesting idea! I can’t think of a better way to promote it (assuming it looks good…) It might also be a good way to flush out some of the components. If we’re on that topic: Has anyone given thought to responsive HTML in FlexJS? On May 27, 2015, at 11:04 PM, Alex Harui

Re: Apache Flex Website thought

2015-05-27 Thread Nicholas Kwiatkowski
Yeah. Ultimately, I'd really love to see the site powered by a CMS. The bastardization of a CMS we have right now really makes even the small changes like smashing a triakis tetrahedron peg into a round hole. With the advent of modern CMSs generating static sites and Apache really wanting to go a

Re: Apache Flex Website thought

2015-05-27 Thread Nicholas Kwiatkowski
On Wed, May 27, 2015 at 3:52 PM, Michael Schmalle wrote: > > BTW, Did you mean Joseph, not Josh? The one with the videos? > > Yes, sorry about that. My eyes wandered to something else and I didn't type the write name. Sorry Joseph! -Nick

Re: Apache Flex Website thought

2015-05-27 Thread Alex Harui
And FTR, my wild dream is to write our site using FlexJS. ;-) If this was all MXML and AS, wouldn’t it be much easier to maintain? -Alex On 5/27/15, 12:52 PM, "Michael Schmalle" wrote: >If I can manage to get my foothold with my business int he direction I >want, I would be up to helping keep

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Alex Harui
On 5/27/15, 12:05 PM, "Michael Schmalle" wrote: >> OK, one more thought: there may be reverse-engineering issues about >replacing playerglobal/airglobal, but I was hoping we might find some >Tamarin code laying around that has what we’d start with for jsglobal.swc. > >Hmmm, yeah I re-read the B

RE: Apache Flex Website thought

2015-05-27 Thread Joseph Labrecque
I'm willing to help out in both regards: content creation and maintenance. The docs integration right up front would be a great improvement! -- Joseph Labrecque Senior Interactive Software Engineer University of Denver Adobe Education Leader | Adobe Community Professional -Original Me

Re: Apache Flex Website thought

2015-05-27 Thread Michael Schmalle
If I can manage to get my foothold with my business int he direction I want, I would be up to helping keep it fresh (in the future). One thing that would help Nic is when you go through and make updates, write a wiki page explaining what you did and the exact places that should be kept up and a li

Re: Apache Flex Website thought

2015-05-27 Thread Nicholas Kwiatkowski
I'm willing to take on a bit of a refresh of the website after I get a few other commits taken care of. Idealy, I'd like to integrate the newly donated Flex Docs into the site (with search, etc.), so doing a quick refresh of the content would make sense. The biggest concern when we launched the w

Re: Apache Flex Website thought

2015-05-27 Thread Nemi
Agree. More my comments: * Double/triple linking to same content doesn't make website more rich of content, it makes it not organized. For example: - 'Licensing' on front page and 'About Flex->License & Trademarks' link to same page about-licensing.html

Re: [FlexJS] Build question - JSHint, Linter

2015-05-27 Thread OmPrakash Muppirala
On Wed, May 27, 2015 at 12:01 PM, Alex Harui wrote: > > > On 5/27/15, 11:39 AM, "OmPrakash Muppirala" wrote: > > >On Wed, May 27, 2015 at 11:36 AM, Alex Harui wrote: > > > >> FWIW, there should be no.lint flag to skip linting. I considered > >>skipping > >> by default since it is relevant to b

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Michael Schmalle
> OK, one more thought: there may be reverse-engineering issues about replacing playerglobal/airglobal, but I was hoping we might find some Tamarin code laying around that has what we’d start with for jsglobal.swc. Hmmm, yeah I re-read the Builtin, I really thought Roland did use code from an open

Re: [FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Michael Schmalle
On Wed, May 27, 2015 at 2:50 PM, Alex Harui wrote: > New thread: > > > > On 5/27/15, 9:52 AM, "Michael Schmalle" wrote: > > >Well, when I said "teach" I just meant getting into the code. Really, I > >know the base part of the compiler and the walker/visitor framework well > >;-), so getting Falc

Re: [FlexJS] Build question - JSHint, Linter

2015-05-27 Thread Alex Harui
On 5/27/15, 11:39 AM, "OmPrakash Muppirala" wrote: >On Wed, May 27, 2015 at 11:36 AM, Alex Harui wrote: > >> FWIW, there should be no.lint flag to skip linting. I considered >>skipping >> by default since it is relevant to building the release package, only >>for >> verifying changes to the c

Re: Re : Re: [Falcon] Compiler.tests failing

2015-05-27 Thread Alex Harui
On 5/27/15, 9:54 AM, "Frédéric THOMAS" wrote: >It is an installed sdk, I had to switch because FlexUnit require one for >FLEX_HOME, I tried with both though and same result. Hmm, well if you can, try debugging the test and see if you can figure out why it can’t find those resources. -Alex

[FalconJX] AS for Native HTML JS (was Re: [FalconJX FlexJS] JIRA issues and helping with the compiler)

2015-05-27 Thread Alex Harui
New thread: On 5/27/15, 9:52 AM, "Michael Schmalle" wrote: >Well, when I said "teach" I just meant getting into the code. Really, I >know the base part of the compiler and the walker/visitor framework well >;-), so getting FalconJX to use an HTML.swc would be exactly what I am >looking for to

Re: [FlexJS] Build question - JSHint, Linter

2015-05-27 Thread Michael Schmalle
On Wed, May 27, 2015 at 2:36 PM, Alex Harui wrote: > FWIW, there should be no.lint flag to skip linting. I considered skipping > by default since it is relevant to building the release package, only for > verifying changes to the code, but I figured it would be too much hassle > to hassle anyone

Re: [FalconJX FlexJS] JIRA issues and helping with the compiler

2015-05-27 Thread Michael Schmalle
Kewl, I figured as much but I don't have the experience with HTML/SVG I would be learning through this. Well you will have to treat me like a kid but I am willing to help you out on this graphics stuff. Mike On Wed, May 27, 2015 at 2:17 PM, OmPrakash Muppirala wrote: > On Wed, May 27, 2015 at

Re: [FlexJS] Build question - JSHint, Linter

2015-05-27 Thread OmPrakash Muppirala
On Wed, May 27, 2015 at 11:36 AM, Alex Harui wrote: > FWIW, there should be no.lint flag to skip linting. I considered skipping > by default since it is relevant to building the release package, only for > verifying changes to the code, but I figured it would be too much hassle > to hassle anyon

Re: [FlexJS] Build question - JSHint, Linter

2015-05-27 Thread Alex Harui
FWIW, there should be no.lint flag to skip linting. I considered skipping by default since it is relevant to building the release package, only for verifying changes to the code, but I figured it would be too much hassle to hassle anyone making mods to the source to install and turn on the linter.

Re: [FlexJS] Build question - JSHint, Linter

2015-05-27 Thread OmPrakash Muppirala
On Wed, May 27, 2015 at 11:05 AM, Erik de Bruin wrote: > > So, npm is a dependency, then. I will update the README mentioning this > > add well. > > IIRC, the linters are only used for SDK development, NOT for > 'production' projects... So, yes, a dependency, but only for FlexJS > SDK devs, not

Re: [FalconJX FlexJS] JIRA issues and helping with the compiler

2015-05-27 Thread OmPrakash Muppirala
On Wed, May 27, 2015 at 11:06 AM, Michael Schmalle < teotigraphix...@gmail.com> wrote: > Ok, I will have these screenshots then. Must I didn't know non logged in > people couldn't view images on KVR. > > http://snag.gy/ajFEZ.jpg > > http://snag.gy/vCJen.jpg > > http://snag.gy/785HX.jpg > > This he

Re: [FalconJX FlexJS] JIRA issues and helping with the compiler

2015-05-27 Thread Michael Schmalle
Ok, I will have these screenshots then. Must I didn't know non logged in people couldn't view images on KVR. http://snag.gy/ajFEZ.jpg http://snag.gy/vCJen.jpg http://snag.gy/785HX.jpg Mike On Wed, May 27, 2015 at 2:01 PM, OmPrakash Muppirala wrote: > On Wed, May 27, 2015 at 10:58 AM, Michael

Re: [FlexJS] Build question - JSHint, Linter

2015-05-27 Thread Erik de Bruin
> So, npm is a dependency, then. I will update the README mentioning this > add well. IIRC, the linters are only used for SDK development, NOT for 'production' projects... So, yes, a dependency, but only for FlexJS SDK devs, not the application programmers using FlexJS. EdB -- Ix Multimedia

Re: [FalconJX FlexJS] JIRA issues and helping with the compiler

2015-05-27 Thread OmPrakash Muppirala
On Wed, May 27, 2015 at 10:58 AM, Michael Schmalle < teotigraphix...@gmail.com> wrote: > @Om > > Checkout page 1 and 2 of this thread. I am using OSC and AIR/Feathers to > control Bitwig(Audio DAW). > > http://www.kvraudio.com/forum/viewtopic.php?f=259&t=435857 > > The above is the same type of st

Re: [FalconJX FlexJS] JIRA issues and helping with the compiler

2015-05-27 Thread Michael Schmalle
@Om Checkout page 1 and 2 of this thread. I am using OSC and AIR/Feathers to control Bitwig(Audio DAW). http://www.kvraudio.com/forum/viewtopic.php?f=259&t=435857 The above is the same type of stuff I am drawing in my Caustic apps. Let me know if that makes sense to you. Mike On Wed, May 27,

Re: [FlexJS] Build question - JSHint, Linter

2015-05-27 Thread OmPrakash Muppirala
On Wed, May 27, 2015 at 10:52 AM, Erik de Bruin wrote: > For Closure Linter: > > https://developers.google.com/closure/utilities/docs/linter_howto > > This link is much better. I will add this to the README. > And JSHint: > > http://jshint.com/install/ So, npm is a dependency, then. I will u

Re: [FalconJX FlexJS] JIRA issues and helping with the compiler

2015-05-27 Thread OmPrakash Muppirala
On Wed, May 27, 2015 at 10:46 AM, Michael Schmalle < teotigraphix...@gmail.com> wrote: > Alex, > > Thinking about this more. > > I have 1 or 2 apps that are more "administrative" such as a library > manager, MIDI importer, metadata manager for the Caustic files that are on > the device. > > Seeing

Re: [FlexJS] Build question - JSHint, Linter

2015-05-27 Thread Erik de Bruin
For Closure Linter: https://developers.google.com/closure/utilities/docs/linter_howto And JSHint: http://jshint.com/install/ HTH, EdB On Wed, May 27, 2015 at 7:45 PM, OmPrakash Muppirala wrote: > Sorry if this was asked and answered, but I am having trouble getting the > Linter and JSHint

Re: Apache Flex Website thought

2015-05-27 Thread Josh Tynjala
Yeah, the Apache Flex website needs a little love for developers who are new to Flex. A couple of thoughts: * The big hero image carousel might be a little too big. I've seen multiple studies that say that carousels aren't very effective. They tend to hide important things because people don't sti

Re: [FlexJS] Build question - JSHint, Linter

2015-05-27 Thread Michael Schmalle
I remember two years ago when Erik started with the GCC, I had to install Python. I am pretty sure something in the tool chain you are speaking of calls python. Mike On Wed, May 27, 2015 at 1:45 PM, OmPrakash Muppirala wrote: > Sorry if this was asked and answered, but I am having trouble getti

Re: [FalconJX FlexJS] JIRA issues and helping with the compiler

2015-05-27 Thread Michael Schmalle
Alex, Thinking about this more. I have 1 or 2 apps that are more "administrative" such as a library manager, MIDI importer, metadata manager for the Caustic files that are on the device. Seeing that HTML is more text/editor centric, I could see myself trying to get the native extension working s

[FlexJS] Build question - JSHint, Linter

2015-05-27 Thread OmPrakash Muppirala
Sorry if this was asked and answered, but I am having trouble getting the Linter and JSHint installed on my Windows machine. The README says this: *6) The JSHint utility installed by following the instructions here:

Re: Apache Flex Website thought

2015-05-27 Thread Alex Harui
On 5/27/15, 9:01 AM, "JosephLabrecque" wrote: > >Great. I'll start developing a small "wish list" of learning and demo >resources that could be produced. > >My wiki username is "josephlabrecque". Thanks. > OK, you should be able to add and edit pages now. -Alex

Re: [FalconJX FlexJS] JIRA issues and helping with the compiler

2015-05-27 Thread Michael Schmalle
On Wed, May 27, 2015 at 12:37 PM, Alex Harui wrote: > > > On 5/27/15, 9:02 AM, "Michael Schmalle" wrote: > > > > >In the FlexJS and FalconJX categories there is not much and just assuming > >since your are basically the main committer on the compiler right now, > >that > >you just fix stuff and

Re : Re: [Falcon] Compiler.tests failing

2015-05-27 Thread Frédéric THOMAS
It is an installed sdk, I had to switch because FlexUnit require one for FLEX_HOME, I tried with both though and same result. I committed my first work on the compiler removing the target compiler.test at the moment. --- Message initial --- De : "Alex Harui" Envoyé : 27 mai 2015 17:24 A : dev

Re: [FalconJX FlexJS] JIRA issues and helping with the compiler

2015-05-27 Thread Alex Harui
On 5/27/15, 9:02 AM, "Michael Schmalle" wrote: >Alex, mainly aimed at you. I was skimming the JIRA in FlexJS and have a >couple questions. > >What is the difference between; > >Apache ASJS 1.0 > >Apache FlexJS 1.0 >

Re: Apache Flex Website thought

2015-05-27 Thread Nemi
For me, experienced with Flex, flex.apache.org is totally not useful. If I am new to Flex and go on website, I would be confused and give up. It does not look like some SDK website. More like some template site left alone. That big slider on frontpage? Come on... For every release one text line i

Re: [Falcon] Compiler.tests failing

2015-05-27 Thread Alex Harui
Not sure what is wrong. Is D:\SDKsSources an installed Flex SDK or the git repo? I’ve never tried running the tests while pointing at an installed Flex SDK. I’m always pointing at the git repo. -Alex On 5/27/15, 6:08 AM, "Frédéric THOMAS" wrote: >It seems the test is forced in en_US and I've

Re: Squiggly Oddness

2015-05-27 Thread Harbs
FWIW, I solved my specific issue by using an index instead of a reference to the controller, and I always resolve the controller using flowComposer.getControllerAt(_flowIndex); As for the why: Squiggly replaces the standard ContainerController with a SquigglyCustomContainerController (which ext

Re: Apache Flex Website thought

2015-05-27 Thread JosephLabrecque
Alex Harui wrote > On 5/27/15, 7:48 AM, "Joseph Labrecque" < > Joseph.Labrecque@ > > wrote: > >> is there a mechanism to keep a list or wiki within Apache? > > There is a wiki for Apache Flex. It is at [1]. You don’t have to be a > committer to contribute content to the wiki. If you are inte

Re: 'Apache Flex and Adobe AIR with IntelliJ IDEA' Video Tutorial Donation

2015-05-27 Thread JosephLabrecque
Alex Harui wrote > Thanks Joseph. My email looks like it might have gotten mangled a bit, > but Adobe also wants a similar paragraph, which is: > > Adobe, Adobe AIR and Adobe Flash Builder are either registered trademarks > or trademarks of Adobe Systems Incorporated in the United States and/or >

[FalconJX FlexJS] JIRA issues and helping with the compiler

2015-05-27 Thread Michael Schmalle
Alex, mainly aimed at you. I was skimming the JIRA in FlexJS and have a couple questions. What is the difference between; Apache ASJS 1.0 Apache FlexJS 1.0 Is t

Re: 'Apache Flex and Adobe AIR with IntelliJ IDEA' Video Tutorial Donation

2015-05-27 Thread Alex Harui
On 5/27/15, 7:51 AM, "Joseph Labrecque" wrote: >It's not 100% clear... but I think it's manageable :) > >This has all been done as of this morning. Thanks Joseph. My email looks like it might have gotten mangled a bit, but Adobe also wants a similar paragraph, which is: Adobe, Adobe AIR and

Re: Apache Flex Website thought

2015-05-27 Thread Michael Schmalle
On the web site, how about a column that shows simple quick links to the major parts of the site? WIKI, Source code, some "incubating projects" within the Apache Flex project. I know this stuff is in the drop down, but if people see it on the front page, they are more likely to click into and read

Re: Apache Flex Website thought

2015-05-27 Thread Alex Harui
On 5/27/15, 7:48 AM, "Joseph Labrecque" wrote: > is there a mechanism to keep a list or wiki within Apache? There is a wiki for Apache Flex. It is at [1]. You don’t have to be a committer to contribute content to the wiki. If you are interested in creating wiki content, go to the wiki, crea

Re: [2/2] git commit: [flex-falcon] [refs/heads/IDEA-FLEX_JS_COMPILER] - FLEX-34860 : Updated the Ant files

2015-05-27 Thread Alex Harui
These look fine for now. I want to avoid a dependency on the SDK’s swfutils because it has a dependency on Batik that we’ve hacked with some non-standard modifications. As I continue to try to get FDB to work without the SDK’s swfutils, I am basically copying more and more files from swfutils a

Re: Squiggly Oddness

2015-05-27 Thread Alex Harui
I haven’t looked at the code at all, but maybe it would be worth trying to figure out “why” Squiggly replaces the controller. I would imagine it is to get certain events so it knows when to run its spell checker and/or injecting the squiggly decoration. Having the controller dispatch the right ev

Re: Mustella SDK tests

2015-05-27 Thread Alex Harui
On 5/27/15, 1:11 AM, "Tom Chiverton" wrote: > >It seems happier overall now since you threatened it any way :-) I know for sure there was at least one other time where, without any code changes, things started working again for a while. So I’ll bet we start seeing the failures again eventually

RE: 'Apache Flex and Adobe AIR with IntelliJ IDEA' Video Tutorial Donation

2015-05-27 Thread Joseph Labrecque
It's not 100% clear... but I think it's manageable :) This has all been done as of this morning. Thanks! -- Joseph Labrecque Senior Interactive Software Engineer University of Denver Adobe Education Leader | Adobe Community Professional -Original Message- From: Alex Harui [mailto:

RE: Apache Flex Website thought

2015-05-27 Thread Joseph Labrecque
The problem I see with most of this content is that it is very old - using older versions of Flex and older tools like Flex Builder. This is one of the reasons I started to create some tutorials around Apache Flex and IntelliJ - for there to be some updated content out there using modern IDEs,

Apache Flex Website thought

2015-05-27 Thread Michael Schmalle
I know I haven't been around for two years but this will be my case in point. When I left back in 2013 for some other jobs, the 3 articles/images on the site's front page are still the same as they are in 2015. - The Flex in a Week Series

RE: [Falcon] Compiler.tests failing

2015-05-27 Thread Frédéric THOMAS
It seems the test is forced in en_US and I've got all the locales, what can I do ? Frédéric THOMAS > From: aha...@adobe.com > To: dev@flex.apache.org > Subject: Re: [Falcon] Compiler.tests failing > Date: Wed, 27 May 2015 13:03:36 + > > Sounds like a locale issue. Maybe we aren’t forcing th

Re: [Falcon] Compiler.tests failing

2015-05-27 Thread Alex Harui
Sounds like a locale issue. Maybe we aren’t forcing the locale to en_US or the fr_FR or en_US resource bundles don’t exist. I don’t know if the tests will pass in fr_FR or not. -Alex On 5/27/15, 5:53 AM, "Frédéric THOMAS" wrote: >Hi, > >I've got this test failing, any clue ? > >Executing test:

Re: 'Apache Flex and Adobe AIR with IntelliJ IDEA' Video Tutorial Donation

2015-05-27 Thread Alex Harui
On 5/27/15, 5:01 AM, "Joseph Labrecque" wrote: >Thanks much; Om, Nick, Erik, and all. > >Alex: I'll go through and add that marks and text copy wherever >necessary. It certainly wouldn't hurt to have it anyplace and I know from >similar projects that this sort of thing is often done. > >Justin:

[Falcon] Compiler.tests failing

2015-05-27 Thread Frédéric THOMAS
Hi, I've got this test failing, any clue ? Executing test: [D:\SDKs\flashDeguggerSA\flashplayer_17_sa_debug.exe, U:\sources\asf\flex\falcon\compiler.tests\temp\MXMLDefinitionTagTests2763723726227278167.swf] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1,337 sec Running mxml.ta

RE: 'Apache Flex and Adobe AIR with IntelliJ IDEA' Video Tutorial Donation

2015-05-27 Thread Joseph Labrecque
Thanks much; Om, Nick, Erik, and all. Alex: I'll go through and add that marks and text copy wherever necessary. It certainly wouldn't hurt to have it anyplace and I know from similar projects that this sort of thing is often done. Justin: Whatever you and Alex and the wider group decide is go

Re: [FlexJS] What is VF2JS ?

2015-05-27 Thread Michael Schmalle
On Wed, May 27, 2015 at 7:05 AM, Erik de Bruin wrote: > Hi Mike, > > That's my pet project ;-) I'm trying to get the entire Flex SDK to > compile to JS. It's a research project where my aim is to see if it > can be done, what pitfalls there are and if it all works out, we'd be > able to have our

Re: [FlexJS] What is VF2JS ?

2015-05-27 Thread Erik de Bruin
Hi Mike, That's my pet project ;-) I'm trying to get the entire Flex SDK to compile to JS. It's a research project where my aim is to see if it can be done, what pitfalls there are and if it all works out, we'd be able to have our vanilla application 'working' in JavaScript. EdB On Wed, May 27

AW: [FlexJS] What is VF2JS ?

2015-05-27 Thread Christofer Dutz
Ni Michael, I think this was an approach to compile applications using normal Flex libraties to JavaScript. But as far as I know it's more a POC at the moment. Chris Von: Michael Schmalle Gesendet: Mittwoch, 27. Mai 2015 12:34 An: dev@flex.apache.org Be

[FlexJS] What is VF2JS ?

2015-05-27 Thread Michael Schmalle
Hi, As the title states, I am curious what this is exactly. I have been studying the compiler code for the last week and I just haven't got what it does. Is it a new project or does it augment flexjs emitter? Mike

Re: Squiggly Oddness

2015-05-27 Thread Harbs
One idea which could solve problem #1 would be to add a method IFlowComposer.replaceController() which would dispatch an event with the old controller and the new one. But, this doe not solve problem #2. There must be some way of solving this using composition… On May 27, 2015, at 1:18 PM, Har

Squiggly Oddness

2015-05-27 Thread Harbs
When loading Squiggly, it modifies the controllers in the FlowComposer and swaps out the existing controllers with SquigglyCustomContainerControllers. This is problematic: 1) There’s no way to track ContainerControllers while using Squiggly. Any tracked ContainerControllers become unused. (I cur

Re: git commit: [flex-asjs] [refs/heads/develop] - allow for sdk and not just flex-sdk

2015-05-27 Thread Michael Schmalle
Looks good to me. I totally forget how to update the site and don't really want to right but, it would also be nice to list each repo where there is an active develop branch, for instance flex-tlf, flex-falcon. I would say anything that the readme mentions develop it should be there. Mike On We

Re: Mustella SDK tests

2015-05-27 Thread Tom Chiverton
On 26/05/15 16:46, Alex Harui wrote: On 5/26/15, 2:49 AM, "Tom Chiverton" wrote: But the current run has already logged some failures: The only thing that really matters is the final result. Some tests always fail on the first run and pass on the second run when only failing tests are run.

Re: 'Apache Flex and Adobe AIR with IntelliJ IDEA' Video Tutorial Donation

2015-05-27 Thread Erik de Bruin
> It would be great to create a page on flex.apache.org and add these videos > (link from Youtube, that is) there. Hope no one has objections to this. A big +1 on this. Joseph, awesome content that will be very helpful to the many (thinking about) making the switch from FB to IntelliJ IDEA. Don'

Re: 'Apache Flex and Adobe AIR with IntelliJ IDEA' Video Tutorial Donation

2015-05-27 Thread OmPrakash Muppirala
Joseph, Once again, thank you for creating these video tutorials. This is going to be very useful for the community. I am hoping to see many more such videos about Apache Flex. If you have thoughts on creating a larger suite of videos, covering a wider range of topics, please do share it with u

Re: 'Apache Flex and Adobe AIR with IntelliJ IDEA' Video Tutorial Donation

2015-05-27 Thread Justin Mclean
Hi, > I just copied in what VP Branding had me use on my blog. We can rope in > more people, but I’m > fine with it either way. Wasn’t it in that in your case permission was required as your blog name had a trademarked term in it (i.e. Apache Flex)? Permission is not normally required to u