Lars-

If there's no space after the comma ("to read,recite") then

"mark cds where it is among the items of the storedText of me"

should do it. If there are spaces ("to read, recite") then the match
will probably fail and you'll have to resort to something more
verbose:

  put the storedText of me into tItems
  repeat with x = 1 to the number of items in tItems
    if tTarget is word 1 to -1 of item x of tItems then
      -- etc
    end if
  end repeat

-- 
-Mark Wieder
 [EMAIL PROTECTED]

_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to