Re: Not many people know this.

2018-08-17 Thread Mark Wieder via use-livecode
On 08/17/2018 05:51 PM, James At The Hale via use-livecode wrote: It is easier to proof double spaced lines... What would be the benefit of typing code on only odd numbered lines? ...that way I could put a comment after each line (ducking)... -- Mark Wieder ahsoftw...@gmail.com

Re: Not many people know this.

2018-08-17 Thread James At The Hale via use-livecode
It is easier to proof double spaced lines... > What would be the benefit of typing code on only odd numbered lines? > > Bob S > > >>> On Aug 16, 2018, at 17:56 , Mark Wieder via use-livecode >>> wrote: >>> >>> reason we treat that particular 10,000 odd lines of code with a great

RE: filter list_of_files with REGEX xyz?

2018-08-17 Thread Ralph DiMola via use-livecode
Let them eat cake. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Bob Sneidar via use-livecode Sent: Friday, August 17, 2018 4:39 PM To: How to use

Re: filter list_of_files with REGEX xyz?

2018-08-17 Thread Bob Sneidar via use-livecode
Half want cake, the other half, pie. Bob S > On Aug 17, 2018, at 09:45 , Mark Wieder via use-livecode > wrote: > > On 08/17/2018 08:54 AM, Ralph DiMola via use-livecode wrote: >> True true... I thought about it but left it as is just in case there was an >> image without a file name before

Re: Not many people know this.

2018-08-17 Thread Lagi Pittas via use-livecode
I have a habit of saying "ish" and "odd" in that context , so I'm in very good company. And I'm jealous of your hairline ;-) Lagi On Fri, 17 Aug 2018 at 17:09, Mark Waddingham via use-livecode < use-livecode@lists.runrev.com> wrote: > On 2018-08-17 02:56, Mark Wieder via use-livecode

Re: filter list_of_files with REGEX xyz?

2018-08-17 Thread Mark Wieder via use-livecode
On 08/17/2018 08:54 AM, Ralph DiMola via use-livecode wrote: True true... I thought about it but left it as is just in case there was an image without a file name before the ".". I did not want it to be missed. You know users... LOL -- Mark Wieder ahsoftw...@gmail.com

Re: Not many people know this.

2018-08-17 Thread Mark Waddingham via use-livecode
On 2018-08-17 02:56, Mark Wieder via use-livecode wrote: On 08/16/2018 11:21 AM, Mark Waddingham via use-livecode wrote: reason we treat that particular 10,000 odd lines of code with a great My goodness. I thought I was the only one who wrote odd lines of code... Haha! I didn't even see

RE: filter list_of_files with REGEX xyz?

2018-08-17 Thread Ralph DiMola via use-livecode
True true... I thought about it but left it as is just in case there was an image without a file name before the ".". I did not want it to be missed. You know users... Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode

Re: filter list_of_files with REGEX xyz?

2018-08-17 Thread Mark Wieder via use-livecode
On 08/17/2018 07:13 AM, Ralph DiMola via use-livecode wrote: filter tList with regex pattern "(?i).*\.(jpe?g|png|gif)$" For a file list that should probably be filter tList with regex pattern "(?i).+\.(jpe?g|png|gif)$" unless you explicitly want to see file names that start with "." --

Re: Not many people know this.

2018-08-17 Thread Bob Sneidar via use-livecode
Ah! a replacement for Word you say! That will teach Microsoft! Bob S > On Aug 16, 2018, at 21:42 , Sannyasin Brahmanathaswami via use-livecode > wrote: > > Someday someone should go a menu like inDesign so that you can "do text" > from a WSIWIG menu. > I know Andre has one but he didn't

Re: Not many people know this.

2018-08-17 Thread Bob Sneidar via use-livecode
What would be the benefit of typing code on only odd numbered lines? Bob S > On Aug 16, 2018, at 17:56 , Mark Wieder via use-livecode > wrote: > >> reason we treat that particular 10,000 odd lines of code with a great > > My goodness. I thought I was the only one who wrote odd lines of

Re: filter list_of_files with REGEX xyz?

2018-08-17 Thread Lagi Pittas via use-livecode
I was going to send the whole line but Hermann has beaten me to it - and I will use his version from now on, thanks Hermann. Lagi On Fri, 17 Aug 2018 at 15:03, Klaus major-k via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi Hermann, > > > Am 17.08.2018 um 15:58 schrieb hh via

Re: filter list_of_files with REGEX xyz?

2018-08-17 Thread Lagi Pittas via use-livecode
I used (without the gif) .*\.jpj|jpeg|png|gif The above is not case sensitive - just tested it Lagi On Fri, 17 Aug 2018 at 14:45, Ralph DiMola via use-livecode < use-livecode@lists.runrev.com> wrote: > (?i) turn off case sensitivity for everything after it in the regex > expression. (?-i)

