RE: [FlexJS] About Component Cycle and Events

2016-12-15 Thread Yishay Weiss
I see your point about overrides. It looks like set strand() is not the place to load partner beads. If that’s the case, is it a bug that ContainerView.strand calls createViewport() which loads the model and the viewport? From: Alex Harui Sent: Thursday, December 15,

Re: [FlexJS] Getting started code example snippets!

2016-12-15 Thread Evyatar Ben Halevi-Arbib
Hey, Looking good, but I think these wiki pages must include a working example, as it currently all seems only theoretical. Good luck! Regards, Evyatar On Thu, Dec 15, 2016 at 6:13 AM, Josh Tynjala wrote: > Hi, FlexJS community! > > In order to make it easier for developers everywhere to get s

Re: Moonshine 1.3.0 Release

2016-12-15 Thread yishayw
Window is stuck at the top of the screen, can't move it, or use the menu buttons. Running windows. Is this the place to report this? http://screencast.com/t/pHhBMO5xnxHm -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Moonshine-1-3-0-Release-tp57223p5728

Re: [FLEXJS] ASDoc App

2016-12-15 Thread Christofer Dutz
Hi Alex, great to hear that ... being someone who still thinks the static API documentation is important, I would like to work on a maven site mojo to generate that static stuff. I am very experienced with XSLT, so that shouldn’t be a problem. You mentioned, that the Falcon compiler outputs XML

Re: [FLEXJS] ASDoc App

2016-12-15 Thread Christofer Dutz
If there now is a „asdoc.jar“ created by the ant build, the proper way to do this in Maven would be to create a „asdoc“ module. Creating multiple jars from one codebase is usually an indicator for the need to refactor. Chris Am 14.12.16, 19:10 schrieb "Alex Harui" : On 12/14/16,

RE: Attached document

2016-12-15 Thread Kessler CTR Mark J
Please don't open random documents sent as email attachments. Especially ones marked macro enabled. -Mark

Re: [FlexJS] Compilation error - difficult to debug

2016-12-15 Thread Christofer Dutz
Hi Carlos, unfortunately this type of problem often originates from some of the problems in Falcon. Falcon hadles the case in which code and configuration is correct nicely. I reported the presence of a lot of problems in Falcon when compiling not correct code as a large number of execution pat

Re: [FlexJS] Getting started code example snippets!

2016-12-15 Thread Josh Tynjala
Hi Evyatar, Can you explain to me in more detail what you mean by "working example"? These pages contain actual code that you can copy-paste into a real project. If you mean that you want an example project that you can compile and run, several are included when you download FlexJS. - Josh On D

Re: [FlexJS] Compilation error - difficult to debug

2016-12-15 Thread Carlos Rovira
Hi Chris, I assume that this is a compiler problem, so whatever build tool will be affected by the same problem. Didn't try to build with ANT but I suppose that this will make the same effect that MAVEN. I think as well that this kind of errors needs to be addressed since is the main point of our

Re: [FlexJS] Compilation error - difficult to debug

2016-12-15 Thread Josh Tynjala
Indeed, Chris, those definitely aren't a waste of time, and no one would disagree with this. When the compiler errors with a stack trace, that's a serious bug and should be reported on JIRA ASAP. - Josh On Dec 15, 2016 3:09 AM, "Christofer Dutz" wrote: Hi Carlos, unfortunately this type of pr

Re: [FlexJS] Compilation error - difficult to debug

2016-12-15 Thread Josh Tynjala
Indeed, Chris, those aren't a waste of time, and no one would disagree with that. When the compiler errors with a stack trace, that's a serious bug and should be reported on JIRA. - Josh On Dec 15, 2016 3:09 AM, "Christofer Dutz" wrote: Hi Carlos, unfortunately this type of problem often orig

Re: [FlexJS, MDL] Color and Image in ContactChip bead

