find

LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

robm80
Posts: 161
Joined: Sat May 03, 2014 7:15 am

Re: find

Post by robm80 » Fri Aug 29, 2014 10:00 pm

All problems solved :!: :lol:
This is how the boxes are withdrawn: In the find-script

Code: Select all

 lock screen
      repeat with i=2 to tNum
      put field "comment"  of cd i into field "comment" of cd i
   end repeat
   unlock screen
and more:

Code: Select all

 set the textstyle of the foundchunk to "box"
      put the short name of this cd  into  tRef
      if tRef is among the lines of tList then
         exit repeat
      else
         put tRef & cr after tList
      end if
I followed your advise and changed "find words" to "find."
Thank you. For the moment this will be all: I take a break with Livecode.
All the best,
Rob

jmburnod
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 2729
Joined: Sat Dec 22, 2007 5:35 pm
Contact:

Re: find

Post by jmburnod » Fri Aug 29, 2014 10:59 pm

Hi Rob,

Sorry I was wrong.
As Jacques said
the result will be empty if the find is successful and the foundchunk is not returned in the result
All the best
Jean-Marc
https://alternatic.ch

Post Reply