Search found 6 matches
- Tue Sep 30, 2014 11:13 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Tab delimitated text import breaks if there is a comma
- Replies: 5
- Views: 4180
Re: Tab delimitated text import breaks if there is a comma
Thank everyone. Bernd your solution works great!
- Tue Sep 30, 2014 7:50 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Tab delimitated text import breaks if there is a comma
- Replies: 5
- Views: 4180
Tab delimitated text import breaks if there is a comma
Hi I'm trying to import a tab delimited text file and extract the three columns. The first row contains the column headings. I can import the text fine but if there is a comma in the field livecode treats this as the end of the field. My data is set up as follows: Name Job Company David CEO abc Tim ...
- Mon Sep 15, 2014 10:32 am
- Forum: Talking LiveCode
- Topic: Text Problems over Socket Connection
- Replies: 30
- Views: 23079
Re: Text Problems over Socket Connection
So it seems like Livecode uses UTF-16 as its basic format. This is what I had to use to get the function to work properly.
Code: Select all
function getUTF8fromUTF16 theText
return unidecode(uniencode(theText,"UTF16"),"UTF8")
end getUTF8fromUTF16
- Fri Sep 12, 2014 9:43 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Trigger buttons from other buttons
- Replies: 4
- Views: 3407
Re: Trigger buttons from other buttons
Thanks Simon. That is simple! I'll give it a go tomorrow.
Jonathan
Jonathan
- Fri Sep 12, 2014 9:14 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Trigger buttons from other buttons
- Replies: 4
- Views: 3407
Trigger buttons from other buttons
Hi I've just started using livecode having not done anything like this before. I've created a few buttons which work as expected. For example one button when pressed will change the background colour. Press it again and the colour changes back to the original. What I would like is to create a new bu...
- Fri Sep 12, 2014 2:37 pm
- Forum: Talking LiveCode
- Topic: Text Problems over Socket Connection
- Replies: 30
- Views: 23079
Re: Text Problems over Socket Connection
Hi
I am looking to do exactly the same thing with CasparCG. Did you ever get a way of generating the UTF8 correctly?
I am looking to do exactly the same thing with CasparCG. Did you ever get a way of generating the UTF8 correctly?