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

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

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)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.