Re: arrow keys with SWFBUTTON_KEYPRESS ?

Anews <[email protected]> Fri, 14 Nov 2003 12:08:20 +0100
Newsgroups gmane.comp.web.ming.general
Message-ID <[email protected]>
Hi!

> Anyway, long post for a really simple thing: does anyone know the usuable
> escape sequences representing arrow keys?

I think I read (in Moock's book) that you can't trap arrow and function keys 
without Key object. Use:

if (Key.getCode==Key.LEFT)
{
  ...
}

Enjoy!

Anze