RE: [FlexJS, MDL] Menu with dataProvider and itemRenderer API

2017-07-26 Thread piotrz
Yishay, Could you show me how look like stacktrace in the browser when you click on the Menu item. I would like to see whole path - who provide you "change" event in your handler. (myMenu_changeHandler) Your example is also not working for me. Thanks, Piotr - Apache Flex PMC

Re: [FlexJS] MouseEvent

2017-07-26 Thread piotrz
Hi Harbs, It looks like everything is ok with your changes in my app. I have checked also MDLExample. The only thing which boders me that Maven build producing for me only js-debug folder - no release version, but that maybe an issue on my setup. Green light from me for merge. Thanks, Piotr

RE: Help with 0.8

2017-07-26 Thread Jim Norris
Do you have an example project you would suggest as a good starting point for learning FlexJS? I tried the FlexJSStore and it seems like it has some issues. I am trying to setup some (of my own) simple pages and running into anomalies in behavior between the swf output and the js-release and

Re: [FlexJS] MouseEvent

2017-07-26 Thread Harbs
I don’t really see how we can separate it out. The code which figures out which event is being dispatched is pretty low level in HTMLElementWrapper. Maybe there’s some way to use dependency injection to specify which events will be needed, but I’m not sure how easy that will be. FWIW, we’re

Re: [FlexJS] MouseEvent

2017-07-26 Thread Alex Harui
Will anyone ever really ship an app that doesn't need wheel support? Our smaller examples don't need it, so I'm wondering if wheel support should be separated out or not. Thoughts? -Alex On 7/26/17, 9:27 AM, "Harbs" wrote: >While you’re at it, if you could write a test

Re: [FlexJS] MouseEvent

2017-07-26 Thread Harbs
It looks like you are missing my commit revert in typedefs. > On Jul 26, 2017, at 9:16 PM, piotrz wrote: > > Harbs, > > My local Maven build is failing and I'm actually not sure why... [1] > > [1] https://paste.apache.org/hHHU > > Piotr > > > > - > Apache

Re: [FlexJS] MouseEvent

2017-07-26 Thread piotrz
Harbs, My local Maven build is failing and I'm actually not sure why... [1] [1] https://paste.apache.org/hHHU Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-MouseEvent-tp63542p63573.html Sent

RE: Help with 0.8

2017-07-26 Thread Jim Norris
It did help. I had to copy the jre folder from the 1.8 JDK install to the Flash Builder application directory (replacing the old jre folder), and that fixed it. Thanks very much for the help. Jim -Original Message- From: Harbs [mailto:harbs.li...@gmail.com] Sent: Wednesday, July

Re: Help with 0.8

2017-07-26 Thread Harbs
I know Yishay changed the version of Java in his FB installation, but I don’t remember the details. Is this helpful? https://www.experts-exchange.com/questions/28699151/how-can-flash-builder-4-X-version-make-use-of-java-8.html

Re: [FlexJS] MouseEvent

2017-07-26 Thread Harbs
While you’re at it, if you could write a test for wheel events, that would be very helpful. I don’t have time to write tests for that right now. I just added properties for wheel events. Yishay and I added support for wheel events in the framework and falcon last week. (You will need the

Help with 0.8

2017-07-26 Thread Jim Norris
Hi- I had previously setup the Hello World sample using FlexJS 0.7. I installed 0.8 and I am getting an internal build error that appears to be related to the Java SDK version. The project runs find if I switch back to version 0.7. I downloaded and ran the installer for Java SDK 1.8 but

Re: [FlexJS] MouseEvent

2017-07-26 Thread Harbs
I have fixed the remaining issues in the branch today. As far as I’m concerned, I’m ready to merge it in. Before I do, feel free to let me know if there’s any problems with my code… BTW: It should be very straight-forward to add mouse wheel event properties to the MouseEvent now. HTML has both

Re: Adobe has announced the end-of-life of the Flash Player

2017-07-26 Thread Jeffry Houser
It was posted on the users forum [and a half dozen times on the Hacker News Thread about this]: https://forum.starling-framework.org/topic/air-roadmap-update Adobe AIR is not at EOL; only the Flash Player Browser Plugin. On 7/25/2017 10:23 PM, Nicholas Kwiatkowski wrote: The

Re: [FlexJS] End-of-life of the Flash Player

2017-07-26 Thread Olaf Krueger
>Having a single code base which can target AIR and HTML in the browser will probably fill a real lack. That would be awesome!! -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-End-of-life-of-the-Flash-Player-tp63557p63561.html Sent from the Apache

Re: [FlexJS] End-of-life of the Flash Player

2017-07-26 Thread yishayw
I don't think there's consensus on flash support in the community. Two things at least have not changed: we might want AIR support, and we want FlexJS to be platform agnostic in architecture. SWF support can help in both these regards. -- View this message in context:

Re: [FlexJS] MouseEvent

2017-07-26 Thread Harbs
I agree with everything you write. I think BrowserEvent was created to just be a proxy to the goog one, but the work to make proper MouseEvents and KeyboardEvents was not really finished until now. Please check out the current state of the browser-event branch. I think it’s working pretty

Re: [FlexJS] End-of-life of the Flash Player

2017-07-26 Thread Harbs
Good question. For the immediate, I don’t think we need to do anything. I do think there is still value in a swf target, but that target should probably become an AIR target rather than a browser target. Having a single code base which can target AIR and HTML in the browser will probably fill

[FlexJS] End-of-life of the Flash Player

2017-07-26 Thread Olaf Krueger
Hi, I would like to ask if the FP EOL announcement has any effects on FlexJS?! Do you think it is still worth to follow the conditional compiling approach or is it maybe time to abandon the swf side in order to concentrate on JS? Thanks, Olaf -- View this message in context:

RE: [FlexJS, MDL] Menu with dataProvider and itemRenderer API

2017-07-26 Thread Yishay Weiss
Piotr, sorry for the confusion, I’m not reverting my change. After it, I am getting the ‘change’ event, no need for an ‘itemClicked’ event which, is Alex had proposed, would be confusing for other input methods. I fixed the visual confusion. I assigned you a JIRA [1] regarding the example,

RE: [FlexJS, MDL] Menu with dataProvider and itemRenderer API

2017-07-26 Thread piotrz
Ahh...I didn't understand you then. I thought it is all about click - I thought that you do not getting "change" event which is suppose to be reaction on click on item. If I think about it more it could confuse user: "change" -> "click", but we are using such model in more places, that change is a

RE: [FlexJS, MDL] Menu with dataProvider and itemRenderer API

2017-07-26 Thread Yishay Weiss
Piotr, after thinking about it, I’m reverting the change. I don’t think it’s right for a menu to have a selected item, and it causes visual confusion the next time it appears. It’s probably best to just propagate the ‘itemClicked’ event with some info on the item renderer data. From:

Re: [FlexJS, MDL] Menu with dataProvider and itemRenderer API

2017-07-26 Thread piotrz
Yishay, I did quick look into this problem and not sure what is happening yet. Please raise jira for me where you describe that your code in the example is working, but this one in MDLExample not. I will look into that soon. Thanks, Piotr - Apache Flex PMC piotrzarzyck...@gmail.com --