Freeze after browser tab change

2017-08-16 Thread Felipe Melo
Hi, Recently my Flex application is freezing after switching the browser tabs. I experienced the problem in different computers running on both Firefox and Chrome. The "Tour de Flex" application also freezes the same way (http://flex.apache.org/tourdeflex/). I noticed that downgrading from

Re: Ctrl+Z with caps lock on not working in Chrome

2017-08-10 Thread Felipe Melo
rather than the big one. (Or at least it is in > all browsers other than Chrome.) > > Clearer? > > > On Aug 10, 2017, at 7:25 PM, Felipe Melo <[hidden email] > <http:///user/SendEmail.jtp?type=node=15702=0>> wrote: > > > > I'm sorry, I think my last messa

Re: Ctrl+Z with caps lock on not working in Chrome

2017-08-10 Thread Felipe Melo
I'm sorry, I think my last message was still confusing. In Chrome, the charCode of 'z' is 122 and 'Z' is 90, like the other browsers. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Ctrl-Z-with-caps-lock-on-not-working-in-Chrome-tp15676p15701.html Sent from the

Re: Ctrl+Z with caps lock on not working in Chrome

2017-08-10 Thread Felipe Melo
No, I meant that for all browsers the charCode of 'z' will be 122 and 'Z' will be 90. Chrome doesn't display any different value. -- View this message in context: http://apache-flex-users.246.n4.nabble.com/Ctrl-Z-with-caps-lock-on-not-working-in-Chrome-tp15676p15700.html Sent from the

Re: Ctrl+Z with caps lock on not working in Chrome

2017-08-10 Thread Felipe Melo
Hi, I have not tested the EditManager approach, but dispatching a new event with the lower case char code solved the problem. I'm not happy with using this kind of workaround but sometimes it is necessary :) I just didn't get it why this problem only happens in Chrome, because the char codes in

Re: Ctrl+Z with caps lock on not working in Chrome

2017-08-09 Thread Felipe Melo
Thanks for your reply. I did what you suggested but everything seems fine: caps lock on: Y=89, Z=90 caps lock off: y=121, z=122 I have already confirmed that is not a problem in my code because I was able to reproduce the problem in the "Text Controls" example running at

Ctrl+Z with caps lock on not working in Chrome

2017-08-09 Thread Felipe Melo
Hi, I'm facing a problem when I try to undo/redo a text change inside a text area or text input. Both Ctrl+Z and Ctrl+Y aren't working properly when caps lock is on. If I turn off caps lock, it works. The problem seems to occur only in Chrome. Using Firefox or Safari I did not have any