Re: 9.5 on Windows seems terribly unable to deal with fields full of text?

2019-09-09 Thread J. Landman Gay via use-livecode
On 9/9/19 9:57 PM, Geoff Canyon via use-livecode wrote: I’ve now modified my stacks to include a closecard handler to clear the large field’s content when exiting. Stack is now much faster to work with and save — far out of proportion to the size savings. I noticed something similar today o

Re: Merge and unicode

2019-09-09 Thread dsc--- via use-livecode
I think I'm doing this wrong. This seems to work, too. on mouseup put empty into field 1 put numToCodepoint(0x2200) into x put numToCodepoint(0x1040F) & "V-" into y put merge(" é{ [[x]] }é [[y]]") into field 1 end mouseup > On Sep 9, 2019, at 10:25 PM, dsc--- via use-livecode > wr

Re: Merge and unicode

2019-09-09 Thread dsc--- via use-livecode
And this, too, looks OK to me. on mouseup put empty into field 1 put "A" into field 1 get numToCodepoint(0x2200) & numToCodepoint(0x1040F) & "V-" set the metadata of char 1 of field 1 to it put the metadata of char 1 of field 1 after field 1 end mouseup I guess the problem is in th

Re: Merge and unicode

2019-09-09 Thread Dar Scott Consulting via use-livecode
This quick check seems to work for me. on mouseup put "A" into field 1 set the metadata of char 1 of field 1 to "é" put the metadata of char 1 of field 1 after field 1 end mouseup > On Sep 9, 2019, at 8:32 PM, J. Landman Gay via use-livecode > wrote: > > Well, I've made some changes to th

Re: 9.5 on Windows seems terribly unable to deal with fields full of text?

2019-09-09 Thread Geoff Canyon via use-livecode
I’ve now modified my stacks to include a closecard handler to clear the large field’s content when exiting. Stack is now much faster to work with and save — far out of proportion to the size savings. ___ use-livecode mailing list use-livecode@lists.r

Re: Merge and unicode

2019-09-09 Thread J. Landman Gay via use-livecode
Well, I've made some changes to the code since I started urlEncoding the text before merging so I'll check that again. Paul is right that unicode in htmltext needs to be in hex, but the numbers I'm getting back are very high (8,000+) and render in the field as strange pictographs. Elsewhere wher

Re: Merge and unicode

2019-09-09 Thread Dar Scott Consulting via use-livecode
I think you are trying to think too much about the LC implementation of text. Maybe. Text in LC is an abstraction of a sequence of code points. Whether it is UTF16 or not is hidden to me. (mostly) So, get textDecode( binaryFromServer, "UTF-8" ) should put that into the correct form, if i

Re: Merge and unicode

2019-09-09 Thread Paul Dupuis via use-livecode
Doesn't any Unicode in htmlText of a field need to be in HTML form (i.e. #;? I thought htmlText turns any non ASCII into either hex encoded html or, where html entity names exists, uses html entity names. On 9/9/2019 6:35 PM, J. Landman Gay via use-livecode wrote: On 9/9/19 2:39 PM, Paul Du

Re: Merge and unicode

2019-09-09 Thread J. Landman Gay via use-livecode
It's UTF8 text from a server, which I textDecode to UTF16. When I use the UTF16 text in a merge, diacriticals and/or curly quotes get mangled. (Same with setting metadata on field text too.) On 9/9/19 4:16 PM, Dar Scott Consulting via use-livecode wrote: I'm not sure I understand. Do you mean

Re: Merge and unicode

2019-09-09 Thread J. Landman Gay via use-livecode
On 9/9/19 2:39 PM, Paul Dupuis via use-livecode wrote: On 9/9/2019 2:13 PM, J. Landman Gay via use-livecode wrote: On 9/9/19 1:08 PM, J. Landman Gay via use-livecode wrote: It seems that the merge command doesn't respect unicode. Does anyone have a workaround? The text I'm inserting is already

Re: OT: Catalina - the end of ad hoc & in-house development?

2019-09-09 Thread kee nethery via use-livecode
I wrote an article on this process for MacOS and it took some time for me to figure out all the steps. Once documented, doesn’t really take that long to do. Apple doesn’t judge the contents of personally signed apps and the $99 per year is not a burden for me. I know a bunch of users who click

Re: Merge and unicode

2019-09-09 Thread Dar Scott Consulting via use-livecode
I'm not sure I understand. Do you mean "encoded to UTF-16"? In that case you should decode that to convert it to internal text. And then try merge. (Which still might have problems, I suppose.) > On Sep 9, 2019, at 12:08 PM, J. Landman Gay via use-livecode > wrote: > > It seems that the me

Re: OT: Catalina - the end of ad hoc & in-house development?

2019-09-09 Thread Dar Scott Consulting via use-livecode
Thank you for your work in this. I like the idea of identity signing of files, documents, programs, messages and links. I was all PGP at one time. I am making a shortlist of Electronic Lab Notebooks, and automated time-stamping and easy page/paragraph signing are important features. I encourag

Re: OT: Catalina - the end of ad hoc & in-house development?

2019-09-09 Thread Bob Sneidar via use-livecode
I'm on your side on this one. OS developers are not getting sued by end users because they get malware. What is the impetus for all this?? Apple long ago had a policy tthat if they introduced a new way of doing something, the user could revert to the way it used to work. This ought to be a featu

