Finding common words and phrases in a large block of text?

2018-10-24 Thread Terry Judd via use-livecode
Hi – I’m looking to analyse some large block of text (journal abstracts from key educational technology journals over a several year period) to find common words and phrases. Finding common words should be easy enough but I’m not clear on what approach to take for finding common phrases

Re: use-livecode Digest, Vol 181, Issue 33

2018-10-24 Thread Mark Wieder via use-livecode
On 10/24/2018 02:10 PM, Douglas Ruisaard via use-livecode wrote: Thanks for the reply, Klaus... but I'm sure we all agree this is totally non-intuitive. However, using this call in my openStack script does two negative things: 1) least important but somewhat self-defeating to my "goal", this

Re: starting the Project Browser

2018-10-24 Thread Niggemann, Bernd via use-livecode
Hi, does this help? revIDETogglePalette "Project Browser" you can test if the Project Browser is visible put revIDEPaletteIsVisible("project browser") Kind regards Bernd ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this

Re: jsonImport or JSONToArray

2018-10-24 Thread Douglas Ruisaard via use-livecode
I'll drink to THAT!! .. but then again, I'll drink to almost anything! ... coffee... what were you thinking? but seriously, it's a fine idea... particularly as I got blind-sided by finding an irrelevant inclusion (JSON Library) when I needed the mergJSON one and the inclusions are NOT even

RE: use-livecode Digest, Vol 181, Issue 33

2018-10-24 Thread Douglas Ruisaard via use-livecode
Thanks for the reply, Klaus... but I'm sure we all agree this is totally non-intuitive. However, using this call in my openStack script does two negative things: 1) least important but somewhat self-defeating to my "goal", this now opens the Project Browser right on top of my app in some

Re: Sorting search results - solution needed

2018-10-24 Thread Niggemann, Bernd via use-livecode
here is my take, clumsy and not respecting all formatting requirements Instead of 187.1 187.1.1 187.1.2 187.3 187.22 187.33 187.234 it sorts 187.1 187.1.1 187.1.2 187.22 187.234 187.3 187.33 Kind regards Bernd --- on mouseUp put field

Re: Sorting search results - solution needed

2018-10-24 Thread Geoff Canyon via use-livecode
I think this comes pretty close to the requirement. It breaks the lines down into numeric/not numeric items, and then sorts from the least significant (rightmost) to most significant items. For each sort, sorts first by alpha, then numeric. That results in letters being sorted before numbers,

Re: [ANN] Network Tracer

2018-10-24 Thread Andre Alves Garzia via use-livecode
Bob, It is a joke but it is also true :-) For example, in the Network Tracer stack there is code to avoid showing duplicate messages because here on my home network, all the datagrams are arriving three times. So a single "ntInfo" call on a standalone amounted to three datagrams with the

Re: [ANN] Network Tracer

2018-10-24 Thread Andre Alves Garzia via use-livecode
Dear Tom, The TypeTool mostly acts on the "the selobj" so unless you start changing the scripts, it won't make much sense on a standalone. On the other hand, all the stacks are unlocked and you have access to the full source. You can pick the code from it and patch it to your own needs. For

is anyone able to use fileDSN for ODBC connections in LC?

2018-10-24 Thread Matthias Rebbe via use-livecode
Hi, i am not able to use fileDSN for ODBC connections to a SQL server in LC Windows. Under Mac i did not test it already. With fileDSN you define all the odbc settings/parameters in a file with the suffix .dsn. When connecting using ODBC you can then use that dsn file. No need to setup an ODBC

Re: [ANN] Network Tracer

2018-10-24 Thread tbodine via use-livecode
Congratulations on this release, Andre. This looks very useful. I have a (probably dumb) question... Are your products, such as AAG Tools, only for use in the IDE, or can tools such as TypeTool be used in standalone builds? Thanks, Tom Bodine -- Sent from:

Re: Sorting search results - solution needed

2018-10-24 Thread Bob Sneidar via use-livecode
I should have said, in the loop keep adding a character until the value is no longer a number, then sort numeric by the last value. Bob S > On Oct 23, 2018, at 14:14 , Bob Sneidar via use-livecode > wrote: > > This of course cannot be a numeric sort. I would create a loop and start with >

Re: applescript in standalones?

2018-10-24 Thread Bob Sneidar via use-livecode
Mine do. Not in Windows of course... :-) On MacOS I use applescript to tell Acrobat to run a javascript to fill a form. Bob S > On Oct 23, 2018, at 15:08 , Tom Glod via use-livecode > wrote: > > Can someone confirm for me whether "do as applescript" works in standalones > built by v9?

Re: jsonImport or JSONToArray

2018-10-24 Thread Bob Sneidar via use-livecode
+1 Great idea! Bob S > On Oct 23, 2018, at 16:08 , Monte Goulding via use-livecode > wrote: > >> On 24 Oct 2018, at 10:04 am, Andre Alves Garzia via use-livecode >> wrote: >> >> As you folks may have seen earlier today, I've shipped a new product here on >> the list. While I was building

Re: [ANN] Network Tracer

2018-10-24 Thread Bob Sneidar via use-livecode
Hah! I'm sure that was a joke but UDP is User Datagram Protocol. Bob S > On Oct 23, 2018, at 15:27 , Andre Alves Garzia via use-livecode > wrote: > > Hi Everyone, > > It is with a lot of excitement that I am here to announce a new plugin for > LiveCode called Network Tracer. This is a

Re: applescript in standalones?

2018-10-24 Thread Tom Glod via use-livecode
Ahh...I would have never figured that out from just reading the enhancement report. Much thanks Brian. On Wed, Oct 24, 2018 at 12:58 AM Brian Milby via use-livecode < use-livecode@lists.runrev.com> wrote: > I can confirm that the following scripts work as expected in a stand alone >

Re: Sorting search results - solution needed

2018-10-24 Thread hh via use-livecode
As Craig said, your rules are not consistent to standards: You sort *after* the first period numeric with the exception that leading zeros are "valid". That's why the replace in the following function is needed. This now yields exactly your custom sort order: function gregSort s set itemdel