Forum Discussion
BenjaminClatwor
5 years agoCommunity Member
TextEntry Variable - Can I have a keywords Lookup instead of exact match
Hi,
I am wondering if it is possible to have a textentry trigger that isn't looking for an exact match in the textentry field but instead as long as keywords are used in the textentry field it wil...
MathNotermans-9
5 years agoCommunity Member
With a little Javascript this is easy to solve. Default not in Storyline though.
Here is a working sample.
Basically this line of code does the trick...inputString.includes("text2lookfor");
This returns true if the str looking for is found. Else it returns false
The added sample has some variables that get set and read by script and works completely.