Re: OT: Catalina - the end of ad hoc & in-house development?

2019-09-09 Thread Paul Dupuis via use-livecode
If I want to develop an small OSX (or Windows) app for my wife to help her keep track of some hobby related items, I should not have to code sign or notarize it for OSX or Windows or, honestly, any platform. Every OS should provide a way that the USER is still in control of their OS and can te

Re: Merge and unicode

2019-09-09 Thread Paul Dupuis via use-livecode
On 9/9/2019 2:13 PM, J. Landman Gay via use-livecode wrote: On 9/9/19 1:08 PM, J. Landman Gay via use-livecode wrote: It seems that the merge command doesn't respect unicode. Does anyone have a workaround? The text I'm inserting is already decoded to UTF16. I misspoke, sorry. It's the metada

Re: Merge and unicode

2019-09-09 Thread J. Landman Gay via use-livecode
On 9/9/19 1:08 PM, J. Landman Gay via use-livecode wrote: It seems that the merge command doesn't respect unicode. Does anyone have a workaround? The text I'm inserting is already decoded to UTF16. I misspoke, sorry. It's the metadata that doesn't respect unicode. -- Jacqueline Landman Gay

Merge and unicode

2019-09-09 Thread J. Landman Gay via use-livecode
It seems that the merge command doesn't respect unicode. Does anyone have a workaround? The text I'm inserting is already decoded to UTF16. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com

Re: OT: Catalina - the end of ad hoc & in-house development?

2019-09-09 Thread Matthias Rebbe via use-livecode
Although i understand anyone´s concern about Apple new requirement for notarization, i welcome Apple´s effort to make Mac OS X apps more secure for the users. I was also not very happy when i first heard that 10.14.6 will not start unnotarized apps right away. But what are our options here? E

Re: Weird behavior for modal stacks and answer dialogs

2019-09-09 Thread Mark Waddingham via use-livecode
On 2019-09-09 16:16, Giovanni via use-livecode wrote: Hi everybody, thanks for feedback. I think that the ones suggested cannot be considered as a solutions nor a workarounds. If I am working on an application with thousands (literally) of answer/ask dialogs and modal called windows I cannot revi

Re: Weird behavior for modal stacks and answer dialogs

2019-09-09 Thread Giovanni via use-livecode
Hi everybody, thanks for feedback. I think that the ones suggested cannot be considered as a solutions nor a workarounds. If I am working on an application with thousands (literally) of answer/ask dialogs and modal called windows I cannot review all my code to find a way to do something that th

Re: Weird behavior for modal stacks and answer dialogs

2019-09-09 Thread Bob Sneidar via use-livecode
In more recent versions of MacOS the ability to interact with an application that was not the foreground application was added as a feature. For instance I can scroll a web page using the mouse wheel even though the web browser is not the frontmost app. I'm not sure how this could be disabled fo

[ANN] This Week in LiveCode 193

2019-09-09 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #193 here: http://bit.ly/2m0NTr5 This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Regression iOS: unlock screen for visual effect

2019-09-09 Thread Sannyasin Brahmanathaswami via use-livecode
I am getting a "flicker" instead of a "dissolve" in LC9.5 + latest iOS on iPhone 12.4.1 command loadNewImage pPath lock screen for visual effect set the filename of sMainImage to pPath setImageToFullCardLoc sMainImage, "portrait", 0,0 centerMe sMainImage,0,0

Re: Weird behavior for modal stacks and answer dialogs

2019-09-09 Thread Tom Glod via use-livecode
Yeah i remember getting really heated when this behaviior was introduced. drove me nuts. I think I just used a "wait while stack is open" kind of command (with messages) and it works fine. On Mon, Sep 9, 2019 at 7:31 AM Paul Dupuis via use-livecode < use-livecode@lists.runrev.com> wrote: >

Re: Weird behavior for modal stacks and answer dialogs

2019-09-09 Thread Paul Dupuis via use-livecode
On 9/9/2019 6:50 AM, Giovanni via use-livecode wrote: Hi everybody, I’m writing here to report a very strange behavior of modal stacks and answer dialogs on MacOS Yosemite and Sierra. Basically the modal windows or dialogs, in these OSes simply does not work and this seems to happen since LC 6.

Re: 9.5 on Windows seems terribly unable to deal with fields full of text?

2019-09-09 Thread Giovanni via use-livecode
Hi Geoff, I can confirm this and I reported this several times. The whole IDE (the script editor mainly) is quite unusable on Windows workstations, no matter how many RAM or CPU is installed. Tried all the suggestions on a lot of different Windows workstations without any success. Hope that the L

Weird behavior for modal stacks and answer dialogs

2019-09-09 Thread Giovanni via use-livecode
Hi everybody, I’m writing here to report a very strange behavior of modal stacks and answer dialogs on MacOS Yosemite and Sierra. Basically the modal windows or dialogs, in these OSes simply does not work and this seems to happen since LC 6.7.x! When you open a modal stack the expected behavior i

Re: livecode in terminal ; path in linux as alternative to bash?

2019-09-09 Thread Mark Wieder via use-livecode
On 9/8/19 7:32 PM, Eric A. Engle via use-livecode wrote: I am learning bash (bourne again shell) on linux; i would like to know if it is possible to 1) invoke livecode from the command line 2) how to install livcode into my path 3) whether livecode can be used as an alternative to bash? 1