Does anyone know how to make flash recognize the greek ascii code? what I am trying to do is to load a movie as soon as the user types in (keypress) a greek letter. The code works fine if I include an ascii code for an english letter. Below is the code i wrote. The Greek Ascii code is 225-249 for the small greek letters.
onClipEvent (keyDown)
{
keypressed=Key.getAscii();
if (keypressed==255){
loadMovie("introd_alpha.swf",0);
}
}
If anyone has any suggestion, I would really appreciate it.
R.