I just get tired of downloading the silly installer app etc. why isn't it in a repo?
any way i will google it but if there is a terminal command line interface set of commands which will gksudo aptitude livecode OR SIMILAR please tell me On Wednesday, September 9, 2020, 12:01:04 PM EDT, <[email protected]> wrote: Send use-livecode mailing list submissions to [email protected] To subscribe or unsubscribe via the World Wide Web, visit http://lists.runrev.com/mailman/listinfo/use-livecode or, via email, send a message with subject or body 'help' to [email protected] You can reach the person managing the list at [email protected] When replying, please edit your Subject line so it is more specific than "Re: Contents of use-livecode digest..." you can find the archives for this list at: http://lists.runrev.com/pipermail/use-livecode/ and search them using this link: http://www.google.com/advanced_search?q=site:lists.runrev.com Today's Topics: 1. text manipulation with Chinese characters (unicode): guide? (Eric A. Engle) 2. Re: text manipulation with Chinese characters (unicode): guide? (Richmond) 3. Re: text manipulation with Chinese characters (unicode): guide? (Paul Dupuis) 4. Re: Hacktoberfest is coming (Mike Kerner) ---------------------------------------------------------------------- Message: 1 Date: Wed, 9 Sep 2020 03:55:12 +0000 (UTC) From: "Eric A. Engle" <[email protected]> To: [email protected] Subject: text manipulation with Chinese characters (unicode): guide? Message-ID: <[email protected]> Content-Type: text/plain; charset=UTF-8 Hi! I would like to be able to copy and paste into fields and scripts Chinese characters, which are of course unicode and then manipulate the resulting strings. Is this possible in livecode? How? Are there any good Recent guides to working with unicode in livecode? ------------------------------ Message: 2 Date: Wed, 9 Sep 2020 10:57:44 +0300 From: Richmond <[email protected]> To: "Eric A. Engle via use-livecode" <[email protected]> Subject: Re: text manipulation with Chinese characters (unicode): guide? Message-ID: <[email protected]> Content-Type: text/plain; charset=utf-8; format=flowed I won't pretend to know anything about Chinese. BUT, I have just copy-pasted ?? from a Google Translate window into an LC text-field. I have, also, copied Chinese ideographs from one text-field and posted them into a second one. Dead easy. :-) Richmond. On 9.09.20 6:55, Eric A. Engle via use-livecode wrote: > Hi! > > I would like to be able to copy and paste into fields and scripts Chinese > characters, which are of course unicode and then manipulate the resulting > strings. > > Is this possible in livecode? How? Are there any good Recent guides to > working with unicode in livecode? > > _______________________________________________ > use-livecode mailing list > [email protected] > Please visit this url to subscribe, unsubscribe and manage your subscription > preferences: > http://lists.runrev.com/mailman/listinfo/use-livecode ------------------------------ Message: 3 Date: Wed, 9 Sep 2020 08:37:22 -0400 From: Paul Dupuis <[email protected]> To: [email protected] Subject: Re: text manipulation with Chinese characters (unicode): guide? Message-ID: <[email protected]> Content-Type: text/plain; charset=utf-8; format=flowed As mentions, Unicode in a field just works (there is a known issue with Thai word breaks and another with printing Hindi) If you want to get Chinese (traditional or simplified) into a field, you can: 1)? get the text from a Utf8 ot utf16 text file and textDecode it i.e put url ("file:"&filepath) into tContent; put textDecode(tContent,"utf8") into fld "someField" 2) get the text from an RTF file, like the above, but set the rtfText of the field to the imported rtf data 3) use a 3rd party library, like Wordlib (see the livecode store) to read Microsoft Word .docx or Open Office .odt files On 9/8/2020 11:55 PM, Eric A. Engle via use-livecode wrote: > Hi! > > I would like to be able to copy and paste into fields and scripts Chinese > characters, which are of course unicode and then manipulate the resulting > strings. > > Is this possible in livecode? How? Are there any good Recent guides to > working with unicode in livecode? > > _______________________________________________ > use-livecode mailing list > [email protected] > Please visit this url to subscribe, unsubscribe and manage your subscription > preferences: > http://lists.runrev.com/mailman/listinfo/use-livecode ------------------------------ Message: 4 Date: Wed, 9 Sep 2020 10:16:05 -0400 From: Mike Kerner <[email protected]> To: How to use LiveCode <[email protected]> Subject: Re: Hacktoberfest is coming Message-ID: <CADCoycNNd2pik-ia4zFbmhtNHpkPkd=rzwvcx4mio+vbwq8...@mail.gmail.com> Content-Type: text/plain; charset="UTF-8" it's yours until you get a cease and desist letter. On Fri, Sep 4, 2020 at 1:06 PM Bob Sneidar via use-livecode < [email protected]> wrote: > That's really an old saying?? I came up with the saying People don't > change until it hurts not to. I thought I was being pithy. > > Bob S > > > > On Sep 3, 2020, at 13:40 , Richard Gaskin via use-livecode < > [email protected]> wrote: > > > > Like the old saying goes, "Change occurs when the pain of changing is > finally exceeded by the pain of not changing." > > > > -- > > Richard Gaskin > > Fourth World Systems > > > _______________________________________________ > use-livecode mailing list > [email protected] > Please visit this url to subscribe, unsubscribe and manage your > subscription preferences: > http://lists.runrev.com/mailman/listinfo/use-livecode > -- On the first day, God created the heavens and the Earth On the second day, God created the oceans. On the third day, God put the animals on hold for a few hours, and did a little diving. And God said, "This is good." ------------------------------ Subject: Digest Footer _______________________________________________ use-livecode mailing list [email protected] http://lists.runrev.com/mailman/listinfo/use-livecode ------------------------------ End of use-livecode Digest, Vol 204, Issue 9 ******************************************** _______________________________________________ use-livecode mailing list [email protected] Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode
