1. noise
- Posted by George Walters <gwalters at sc.rr.com> Aug 21, 2001
- 452 views
Well the noise killer "returnValue(-1)" seems to be broken. I've put it in every place I can think of in the 'onKeyDown' routine and nothing works!! Any Ideas would be appreciated.. Thanks... ...george
2. Re: noise
- Posted by Derek Parnell <ddparnell at bigpond.com> Aug 21, 2001
- 433 views
Some extra info might be nice. Exactly when does the noise occur. If you are talking about Alt-char combinations for buttons, then this is a know bug and has been fixed in the next release. BTW, I'll be working one getting this release out the door today. the onKeyDown event does NOT allow the use of returnValue(-1). That technique can only be used in onKeyPress. ----- Original Message ----- From: "George Walters" <gwalters at sc.rr.com> To: "EUforum" <EUforum at topica.com> Sent: Wednesday, August 22, 2001 2:39 AM Subject: noise > > Well the noise killer "returnValue(-1)" seems to be broken. I've put it in > every place I can think of in the 'onKeyDown' routine and nothing works!! > Any Ideas would be appreciated.. > > Thanks... > > ...george > > > > >
3. Re: noise
- Posted by George Walters <gwalters at sc.rr.com> Aug 22, 2001
- 415 views
Thanks for the reply Derek. I'm using onKeyDown to be able to respond to 'Return', 'Escape', 'Down Arrow', and 'Up Arrow'. This works fine. I get control and do my thing but windows 'rings a bell' when I hit 'escape' or 'return'. Is there a way do defeat the bell? ...george ----- Original Message ----- From: "Derek Parnell" <ddparnell at bigpond.com> To: "EUforum" <EUforum at topica.com> Subject: Re: noise > > Some extra info might be nice. > > Exactly when does the noise occur. > > If you are talking about Alt-char combinations for buttons, then this is a > know bug and has been fixed in the next release. BTW, I'll be working one > getting this release out the door today. > > the onKeyDown event does NOT allow the use of returnValue(-1). That > technique can only be used in onKeyPress. > > ----- Original Message ----- > From: "George Walters" <gwalters at sc.rr.com> > To: "EUforum" <EUforum at topica.com> > Sent: Wednesday, August 22, 2001 2:39 AM > Subject: noise > > > > > > Well the noise killer "returnValue(-1)" seems to be broken. I've put it in > > every place I can think of in the 'onKeyDown' routine and nothing works!! > > Any Ideas would be appreciated.. > > > > Thanks... > > > > ...george > > > > > > > > > > > > > > >
4. Re: noise
- Posted by Derek Parnell <ddparnell at bigpond.com> Aug 22, 2001
- 430 views
----- Original Message ----- From: "George Walters" <gwalters at sc.rr.com> To: "EUforum" <EUforum at topica.com> Subject: Re: noise > Thanks for the reply Derek. I'm using onKeyDown to be able to respond to > 'Return', 'Escape', 'Down Arrow', and 'Up Arrow'. This works fine. I get > control and do my thing but windows 'rings a bell' when I hit 'escape' or > 'return'. Is there a way do defeat the bell? Hi George, I don't know the rationale for this but Microsoft in their wisdom decided that some keys would go through KeyPress and others wouldn't. It looks as if those keys that generate "characters" in the ASCII range do go through KeyPress. For you this means that you can trap the Escape and Return keys there and the arrow keys in KeyDown. ----------- Derek