I try to use DataSet.find(), but it can't provide inexact search. For Example
1. apple -> Apple False
2. App -> Apple False
3. Apple -> Apple OK
conquerors04 - 17 Aug 2005 22:20 GMT
If you want to be able to find any part of a word, you should take your search
string's length, start at the first character and loop through the entire
DataSet looking for a match, it may sound like it would take a lot of memory
but actualy does not. Use the DataSet.filterFunc to do this.
Boen_Zhou - 19 Aug 2005 13:45 GMT
Thank you!
I found a better solution, which is Xpath for flash.
1. download xpath4AS2
2. import it into fla
3. use contains() function to compare strings