Hi all,
I’m stuck on this. For some reason phoneui.gotoScreen() won’t work inside my onPhotoURISuccess method.
I’ve tried using different screennumbers, i’ve copy pasted the gotoScreen method from other parts of my code where it’s working. Doesn’t matter what I try. It won’t work.
Even something as simple as this:
function onPhotoURISuccess(imageURI) {
alert('image uri succes!'); // alert displays without a problem
phoneui.gotoScreen('m1-screen02', 'FADE');
}
I want to use this function to display my captured photo in a new screen. How can I get this to work?
Thx in advance!