Great post by Jahmarley! Thanks! Tiggzi should add this to their tutorials. My apologies if its there already, or something similar at least.
Great post by Jahmarley! Thanks! Tiggzi should add this to their tutorials. My apologies if its there already, or something similar at least.
Great! Thats what I was looking for. Seems to work! Should be able to send a base64 to my Parse DB. Thanks!
So is there no way of doing this kind of thing in an app environment? I see there is the camera service but I can't find a tutorial to use it. Will this maybe work?
I have read on another post you can, but unfortunately you cannot do it on the Tiggzi environment. You'd have to export the application and do it manually.
Here is the link to the discussion https://getsatisfaction.com/tiggzi/topics/excessive_permissions-14uun0
I followed the example. Looks great and works when I test on a PC. However, when I test on my mobile device from the Tiggzi Android app it does not open a file explorer or gallery or anything. Is there perhaps a work around for this?
Great! Thank you.
Got it working with this in the end:
precode
var username = Tiggr('txtUsername').val();
var usernameSer = localStorage.getItem('myusername');
if (username == usernameSer) {
Tiggr.navigateTo('homeScreen');
}
/code/pre