How are the keycodes on IE? They appear to be all messed up. See my Reply in
the DynAPI 2.5 thread, I've included an attatchement called keys'.js that
corrects for that, granted, I think it needs to be merged with Robert's fix
for bubbling.

regards,
Steve
----- Original Message -----
From: Eytan Heidingsfeld <[EMAIL PROTECTED]>
To: Dynapi-Dev <[EMAIL PROTECTED]>
Sent: Sunday, April 01, 2001 7:05 AM
Subject: [Dynapi-Dev] Key Events


> In the keyevents if the key pressed is not between a to z we just ignore
it
> and keep the value of the curKey. I think we should change it to undefined
> meaning:
> This line:
> if (((curKey>='a')&&(curKey<='z'))||((curKey>='0')&&(curKey<='9')))
> this.charKey=curKey;
>
> Should be replaced with
> if (((curKey>='a')&&(curKey<='z'))||((curKey>='0')&&(curKey<='9')))
> this.charKey=curKey;
> else
> this.charKey=null;
> 8an
>
>
>
>
>


_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-dev

Reply via email to