Failed invoking <symbol>
Symbol Not Found Error
That's all there is to it! No stack trace, no symbol name. My code is
Ui.pushView(new Ui.Confirmation("Stop?"), new EndDelegate(), Ui.SLIDE_UP);
...
class EndDelegate extends Ui.BehaviorDelegate {
var app = App.getApp();
function onBack()
{
Sys.println("called Back");
app.switchToView(startView, startDelegate, Ui.SLIDE_UP);
return true;
}
function onNextPage()
{
Sys.println("called onNextPage");
Ui.popView(Ui.SLIDE_UP);
app.currentView.start();
return true;
}
}
I see the confirmation window. The error appears in the console when I press a button. I don't see any of the two printlns being called.