RE: [flexcoders] keyDown

2005-11-29 Thread Matt Chotin
You added a keyDown handler on the link right?  Then you need to check the event.code == Key.SPACE and that will get you going I think.   Matt   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yagogak Sent: Tuesday, November 22, 2005 9:13 AM To: flexcod

Re: [flexcoders] keyDown & List

2005-04-15 Thread Spike
Is your keyDown event attached to the list or to each of the elements of the list? If it's attached to the list, I'd expect to see the behaviour you're describing. If it's attached to each of the elements of the list I'm not sure what's going on. Spike JesterXL wrote: > Ok, this is weird.

RE: [flexcoders] keyDown & List

2005-04-15 Thread Matt Chotin
@yahoogroups.com [mailto:flexcoders@yahoogroups.com] Sent: Friday, April 15, 2005 10:46 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] keyDown & List   Is your keyDown event attached to the list or to each of the elements of the list? If it's attached to the list, I'd

Re: [flexcoders] keyDown & List

2005-04-15 Thread JesterXL
ow key with the item selected, the radio buttons to the right, in another form, actually change selection... they don't even have focus... - Original Message - From: "Spike" <[EMAIL PROTECTED]> To: Sent: Friday, April 15, 2005 1:45 PM Subject: Re: [flexcoders

RE: [flexcoders] KeyDown event in mx:Application tag

2005-09-26 Thread Abdul Qabiz
You can not trap all function keys if your flex application is running in browser. There are various _javascript_ hacks, which can trap keyboard shortcuts reserved by various browsers. But it is not pretty straight forward.   -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECT

Re: [flexcoders] KeyDown event in mx:Application tag

2005-09-27 Thread Shanmuga Raja
Hi, Any idea why the KeyDown event in the mx:Application Level is not trapped properly. Here is the code snippet. Please find a detailed explanation of the problem in this chain of mails. http://www.macromedia.com/2003/mxml" keyDown="keyEvt(event)">         Thanks & Warn Regards, Ra

Re: [flexcoders] KeyDown event in mx:Application tag

2005-10-03 Thread Shanmuga Raja
Hi, I am trying to suppress / override the default actions of the function keys in IE. I am able to acheive this by embedding _javascript_ in the HTML wrapper, but once the control is in the flex applet these stop working. Is it actually possible to acheive the same through Flex AS event handl

RE: [flexcoders] KeyDown Event returns incorrect ascii values

2005-04-28 Thread Matt Chotin
Can you try setting System.useCodepage = true and see if that changes which values you get?   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] Sent: Thursday, April 28, 2005 11:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] KeyDown Event returns

RE: [flexcoders] KeyDown Event returns incorrect ascii values

2005-04-29 Thread Erik Westra
U could also try and see if Key.getCode does return the right value.   Greetz Erik   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt ChotinSent: vrijdag 29 april 2005 6:15To: flexcoders@yahoogroups.comSubject: RE: [flexcoders] KeyDown Event returns