Re: [FlexJS] MouseEvent

2017-07-27 Thread Alex Harui
There are MouseController beads in many places already. IMO, they would be replaced with touch/gesture controllers for those who need it. The rollover code isn't needed on mobile devices AFAICT. The DragDropControllers at one point "injected" new event types into the ElementEvents list. So ther

Re: [FlexJS] MouseEvent

2017-07-26 Thread piotrz
- Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-MouseEvent-tp63542p63579.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

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 pro

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 for wheel events, that >

Re: [FlexJS] MouseEvent

2017-07-26 Thread Harbs
> - > Apache Flex PMC > piotrzarzyck...@gmail.com > -- > View this message in context: > http://apache-flex-development.247.n4.nabble.com/FlexJS-MouseEvent-tp63542p63573.html > Sent from the Apache Flex Development mailing list archive at Nabble.com.

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

Re: [FlexJS] MouseEvent

2017-07-26 Thread Harbs
> piotrzarzyck...@gmail.com > -- > View this message in context: > http://apache-flex-development.247.n4.nabble.com/FlexJS-MouseEvent-tp63542p63566.html > Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: [FlexJS] MouseEvent

2017-07-26 Thread Harbs
ge in context: > http://apache-flex-development.247.n4.nabble.com/FlexJS-MouseEvent-tp63542p63566.html > Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: [FlexJS] MouseEvent

2017-07-26 Thread piotrz
Harbs, Give me some time, cause I wanted to test it before you merge. Thanks, Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-MouseEvent-tp63542p63566.html Sent from the Apache Flex Development

Re: [FlexJS] MouseEvent

2017-07-26 Thread Harbs
or without a button pressed), if >> any keyboard key was also pressed at the same time. >> >> I don't see why computations need to be made unless some value in one >> platform is unavailable and needs to be calculated, but I don't see any >> that fall into

Re: [FlexJS] MouseEvent

2017-07-26 Thread Harbs
ed (either with or without a button pressed), if > any keyboard key was also pressed at the same time. > > I don't see why computations need to be made unless some value in one > platform is unavailable and needs to be calculated, but I don't see any > that fall into this cat

Re: [FlexJS] MouseEvent

2017-07-25 Thread Peter Ent
e platform is unavailable and needs to be calculated, but I don't see any that fall into this category. Having FlexJS MouseEvent extend a platform event class seems to have it drawbacks, but it also makes the event work in the current system, so I would let that go. What's disturbing

Re: [FlexJS] MouseEvent

2017-07-25 Thread Harbs
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

[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 o

Re: AW: [FlexJS] MouseEvent extends flash event

2016-07-15 Thread Alex Harui
it would be both flash.MouseEvent as well as >>flex.Event ... >> >> >>Chris >> >>________ >>Von: Harbs >>Gesendet: Freitag, 15. Juli 2016 13:58:03 >>An: dev@flex.apache.org >>Betreff: Re: [FlexJS] MouseEvent extends flash event >&g

Re: AW: [FlexJS] MouseEvent extends flash event

2016-07-15 Thread Peter Ent
e >flex.Event interface, it would be both flash.MouseEvent as well as >flex.Event ... > > >Chris > > >Von: Harbs >Gesendet: Freitag, 15. Juli 2016 13:58:03 >An: dev@flex.apache.org >Betreff: Re: [FlexJS] MouseEvent extends flash event

AW: [FlexJS] MouseEvent extends flash event

2016-07-15 Thread Christofer Dutz
ent. > > > Chris > > > Von: yishayw > Gesendet: Freitag, 15. Juli 2016 11:52:17 > An: dev@flex.apache.org > Betreff: Re: [FlexJS] MouseEvent extends flash event > > It turned out handleOK on SimpleAlertView was expecting an Event and > complai

Re: [FlexJS] MouseEvent extends flash event

2016-07-15 Thread Harbs
t. > > > Chris > > > Von: yishayw > Gesendet: Freitag, 15. Juli 2016 11:52:17 > An: dev@flex.apache.org > Betreff: Re: [FlexJS] MouseEvent extends flash event > > It turned out handleOK on SimpleAlertView was expecting an Event and > complained about receiving a Mou

AW: [FlexJS] MouseEvent extends flash event

2016-07-15 Thread Christofer Dutz
Well how about having an Interface "Event" and every form of event implementing that? I think a MouseEvent should be an Event. Chris Von: yishayw Gesendet: Freitag, 15. Juli 2016 11:52:17 An: dev@flex.apache.org Betreff: Re: [FlexJS] MouseEvent ext

Re: [FlexJS] MouseEvent extends flash event

2016-07-15 Thread Harbs
context: > http://apache-flex-development.247.n4.nabble.com/FlexJS-MouseEvent-extends-flash-event-tp53730p53923.html > Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: [FlexJS] MouseEvent extends flash event

2016-07-15 Thread yishayw
7.n4.nabble.com/FlexJS-MouseEvent-extends-flash-event-tp53730p53923.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: [FlexJS] MouseEvent extends flash event

2016-07-06 Thread Alex Harui
On 7/6/16, 9:37 PM, "yishayw" wrote: >Is there any reason why > >COMPILE::SWF > public class MouseEvent extends flash.events.MouseEvent > >rather than > > COMPILE::SWF > public class MouseEvent extends Event > >It might solve > >https://issues.apache.org/jira/browse/F

[FlexJS] MouseEvent extends flash event

2016-07-06 Thread yishayw
: http://apache-flex-development.247.n4.nabble.com/FlexJS-MouseEvent-extends-flash-event-tp53730.html Sent from the Apache Flex Development mailing list archive at Nabble.com.