“Make Docset” updated to 3.1, DASH docset for LC now at 1.7.1

2018-10-26 Thread James At The Hale via use-livecode
I have uploaded version 3.1 of the ‘make_docset’ stack to LC Share. This version returns syntax coloring to the examples as well as retaining their indentation. It also adds links to all the “Associations” listed in many of the entries. This was only something I had noticed recently so apologies

Re: [off]Hactoberfest

2018-10-26 Thread Mike Kerner via use-livecode
FIVE DAYS Y'ALL! I got my five pull requests in, and just confirmed my t-shirt. On Tue, Oct 23, 2018 at 8:01 AM Trevor DeVore via use-livecode < use-livecode@lists.runrev.com> wrote: > On Fri, Oct 19, 2018 at 9:54 AM Trevor DeVore > wrote: > > > I've added another screencast that shows how to a

Re: starting the Project Browser

2018-10-26 Thread J. Landman Gay via use-livecode
It's referring to all engine messages that contain either "open" or "close", so: preOpenStack preOpenBackground preOpenCard ...etc openStack openBackground openCard ...etc closeStack closeBackground closeCard ...etc I understand why this is necessary now, but it is pretty instrusive, is going

Re: How to find true words that start with a capital letter?

2018-10-26 Thread Alex Tweedly via use-livecode
You say "... containing A-Z" Are you really using unicode ? Or is it really just ASCII ? if so, you could do    put char 1 of tWord into temp    if 65 <= temp AND temp <= 90 then ... Alex. On 26/10/2018 12:21, Keith Clarke via use-livecode wrote: Folks, What is the most efficient way to se

Re: Numbering lines

2018-10-26 Thread Mark Hsu via use-livecode
I think your issue is where you say “put tcount & j into line tcount of it” — The line X of … call is very slow as it has to count every line from 1 - X. try this: local tBuffer put 1 into tCount repeat for each line j in pText put tCount & j & lf after tBuffer add 1 to tCount set the thumb

Numbering lines

2018-10-26 Thread David V Glasgow via use-livecode
Hello folks I am doing a content analysis of online chat and messaging. Sometimes very large files, thousands or even hundreds of thousands of messages. I am finding filter and find to be delightfully fast. However…. Sometimes I want to prefix each line with the line number, and do this: pu

RE: starting the Project Browser

2018-10-26 Thread Douglas Ruisaard via use-livecode
Thanks, Jacqueline. I have not had any issues with using the StandAlone builder but then I am using LC v8.1.9. on Windows 7. I did put Panos's code into my app ... made no apparent difference but good to have there anyway. I'm a bit confused about the reference to "Similar in all other (pre)o

Re: How to find true words that start with a capital letter?

2018-10-26 Thread panagiotis merakos via use-livecode
Hello Keith, Does this work? set the casesensitive to true if char 1 of tWord is toUpper(char 1 of tWord) then answer "Found Uppercase" end if Best, Panos -- On Fri, Oct 26, 2018 at 2:22 PM Keith Clarke via use-livecode < use-livecode@lists.runrev.com> wrote: > Folks, > What is the mo

How to find true words that start with a capital letter?

2018-10-26 Thread Keith Clarke via use-livecode
Folks, What is the most efficient way to search for trueWords starting with a capital letter? Is there anything more direct than something like... repeat for each true word tWord in tContainer If char 1 of tWord is among the codePoints of tUnicodeLetters // a variable containing A-Z