2016-12-15 Thread Carlos Rovira
Hi Pitor, I had to remove color="teal" to compile and get: AContact Chip So If I understand right, the problem is duplicated mdl-color-teal right? What I'm doing with class asignament and ensure I'm removing classes, is in the setter, first remove the class with classList.remove (based on some

Re: [FlexJS] Getting started code example snippets!

2016-12-15 Thread Evyatar Ben Halevi-Arbib
Hey, I mean a working demo the page viewers can see and play with. You have it many sites and it really helps understanding how should the relevant component look & feel. Regards, Evyatar On Thu, Dec 15, 2016 at 1:25 PM, Josh Tynjala wrote: > Hi Evyatar, > > Can you explain to me in more detai

Re: [FlexJS] Getting started code example snippets!

2016-12-15 Thread Carlos Rovira
Great work Josh! That was something I want to do in a blog or something, but didn't have the time to work on. So great to have this just now! :) I think Evyatar says that code would be more helpful if just a side we could get the running version. I think that's right, and I was thinking on have i

Re: [FlexJS] Removing bead

2016-12-15 Thread Carlos Rovira
Hi, justo reading the problem, I think things for our users (devs) should be more easy and don't expect they know he must remove something for two places instead of one. Could we have the beads storage unified? if not I think it could be very hard to deal with 2016-12-15 6:08 GMT+01:00 Alex Harui

Re: Moonshine 1.3.0 Release

2016-12-15 Thread Peter Ent
My installation of Moonshine failed - twice. I'm running macOS Sierra, 10.12.1. The first time, I got the dialog saying Moonshine needed SDKs and to install the Helper. The Helper downloaded and installed. Then Moonshine reported it could not find any SDKs and put up a dialog box about using Java

Re: [FlexJS] About Component Cycle and Events

2016-12-15 Thread Peter Ent
Having done a bunch of these, I'd like to propose something a little controversial. A new class, BaseBead, from which all Beads derive (you can choose not to do this in your custom beads, just implement IBead). BaseBead has: public function set strand(value:IStrand):void {Š} public function get

Re: Moonshine 1.3.0 Release

2016-12-15 Thread Peter Ent
One more thing: I just created the FlexJS browser app and picked Project->Build and Run. The console shows this: : Moonshine IDE 1.3.0 : Source is under Apache License, Version 2.0 : http://code.google.com/p/moonshineproject/ : Uses as3abc (LGPL), as3swf (MIT), fzip (ZLIB), asblocks (Apache 2),

Re: [FlexJS] About Component Cycle and Events

2016-12-15 Thread Alex Harui
On 12/15/16, 12:01 AM, "Yishay Weiss" wrote: >I see your point about overrides. It looks like set strand() is not the >place to load partner beads. If that’s the case, is it a bug that >ContainerView.strand calls createViewport() which loads the model and the >viewport? > I purposefully chose

Re: [FlexJS] About Component Cycle and Events

2016-12-15 Thread Alex Harui
On 12/15/16, 8:22 AM, "Peter Ent" wrote: >Having done a bunch of these, I'd like to propose something a little >controversial. > >A new class, BaseBead, from which all Beads derive (you can choose not to >do this in your custom beads, just implement IBead). BaseBead has: > >public function set

Re: [FLEXJS] ASDoc App

2016-12-15 Thread Alex Harui
On 12/15/16, 2:59 AM, "Christofer Dutz" wrote: >Hi Alex, > >great to hear that ... being someone who still thinks the static API >documentation is important, I would like to work on a maven site mojo to >generate that static stuff. I am very experienced with XSLT, so that >shouldn’t be a proble

Re: [FLEXJS] ASDoc App

2016-12-15 Thread Alex Harui
On 12/15/16, 3:02 AM, "Christofer Dutz" wrote: >If there now is a „asdoc.jar“ created by the ant build, the proper way to >do this in Maven would be to create a „asdoc“ module. Creating multiple >jars from one codebase is usually an indicator for the need to refactor. Well, you are welcome to

Re: [FlexJS] Compilation error - difficult to debug

2016-12-15 Thread Alex Harui
If one of you is planning to work on this issue, please assign the JIRA to yourself. Otherwise I will look into it. -Alex On 12/15/16, 3:33 AM, "Josh Tynjala" wrote: >Indeed, Chris, those aren't a waste of time, and no one would disagree >with >that. When the compiler errors with a stack trace

Re: [FlexJS] Removing bead

2016-12-15 Thread Alex Harui
On 12/15/16, 4:04 AM, "carlos.rov...@gmail.com on behalf of Carlos Rovira" wrote: >Hi, > >justo reading the problem, I think things for our users (devs) should be >more easy and don't expect they know he must remove something for two >places instead of one. >Could we have the beads storage unif

Re: [FlexJS] About Component Cycle and Events

2016-12-15 Thread Peter Ent
On 12/15/16, 12:33 PM, "Alex Harui" wrote: > > >On 12/15/16, 8:22 AM, "Peter Ent" wrote: > >>Having done a bunch of these, I'd like to propose something a little >>controversial. >> >>A new class, BaseBead, from which all Beads derive (you can choose not to >>do this in your custom beads, jus

Re: [FlexJS] Compilation error - difficult to debug

2016-12-15 Thread Josh Tynjala
I am currently working on updating Closure compiler in FalconJX. - Josh On Thu, Dec 15, 2016 at 9:54 AM, Alex Harui wrote: > If one of you is planning to work on this issue, please assign the JIRA to > yourself. Otherwise I will look into it. > > -Alex > > On 12/15/16, 3:33 AM, "Josh Tynjala"

Re: (FLEX-35212) [FlexJS] DataGrid requires a way to select it's row(s) automatically

2016-12-15 Thread Peter Ent
If I were to add in multi-selection, I think you need a dataProvider that can hold the array of selections (ArraySelectionModel holds only a single selected index) and add some new events maybe. The itemRenderer code should not care about the number of selections, its really an issue for the model.

Re: Moonshine 1.3.0 Release

2016-12-15 Thread JoelProminic
Hi Peter, I retested the Java 8 text, and it looks like this field is read-only already. I did see a related issue where dragging downward makes the text disappear (drag up to restore it). If this does not match what you saw, could you clarify what you did to delete the text? If this happens to

Re: Moonshine 1.3.0 Release

2016-12-15 Thread Peter Ent
Thanks for help, Joel. Making the modification of the loaded SDK did the trick. I was able to run the HelloWorld example. I will try to run Moonshine more often now. ‹peter On 12/15/16, 3:33 PM, "JoelProminic" wrote: >Hi Peter, > >I retested the Java 8 text, and it looks like this field is read

[FlexJS] Using @flexjsignorecoercion to inline JavaScript

2016-12-15 Thread Tim Diggle
Hi, I've been building some of the Flex JS samples and am particularly interested in the createjs samples. Looking at the component source, I notice that the @flexjsignorecoercion flag is used to allow createjs javascript calls to be made and the results attached to a WrappedHTMLElement. I was h

Re: [FlexJS] Build Failing

2016-12-15 Thread yishayw
Added [1] per you request. [1] https://issues.apache.org/jira/browse/FLEX-35220 -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Build-Failing-tp57179p57312.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: [FlexJS] Using @flexjsignorecoercion to inline JavaScript

2016-12-15 Thread Alex Harui
Hi Tim, @flexjsignorecoercion only controls output after the parsing. It skips output of the JS for "as WrappedHTMLElement" so no coercion is done. All of the types need to be available for the parser. The CreateJS.swc in frameworks/libs contains components that present Flex-like APIs on top of