Len Morgan wrote:
If I type the lines:
put "Movement History" into myChoice
put the text of button "taskBar" into tLines
put (myChoice is among the lines of tLines)
into the message box, the result I get is "false"
When you use "is among", the entire line must match to get a hit. If the
line you are trying to match has any extra characters (maybe "Movement
History for Dummies") then the result is false. The two strings must be
identical.
If you are trying to match only the beginnings of lines, try something
like this:
if offset(cr & myChoice, cr & tLines) > 0 then...
--
Jacqueline Landman Gay | [email protected]
HyperActive Software | http://www.hyperactivesw.com
_______________________________________________
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