views:

89

answers:

1

All mobiles have a green dialing key. Do you get an event for this in Flash Lite 3.0 or above?

A: 

Have you tried listening for a keypress?

Test it with this code in your Scene 1's actions pane:

onKeyDown() {
  trace("Key received: " + Key.getCode())
}

Key.addListener(this)
Aaron