Can anyone please tell me why

"The M-key on an ‘azerty’ keyboard does not work"

with this script...? 


onClipEvent(load)
{
        MIN_CHAR_ALLOWED = 65;
        MAX_CHAR_ALLOWED = 90;
        keyObj = {};
        var kList = [];
        for (var i=MIN_CHAR_ALLOWED; i<=MAX_CHAR_ALLOWED;
i++){
                kList.push(i);
        }
        kList.push(Key.BACKSPACE);
}

onClipEvent(keyUp)
{
        var keyCode = Key.getCode();
        trace(keyCode);

        if(keyCode >= MIN_CHAR_ALLOWED && keyCode <=
MAX_CHAR_ALLOWED)
        {
                enterLetter(keyCode);
        }
}





                
__________________________________________________________
Yahoo! India Answers: Share what you know. Learn something new
http://in.answers.yahoo.com/
_______________________________________________
[email protected]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to