Re: Search & Replace

2022-01-12 Thread Richmond Mathewson via use-livecode
STACK here in the mailing list, too, well... 8-) > > > Best, Richmond. > > >>>>>> I am trying to locate the Search & Replace dialog inwith the LC IDE > >>>>>> but seem unable to . . . > > Best > > Klaus > > > >

Re: Search & Replace

2022-01-12 Thread Klaus major-k via use-livecode
he forum you asked for the "Find and Replace STACK"! If you had mentioned STACK here in the mailing list, too, well... 8-) > Best, Richmond. >>>>>> I am trying to locate the Search & Replace dialog inwith the LC IDE >>>>>> but seem unable to . . .

Re: Search & Replace

2022-01-12 Thread Craig Newman via use-livecode
t;>> bring up the editor's Find which appears between the script and the >>> variable pane. >>> -- >>> Jacqueline Landman Gay | jac...@hyperactivesw.com >>> HyperActive Software | http://www.hyperactivesw.com >>> On January 12, 2022 3:15:19 AM Klaus m

Re: Search & Replace

2022-01-12 Thread Richmond Mathewson via use-livecode
2022 3:15:19 AM Klaus major-k via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> > >>> Hi Richmond, > >>> > >>>> Am 12.01.2022 um 10:08 schrieb Richmond via use-livecode < > use-livecode@lists.runrev.com>:

Re: Search & Replace

2022-01-12 Thread Klaus major-k via use-livecode
t; pane. >> -- >> Jacqueline Landman Gay | jac...@hyperactivesw.com >> HyperActive Software | http://www.hyperactivesw.com >> On January 12, 2022 3:15:19 AM Klaus major-k via use-livecode >> wrote: >> >>> Hi Richmond, >>> >>>> Am 12.01.2

Re: Search & Replace

2022-01-12 Thread Craig Newman via use-livecode
;>> Am 12.01.2022 um 10:08 schrieb Richmond via use-livecode >>> : >>> >>> I am trying to locate the Search & Replace dialog inwith the LC IDE >>> but seem unable to . . . >> >> new to LC? 8-) >> >> Last item in menu -> Ed

Re: Search & Replace

2022-01-12 Thread J. Landman Gay via use-livecode
Klaus major-k via use-livecode wrote: Hi Richmond, Am 12.01.2022 um 10:08 schrieb Richmond via use-livecode : I am trying to locate the Search & Replace dialog inwith the LC IDE but seem unable to . . . new to LC? 8-) Last item in menu -> Edit Or CMD-F. Best, Richmond. Best

Re: Search & Replace

2022-01-12 Thread Klaus major-k via use-livecode
Hi Richmond, > Am 12.01.2022 um 10:08 schrieb Richmond via use-livecode > : > > I am trying to locate the Search & Replace dialog inwith the LC IDE > but seem unable to . . . new to LC? 8-) Last item in menu -> Edit Or CMD-F. > Best, Richmond. Best Klaus -- Klau

Search & Replace

2022-01-12 Thread Richmond via use-livecode
I am trying to locate the Search & Replace dialog inwith the LC IDE but seem unable to . . . Best, Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscrip

Re: Search Replace with lf and/cr

2013-08-29 Thread Dr. Hawkins
On Tue, Aug 27, 2013 at 1:56 AM, Richmond richmondmathew...@gmail.com wrote: numToChar(2325)) break i.e. stripped out the linefeed. Obviously that is no good. I've always found it simplest to change the difficult character to ZZZ or myMagicString, make my changes, and move it back. . . --

Search Replace with lf and/cr

2013-08-27 Thread Richmond
This is a really hard nut to crack: I have a very long script that features lines that end like this: numToChar(2325)) and lines that end like this numToChar(2325)) the top example is followed by a line that starts with set, and the lower example is followed by break: numToChar(2325))

Re: Search Replace with lf and/cr

