Search found 12149 matches
- Mon Mar 08, 2021 7:44 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Creating a text file isn't working for me
- Replies: 18
- Views: 303
Re: Creating a text file isn't working for me
Hi Tom, Hi Klaus I guess I'm trying to do something that maybe can't be done. When the app is sent to a user I was under the impression that the app would be able to generate about 9 or 10 empty txt files that will be used when the app is running. this CAN be done, but I hope you will agree that THI...
- Mon Mar 08, 2021 7:16 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Creating a text file isn't working for me
- Replies: 18
- Views: 303
Re: Creating a text file isn't working for me
Hi Tom, well, someone needs to write that file to your specialfolderpaht("documents") before you can load it into your stack! Did you? If yes, how? If not, who on earth did? :-D This does NOT create a file: on openStack put URL("file:" & (specialFolderPath("Documents") & "/PC.txt")) into tfile end o...
- Mon Mar 08, 2021 6:38 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Creating a text file isn't working for me
- Replies: 18
- Views: 303
Re: Creating a text file isn't working for me
Just to be sure:
specialfolderpath("documents") on desktop is completely different from specialfolderpath("documents") on MOBILE!
They are NOT the same folders! They have nothing in common except the name and the fact that we have write permission
in that folder on desktop and mobile.
specialfolderpath("documents") on desktop is completely different from specialfolderpath("documents") on MOBILE!
They are NOT the same folders! They have nothing in common except the name and the fact that we have write permission
in that folder on desktop and mobile.
- Mon Mar 08, 2021 5:52 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Creating a text file isn't working for me
- Replies: 18
- Views: 303
Re: Creating a text file isn't working for me
Hi Tom, yes, sorry for the "(": ... ## This is correct: put specialFolderPath("documents") & "/PC.txt" into tFile ... But what do you mean with -> This doesn't work ? 8) Do you see the dialog in LC? Do you see the content of that file in your field? Did your machine explode? Or what do you think SHO...
- Mon Mar 08, 2021 4:27 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Creating a text file isn't working for me
- Replies: 18
- Views: 303
Re: Creating a text file isn't working for me
To be clear, THIS:
will NOT create a file, but rather read that file into the variable tFile or give an ERROR if the file is not present!
Code: Select all
put URL("file:" & (specialFolderPath("Documents") & "/PC.txt")) into tFile
- Mon Mar 08, 2021 4:21 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Creating a text file isn't working for me
- Replies: 18
- Views: 303
Re: Creating a text file isn't working for me
Hi Tom, you are supplying an ABSOLUTE pathname, so setting the defaultfolder is not neccessary! Try this: on openStack put specialFolderPath("documents") & "/PC.txt") into tfile if there is NOT a file tFile then answer "Not file yet!" else put url("file:" & tFile) into fld "content of file" end if e...
- Sun Mar 07, 2021 4:09 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Toggling hilite of list field line
- Replies: 5
- Views: 127
Re: Toggling hilite of list field line
AHA!

Code: Select all
...
set the hilitedlines of fld "your listfield here" to EMPTY
...
- Sun Mar 07, 2021 3:50 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Toggling hilite of list field line
- Replies: 5
- Views: 127
Re: Toggling hilite of list field line
Hi Stam, not sure, what exactly are you after? But it surely will be scriptable! Hint: If you did not already, in LC preferences -> General check -> Property labels are -> Name of Livecode property Then you see the names of all properties in the inspector that you can use in scripts and not just the...
- Fri Mar 05, 2021 8:08 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Digital Signature
- Replies: 29
- Views: 838
- Fri Mar 05, 2021 7:02 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Sort multidimensional array
- Replies: 80
- Views: 5403
Re: Sort multidimensional array
Do you know offhand if that also prevents the "international" sort option from working? No, sorry, I created two datagrids with one column and entered some text with and without umlauts. Sort type in DG 1 = INTERNATIONAL sort tpye in DG 2 = TEXT and both gave me the same result, so I'm not sure, wh...
- Fri Mar 05, 2021 6:36 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Sort multidimensional array
- Replies: 80
- Views: 5403
Re: Sort multidimensional array
A little, but not too much "offtopic"... Unfortunately "system date" etc. is not supported on ANDROID! No idea why this seems so difficult to implement. In any case we cannot sort a datagrid -> System Datetime And I have to explain this embarrassing fact to users of the german LC forum at least once...
- Fri Mar 05, 2021 5:38 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Storing info in an array v. individual cards...
- Replies: 3
- Views: 119
Re: Storing info in an array v. individual cards...
Hi Glenn,
hm, 150 keys in your array should not cause any slowdown.
But without looking at your stack/code I cannot say anything to the problem.
If you like I can take a look at your stack, if yes, drop a line: klaus AT major-k.de
Best
Klaus
hm, 150 keys in your array should not cause any slowdown.
But without looking at your stack/code I cannot say anything to the problem.
If you like I can take a look at your stack, if yes, drop a line: klaus AT major-k.de
Best
Klaus
- Fri Mar 05, 2021 5:09 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Digital Signature
- Replies: 29
- Views: 838
Re: Digital Signature
Good question, Richard!
In principle, that widget is self-explainig, create it and start signing.
But a TAD more documentation would definitvely not hurt, same for some other widgets.

In principle, that widget is self-explainig, create it and start signing.
But a TAD more documentation would definitvely not hurt, same for some other widgets.
- Fri Mar 05, 2021 4:36 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Digital Signature
- Replies: 29
- Views: 838
Re: Digital Signature
Hi Eddie, Hi Klaus, long time no see! I have messaged you on Skype but I guess you are not using it anymore? as I told you, your are/were the only reason for me to start SKYPE at all. And since i did not hear from you for a long time, I did not start Skype anymore. 8) Next time please just send an e...
- Fri Mar 05, 2021 3:48 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Digital Signature
- Replies: 29
- Views: 838
Re: Digital Signature
Take a look at the "Signature" widget, that is what you are looking for! 
