Assuming you mean iOS, try this. The following script should let you take a 
photo and upload it to an ftp server (and it'll save the image to the iPhone's 
photo album too). This is untested :) 

on takePhoto thePhotoName
  if the environment is "mobile" then
    iPhonePickPhoto "rear camera", 600,800
    if the result = "cancel" then 
      exit takePhoto
    end if
    put image (the number of images) into url /
    ("ftp://username:passw...@yourdomain.com/public_html/project/photos/"&; 
thePhotoName &".jpg")   
    iphoneExportImageToAlbum image (the number of images) 
    delete image (the number of images)
  end if
end takePhoto

Cheers

Gerry



On 27/05/2013, at 8:37 PM, Mark Rauterkus <mark.rauter...@gmail.com> wrote:

> Hi all,
> 
> Is it Christmas yet?
> 
> I am seeking within LiveCode solutions to handle photos. Camera to web
> server is what I am missing.


_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to