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
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
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
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
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
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
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
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
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