Hello,
I noticed that ask file and answer file don't work on Android. What's their replacement on Android?
ask/answer file
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
ask/answer file
Livecode Wiki: http://livecode.wikia.com
My blog: https://livecode-blogger.blogspot.com
To post code use this: http://tinyurl.com/ogp6d5w
My blog: https://livecode-blogger.blogspot.com
To post code use this: http://tinyurl.com/ogp6d5w
Re: ask/answer file
Hi Max,
just like iOS, Android does not have a filesystem "per se" that you can let the user browse through.
And isn't Android also "sandboxed" somehow? Sorry, don't develop for Android.
That would prohibit this at all!
Best
Klaus
just like iOS, Android does not have a filesystem "per se" that you can let the user browse through.
And isn't Android also "sandboxed" somehow? Sorry, don't develop for Android.
That would prohibit this at all!
Best
Klaus
Re: ask/answer file

Ok, I'll write my file browser inside my app...
Do you know if I can force mobilePickMedia to choose .txt file?
Livecode Wiki: http://livecode.wikia.com
My blog: https://livecode-blogger.blogspot.com
To post code use this: http://tinyurl.com/ogp6d5w
My blog: https://livecode-blogger.blogspot.com
To post code use this: http://tinyurl.com/ogp6d5w
Re: ask/answer file
Hi,
On Android, you'd make your own. There is a global property, systemFileSelector, which would apply here, but unfortunately according to the dictionary, you can't use this property on unix based systems, which Android belongs to. I'm not sure that the dictionary entry about the systemFileSelector is actually correct and you might try it, at the risk of wasting your time. I think that creating your own is the best option.
Klaus, Android isn't sandboxed like iOS. You have many more possibilities to access files on the device.
Kind regards,
Mark
On Android, you'd make your own. There is a global property, systemFileSelector, which would apply here, but unfortunately according to the dictionary, you can't use this property on unix based systems, which Android belongs to. I'm not sure that the dictionary entry about the systemFileSelector is actually correct and you might try it, at the risk of wasting your time. I think that creating your own is the best option.
Klaus, Android isn't sandboxed like iOS. You have many more possibilities to access files on the device.
Kind regards,
Mark
The biggest LiveCode group on Facebook: https://www.facebook.com/groups/livecode.developers
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
The book "Programming LiveCode for the Real Beginner"! Get it here! http://tinyurl.com/book-livecode
Re: ask/answer file
Hi Mark,
Best
Klaus
ah, thanks, I was not aware of this fact!Mark wrote:Klaus, Android isn't sandboxed like iOS. You have many more possibilities to access files on the device.
Best
Klaus