I have various text fields within my LiveCode stack that I am trying to save to my mobile device. I have tried various methods but none seem to be working so far. The main script I am using trying to use from a button is-
on mouseUp
put field "name" into ("file:"&specialFolderPath("engine")&"/name.txt")
end mouseUp
This doesn't seem to be working as if I try dome debugging with -
on mouseUp
answer there is a file ("file:"&specialFolderPath("engine")&"/name.txt")
end mouseUp
It always returns false. Could you give me some pointers to what I am missing from my above script. Thanks.