LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!
Hi there,
I want to build an App, which takes pictures on mobile devices and save them (not in cam-roll).
Would it be the best way to create a (SQL?) database and save the filenames (with category) inside and save the images in folders or is it possible/better to store the image itself into a database?
on mouseUp
answer folder "Open:"
if it = empty then exit mouseUp
put the defaultfolder into tODF
put it into sCurFolPict
set the defaultfolder to it
put the files into tFiles
filter tFiles without ".*"
put sCurFolPict & "/" & "myIndex" into tUrl
put tFiles into url("file:" & tUrl)
set the defaultfolder to tODF
end mouseUp