The next script belongs behind the arrow button that goes on the side and lets you advance through the selections. Here's the script for that:
on (release) {
text.newoutput="";
b=c+5;
for (a=c; a<b; a<count; a++) {
this = "blah"+a;
that = eval(this);
find=that.indexOf(input);
newa=a+1;
text.newoutput = text.newoutput+newa+" - "+that+"\n\n";
c=c+1;
}
}
This script basically does the same thing as the one before it with one major difference - it only advances through the choices already in the script, and doesn't re-fetch the next results. It just reads the variables already chached in the movie. This saves time in the long run and makes it easier on your internet connection.
The last piece of this puzzle is the actual file that you search. In this case, the file specified in the PHP script is stuff.txt You can change it to whatever you want, but be sure that it's divided up into lines (by newlines) or else you're going to get one really long rearch result. Most documents will have the newlines already there, you just have to copy it over. But on occasion, you'll need to go in and separate it out into lines.
Well, that's pretty much it! If you've gotten all of this stuff put together, then you shouldn't have any trouble gettting this working together and be happily searching text files in no time! Best of luck!
| » Level Intermediate |
|
Added: 2001-01-09 Rating: 6 Votes: 41 |
| » Author |
| No author details available. |
| » Download |
| Download the files used in this tutorial. |
| Download (34 kb) |
| » Forums |
| More help? Search our boards for quick answers! |
-
You must have javascript enabled in order to post comments.


Comments
There are no comments yet. Be the first to comment!