- Code: Select all
modal = new NKModalWindow();
modal.show();
var indicator = new NKActivityIndicator();
indicator.init(145, 220, 30, "white");
indicator.show();
indicator.spin();
modal.addControl(indicator);
function onPageShown(sender){"window"}
{
modal.dismiss();
}
but it wont dismiss, ive looked around a bit and apparently it doesnt work when you use nkmovetopageanimated and havent got a navigation controller. Has anyone found a workaround, or found a way to link pages without using nkmovetopageanimated?