Thanks,
Griffin
//menu
function onMenu() {
Ui.pushView(new MenuOptions(), new MenuOptionsDelegate(), Ui.SLIDE_RIGHT);
//Att.playTone(Att.TONE_KEY);
Att.playTone(Att.TONE_START);
return true;
}
//laps
function onPreviousPage(){
mainClock.stop();
standbyClock.stop();
// if we get a too may timers error, we need to stop main clock and or stany by here, stand by should be fine as it updates every 10 seconds
Ui.switchToView(new LapsView(), new LapsViewDelegate(), Ui.SLIDE_RIGHT);
Att.playTone(Att.TONE_KEY);
return true;
}