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
2009-10-16 22:04:03