2013-08-27 Thread Richmond
Hey: nothing new round these parts: Richmond replying to his own message. This is one of those moments when I want to shout Hallelujah from the roof tops . . . I have just discovered KOMODO EDIT: http://www.activestate.com/komodo-edit and it really rocked my socks as it allows a multiline

Re: Search Replace with lf and/cr

2013-08-27 Thread Mark Schonewille
Hi Richmond, I don't understand why this is a poblem and why you would try this in LibreOffice. put the script of myControl into myScript replace ) break with ) cr beep cr break in myScript set the script of myControl to myScript put the result into rslt if rslt is not empty then beep

Re: Search Replace with lf and/cr

2013-08-27 Thread Richmond
On 08/27/2013 12:21 PM, Mark Schonewille wrote: Hi Richmond, I don't understand why this is a poblem and why you would try this in LibreOffice. put the script of myControl into myScript replace ) break with ) cr beep cr break in myScript set the script of myControl to myScript put the

Search, Replace and Unicode

2012-12-29 Thread Richmond
'Tis very easy to do this: on mouseUp replace ZaX with XaZ in fld TEKST end mouseUp and ZaXbbdsfZvfghXaasn will magically become: XaZbbdsfZvfghXaasn. So, clutching at straws, I tried this: on mouseUp set the useUnicode to true replace (numToChar(2367)) with (numToChar(105)) end

Re: Search, Replace and Unicode

2012-12-29 Thread Richmond
On 12/29/2012 04:35 PM, Richmond wrote: 'Tis very easy to do this: on mouseUp replace ZaX with XaZ in fld TEKST end mouseUp and ZaXbbdsfZvfghXaasn will magically become: XaZbbdsfZvfghXaasn. So, clutching at straws, I tried this: on mouseUp set the useUnicode to true replace

Re: Search, Replace and Unicode

2012-12-29 Thread Richmond
Now, of course, the real fun starts when one wants to play around with wild-cards so that one can, say, swap Z and X around in a unicodeText field that contains stuff like this: ZaXddZfXabcdeZoX as I am unclear how to do that with a non-unicodeText field, the next step seems a bit

Re: Search, Replace and Unicode

2012-12-29 Thread Richmond
On 12/29/2012 05:48 PM, Richmond wrote: Now, of course, the real fun starts when one wants to play around with wild-cards so that one can, say, swap Z and X around in a unicodeText field that contains stuff like this: ZaXddZfXabcdeZoX as I am unclear how to do that with a non-unicodeText

Re: Search, Replace and Unicode

2012-12-29 Thread Phil Davis
Hi Richmond, Just curious - does setting the lockMessages lockScreen to true speed it up any? Or hiding the field? (Sorry if these have already been answered; I'm not following the thread too closely) On 12/29/12 8:18 AM, Richmond wrote: ran it through unicode addresses from 2325 to 62738,

Re: Search, Replace and Unicode

2012-12-29 Thread Richmond
On 12/29/2012 09:38 PM, Phil Davis wrote: Hi Richmond, Just curious - does setting the lockMessages lockScreen to true speed it up any? Or hiding the field? (Sorry if these have already been answered; I'm not following the thread too closely) I really don't know as I am so thick those

Re: Search, Replace and Unicode

2012-12-29 Thread Richmond
On 12/29/2012 09:38 PM, Phil Davis wrote: Hi Richmond, Just curious - does setting the lockMessages lockScreen to true speed it up any? Or hiding the field? (Sorry if these have already been answered; I'm not following the thread too closely) I ran unicode replace script that took 8

Re: Search, Replace and Unicode

2012-12-29 Thread Phil Davis
On 12/29/12 11:52 AM, Richmond wrote: On 12/29/2012 09:38 PM, Phil Davis wrote: Hi Richmond, Just curious - does setting the lockMessages lockScreen to true speed it up any? Or hiding the field? (Sorry if these have already been answered; I'm not following the thread too closely) I