RE: filter list_of_files with REGEX xyz?

2018-08-17 Thread Ralph DiMola via use-livecode
The ".*" is the wild card(zero or more) and "\." Is the period. filter tList with regex pattern "(?i).*\.(jpe?g|png|gif)$" Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode

RE: filter list_of_files with REGEX xyz?

2018-08-17 Thread Brian Milby via use-livecode
Let’s try this again... Regex pattern “.*\.(jpe?g|png)$” . - any character * - any number of previous match term ? - 0 or 1 of previous term \. - escapes the period for literal match () - groups terms | - alternates within group $ - end of line Thanks, Brian On Aug 17, 2018, 8:45 AM -0500, Ralph

Re: filter list_of_files with REGEX xyz?

2018-08-17 Thread Klaus major-k via use-livecode
Hi Hermann, > Am 17.08.2018 um 15:58 schrieb hh via use-livecode > : > > This is already case-insensitive, but the period needs an escape: > > filter tList with regex pattern "\.*(jpe?g|png|gif)$" ah, jetzt ja! :-) Thanks a lot! Best Klaus -- Klaus Major http://www.major-k.de

Re: filter list_of_files with REGEX xyz?

2018-08-17 Thread hh via use-livecode
This is already case-insensitive, but the period needs an escape: filter tList with regex pattern "\.*(jpe?g|png|gif)$" ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

RE: filter list_of_files with REGEX xyz?

2018-08-17 Thread Ralph DiMola via use-livecode
(?i) turn off case sensitivity for everything after it in the regex expression. (?-i) turns it back on again for everything after it. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode

Re: filter list_of_files with REGEX xyz?

2018-08-17 Thread Klaus major-k via use-livecode
Hi Brian, > Am 17.08.2018 um 15:19 schrieb Brian Milby via use-livecode > : > > RegEx pattern > Sorry, I was just giving the pattern, not the syntax. > Also, it will probably be case sensitive in that format. My suffixes are all lower case, so this shouldn't matter here. > I won’t be able to

Re: filter list_of_files with REGEX xyz?

2018-08-17 Thread Brian Milby via use-livecode
RegEx pattern Sorry, I was just giving the pattern, not the syntax. Also, it will probably be case sensitive in that format. I won’t be able to test until later. I don’t recall the case insensitive flag off hand. Thanks, Brian On Aug 17, 2018, 8:15 AM -0500, Klaus major-k via use-livecode ,

Re: filter list_of_files with REGEX xyz?

2018-08-17 Thread Klaus major-k via use-livecode
Hi Brian, > Am 17.08.2018 um 14:40 schrieb Brian Milby via use-livecode > : > > Pattern “*.(jpe?g|png|gif)” thanks, but that does not work!? I tried: on mouseUp pMouseButton answer folder "sdsdsdsd" put it into tFolder put files(tFolder) into tList filter tList with pattern

Re: filter list_of_files with REGEX xyz?

2018-08-17 Thread Brian Milby via use-livecode
Pattern “*.(jpe?g|png|gif)” Thanks, Brian On Aug 17, 2018, 6:44 AM -0500, Klaus major-k via use-livecode , wrote: > Hi friends, > > I know how to: > ... > filter list_of_files with "*.jpg" > ... > But REGEX stuff is way over my head. :-/ > > Can anyone provide the regex/pattern syntax for

Re: Using stackoverflow.com

2018-08-17 Thread Lagi Pittas via use-livecode
Hi, I'm sorry for the meandering, unfocused ran/stream of consciousness below but .. I agree with all the sentiments so far, and I can empathise with Mark and Todd about people who "Know" that everything must be written in C++ , Java or Python. - Livecode is a "baby language" according to

filter list_of_files with REGEX xyz?

2018-08-17 Thread Klaus major-k via use-livecode
Hi friends, I know how to: ... filter list_of_files with "*.jpg" ... But REGEX stuff is way over my head. :-/ Can anyone provide the regex/pattern syntax for filtering jpg, png etc. in ONE run? Know what I mean? Thanks a lot in advance! Best Klaus -- Klaus Major http://www.major-k.de

RE: Not many people know this.

2018-08-17 Thread Clarence Martin via use-livecode
Geoff, I truly appreciate what you have done with Navigator. I also appreciate the amount of work and dedication that it takes to keep this plugin current. I am still exploring everything that Navigator can do. Heather, Thanks for the link to the LiveCode Lessons on "How do I style paragraphs in

Re: Not many people know this.

2018-08-17 Thread Heather Laine via use-livecode
Just a footnote here... there is actually documentation on paragraph styles, in our lessons portal: http://lessons.livecode.com/m/4071/l/58674-how-do-i-style-paragraphs-in-a-field The lessons portal is a rich