Question

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

Was it helpful?

Solution

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)
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top