Guest User

Untitled

a guest
Jun 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. $('photos').onclick = function()
  2. {
  3. try
  4. {
  5. var g = Titanium.Media.openPhotoGallery(
  6. {
  7. success:function(blob,details)
  8. {
  9. imageThing = blob;
  10. },
  11. cancel:function()
  12. {
  13. },
  14. error:function(Error)
  15. {
  16. },
  17. allowImageEditing:true,
  18. animated:false
  19. });
  20. alert(g);
  21. }
  22. catch(E){
  23. alert('Exception:'+E);
  24. }
  25. };
Add Comment
Please, Sign In to add comment