
Search found 13 matches
- Thu May 12, 2016 5:27 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: RevOnline sign up
- Replies: 3
- Views: 3072
Re: RevOnline sign up
Turns out I was too stupid to find it 

- Thu May 12, 2016 12:38 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: RevOnline sign up
- Replies: 3
- Views: 3072
Re: RevOnline sign up
Oh, that means I'm not too dumb to find it
Grazie ancora MaxV!

- Wed May 11, 2016 6:47 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Open file for utf-8 write
- Replies: 7
- Views: 5734
Re: Open file for utf-8 write
Hi MaxV thanks for investigating! Actually with the UTF-8 wrapped in quotes there is no problem now with the open file - write to file approach, with "Ενυδρίδα" before I was meaning a silly example of good outcome, sorry :oops: Is your approach of put into url more recommended? I'm still on time of ...
- Tue May 10, 2016 8:59 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Open file for utf-8 write
- Replies: 7
- Views: 5734
Re: Open file for utf-8 write
Just tried omitting the UFT-8 altogether, but apparently it still is needed. With open file tFile for "UTF-8" text write I get Ενυδρίδα in the file. With open file tFile for text write i get a row of interrogation marks. As for the original problem, I guess it was the missing quotes all along. I don...
- Mon May 09, 2016 9:07 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Open file for utf-8 write
- Replies: 7
- Views: 5734
Re: Open file for utf-8 write
Just for the record, in case somebody gets stuck with the same thing as me, the blog post missed the quotes. With "UTF-8" instead of UTF-8 it works.
I will try MaxV's solution, though. I didn't even think about that possibility, thanks!
I will try MaxV's solution, though. I didn't even think about that possibility, thanks!
- Sat May 07, 2016 11:16 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Play a GIF/ Image Sequence
- Replies: 1
- Views: 2295
Re: Play a GIF/ Image Sequence
Is the repeatCount of the image set to zero? In that case the animation will be stopped. Maybe you could when the answer is correct to start animating it indefinitely, or to any positive integer to loop it just a number of times.
Code: Select all
set the repeatCount of image tWhateverItsNameIs to -1
- Sat May 07, 2016 11:05 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Open file for utf-8 write
- Replies: 7
- Views: 5734
Open file for utf-8 write
I was trying to follow the instructions here: https://livecode.com/examining-unicode- ... ting-text/
But LC won't accept this line:
The card script gets a red dot when I apply it, but no error is shown.
Any ideas?
But LC won't accept this line:
Code: Select all
open file tFile for utf-8 text write
Any ideas?
- Thu May 05, 2016 3:19 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: RevOnline sign up
- Replies: 3
- Views: 3072
RevOnline sign up
Maybe this is one of those obvious things I'm not able to see for some reason, but... Where does one create an account in RevOnline (or LiveCode Share)? No matter where I search (LC Filee > Share, the Lessons, the User Guide...), I always end up at a form asking me for credentials I should already h...
- Thu Apr 21, 2016 9:02 pm
- Forum: Feature Proposals
- Topic: Translation forum request
- Replies: 2
- Views: 2992
Re: Translation forum request
May I bump this?
Was this idea further elaborated? The only related information I have found is a post in the LiveCode blog called Lost in Translation by Georgia Hutchings on October 23, 2014 (sorry, my account permissions won't allow me to put links here).
My Spanish is great
Was this idea further elaborated? The only related information I have found is a post in the LiveCode blog called Lost in Translation by Georgia Hutchings on October 23, 2014 (sorry, my account permissions won't allow me to put links here).
My Spanish is great

- Wed Apr 13, 2016 7:31 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Custom command with multiple parameters
- Replies: 8
- Views: 5353
Re: Custom command with multiple parameters
@Klaus,
yes, yes, it makes sense now, but my brain was very busy running into the same wall over and over
yes, yes, it makes sense now, but my brain was very busy running into the same wall over and over

- Tue Apr 12, 2016 8:46 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Custom command with multiple parameters
- Replies: 8
- Views: 5353
Re: Custom command with multiple parameters
Oh!
It was the parentheses!
I feel stupid now
Thank you Klaus and Craig!
It was the parentheses!
I feel stupid now

Thank you Klaus and Craig!
- Tue Apr 12, 2016 8:11 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Custom command with multiple parameters
- Replies: 8
- Views: 5353
Re: Custom command with multiple parameters
Grüezi wohl, Klaus, and thanks for the welcome! Well in fact I was not expecting the command to return anything. Elaborating a bit more on my pseudocode: command putSomeWordsNicelyAroundTheUI pAlistOfWords pAdifferentListOfWords -- chew pAlistOfWords and spit it on the card as a navigation menu -- c...
- Tue Apr 12, 2016 7:52 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Custom command with multiple parameters
- Replies: 8
- Views: 5353
Custom command with multiple parameters
This is my first post btw so: hello all! I'm trying to make a custom command take two parameters in this fashion: command twoParams pOne, pTwo -- do things with pOne and pTwo end command I'm calling it as twoParams("foo", "bar") , and I was expecting to see that pOne = "foo" and pTwo = "bar" (same a...