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

2017-07-25 Thread Harbs
It’s been discussed before, and many of us think it’s an interesting avenue to explore. https://lists.apache.org/thread.html/3257d429b573baad48e401e01e4fda5a3ef02557f7640d4c9becd274@%3Cdev.flex.apache.org%3E

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

2017-07-25 Thread Chris Velevitch
I think it would be great if the flex compiler could generate wasm ( webassembly.org) binary format output (a W3C standard). That way, we could benefit from keeping our existing code base and still target the browser and other web targets like electron. On 26 July 2017 at 12:41, Joel Tan

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

2017-07-25 Thread Joel Tan
Hi, More info about AIR can be found in these forum: https://forums.adobe.com/thread/2362234 https://forum.starling-framework.org/topic/air-roadmap-update Joel On Wed, Jul 26, 2017 at 10:23 AM, Nicholas Kwiatkowski < nicholaskwiatkow...@gmail.com> wrote: > The announcements don't specifically

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

2017-07-25 Thread Nicholas Kwiatkowski
The announcements don't specifically call out Adobe AIR -- but reading through the lines I'm assuming that AIR will be End of Life'd at the same time, since it is built on the same runtime as the Flash Player. Alex, do you know if that is the case? -Nick On Tue, Jul 25, 2017 at 10:02 PM,

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

2017-07-25 Thread Sebastian Mohr
Hi Carlos, does it mean, Adobe AIR will be taken further, and, only FlashPlayer will be discontinued in 2020? I couldn't find any information on that Flash update site … https://blogs.adobe.com/conversations/2017/07/adobe-flash-update.html Thanks, Sebastian On Jul 25, 2017, at 11:10 PM,

Re: [FlexJS] MouseEvent

2017-07-25 Thread Peter Ent
I feel like I'm not grasping some concept. Seems to be that a) you would want at least two points in a MouseEvent: the screen position and the local position that is relative to the event.target. You could derive one from the other but why go through that hassle when both platforms provide that,

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

2017-07-25 Thread Carlos Rovira
Hi, I saw it some hours ago, and I must to say it seems very strange to me read this movement. Let me explain: Although the world has gone "anti-flash" and the technology has very bad press to many people that doesn't know really about it, I must to say that the last months I was very happy with

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

2017-07-25 Thread Sebastian Mohr
Hi Nick, Thanks for the notice! Why so ever, Adobe bought Macromedia ;) After Silverlight (XAML) … possibly JavaFx still remains for a while. Also hoped that there would be an open source FlashPlayer one day, but, it seems I was mistaken. Cheers, Sebastian On Jul 25, 2017, at 10:02 PM,

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

2017-07-25 Thread Nicholas Kwiatkowski
Looks like we have a date : https://blogs.adobe.com/conversations/2017/07/adobe-flash-update.html -Nick

Re: [FlexJS] MouseEvent

2017-07-25 Thread Harbs
I’m personally not sure that MouseEvent actually works. Any case of MouseEvents in the Framework actually dispatch BrowserEvents. The only exception to this case that you will currently find is in TLF where there is code which generates MouseEvents from points. Check out my browser-event

[FlexJS] MouseEvent

2017-07-25 Thread Peter Ent
I've been doing work with Drag and Drop and that involves mouse events. I'm wondering if someone could give me a history on the Apache FlexJS MouseEvent? Specially, its use of localX/Y and screenX/Y. I'm wondering why the platform implements do not simply assign their version of screenX/Y as

Re: [FlexJS] Debugging package

2017-07-25 Thread yishayw
This sounds like a very useful feature, provided not everyone is using source map enabled tools. I agree with Alex it's worth implementing outside the compiler for maintenance and future platforms. -- View this message in context:

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

2017-07-25 Thread yishayw
yishayw wrote > the example (be051df2bb40fec7d29cf1a934fcbbf19f8d75b7) isn't showing this > behavior, please have a look Should be 4eb3eaf38277187919c24b9a6099ec998d4ff627 -- View this message in context:

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

2017-07-25 Thread piotrz
Thanks Yishay! I will look into that I hope later today. :) Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-MDL-Menu-with-dataProvider-and-itemRenderer-API-tp57637p63539.html Sent from the

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

2017-07-25 Thread yishayw
Piotr, I changed menu to extend list and am now getting the change event in my test app [1]. For some reason the example (be051df2bb40fec7d29cf1a934fcbbf19f8d75b7) isn't showing this behavior, please have a look if possible. Peter, It looks like your change

Re: Flash Builder desktop debugging issue

2017-07-25 Thread Fréderic Cox
OK I finally found the culprit! A colleague asked me to test some DEV setup on a database change he did. Therefor he told me to install an app which would edit my localhost file. I did not see this as a related cause until I saw this possible solution: https://stackoverflow.com/a/10530208/640907

Re: Flash Builder desktop debugging issue

2017-07-25 Thread Fréderic Cox
I tried adding "-nodebug" as an argument for the debug configuration in Flash Builder but that doesn't help (just as an experiment) On Tue, Jul 25, 2017 at 12:09 PM, Fréderic Cox wrote: > OK this is weird ... > > With > > FredericBook-2:bin frederic$ ./adl

Re: Flash Builder desktop debugging issue

2017-07-25 Thread Fréderic Cox
OK this is weird ... With FredericBook-2:bin frederic$ ./adl DebugTest-app.xml -nodebug I get please debug me ok button clicked setting breakpoint check So it means with "-nodebug" the traces actually show and debugging works .. On Tue, Jul 25, 2017 at 12:06 PM, Fréderic Cox

Re: Flash Builder desktop debugging issue

2017-07-25 Thread Fréderic Cox
FredericBook-2:bin frederic$ ./adl DebugTest-app.xml invocation forwarded to primary instance FredericBook-2:bin frederic$ when I already have the application opened. When I open it for the first time the application opens but I get no output in my console, not even when I click the button

Re: Flash Builder desktop debugging issue

2017-07-25 Thread Fréderic Cox
Hi Alex, I tried running adl from command line but nothing happens, I get no output. Probably I'm doing it wrong. You mentioned "ads" in your e-mail but I guess this is a typo? I do not have ads in my bin folder. I did manage to run swfdump -abc DebugTest.swf and the output contains debugline

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

2017-07-25 Thread piotrz
I think that was introduced by Peter after container changes. Could you check in the history whether earlier Menu extends List ? - If extends earlier maybe that would be better way to fix that. Thanks, Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context:

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

2017-07-25 Thread yishayw
'change' isn't dispatched. I'll fix it. Can you explain why it extends DataContainer and not list (which has selectedItem prop and 'change' event)? -- View this message in context:

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

2017-07-25 Thread piotrz
Hi Yishay, But is it not working when you add "change" handler ? If not try to add to the Menu class: [Event(name="change", type="org.apache.flex.events.Event")] Whatever you are going to do in order to fix that, please update MDLExample to handle "change" event. If you will not have time to

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

2017-07-25 Thread yishayw
I don't see any event being dispatched by menu. Are we supposed to listen to the model for events? -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-MDL-Menu-with-dataProvider-and-itemRenderer-API-tp57637p63529.html Sent from the Apache Flex