You only want to return true for the back key, not all keys:var ret = false;
if (evt.getKey() == Ui.KEY_DOWN_LEFT) // BACK - LEFT KEY
{
Att.vibrate(vibrateDataShort);
Att.backlight(true);
ret = true;
}
return ret;
Thanks .. I thought it was something…