would the standard search function be suffiecent for this?
Printable View
would the standard search function be suffiecent for this?
http://www.clickteam.com/epicenter/ubbthreads.php?ubb=showflat&Number=138530&#Post138 530
I've posted an example of using string parser to search for a specific string.
Basically add spaces " " as a delimiter, and then you say have an action like
Compare two general values:
listFind( "String Parser", "cake", 1) = 0
The 1 makes the expression ask if the string is there. If it's there it will return 1, 0 if it's not. If that 1 was a 0 then it would ask if the string was not there, and it would return 1 if it wasn't there, and 0 if it was.
If there is no word "cake" in your string then that event will not fire.
If the string was "The cake is a lie." and you did
Compare two general values:
listFind( "String Parser", "cake", 1) = 1
Then those events would fire as well.
( "String Parser", "cake", [color:#FF0000]1[/color]) = [color:#33FF33]1[/color]
???
what are the highlighted parts for?
red = flag, which I already explained in my previous post
The green is the other part of the "compare two general values" event.
ok, i will see what i can do