Tutorials Home
What's New
Top Rated
Submit
myTutes
Random!
Creating an Active Search List
Author: Flash Junkie
| Website: http://www.flashkit.com |
Frame 3: Wait for User Input
Here we check to see if the user has changed what
s/he typed since the last time we checked. If the have, we clear the list (by
removing all the duplicate buttons--except the original one). We also set the
position of the scrolltarget (the single object which is a movieclip containing
ALL the buttons, whether they are duplicated or not.) We set it back to 0. We do
this because... say you shows ALL links. Then you scrolled way down to the
bottom of that list. Now you start typing and filter the links down to only two
or three. They will be way above your viewing area... way up off the top
somewhere and you will get a blank list. You'd have to scroll way up to see
them. To work around this I simply reset the scroll to the very top item each
time the user types anything.
Comment: ----------------------------------------------
Comment: frames 3&4 loop
Comment: until you type or delete
Comment: ----------------------------------------------
If ((findit ne oldsearch) and Length(findit)>=/:minimum_search)
This only runs if we have more than (minimum allowed) characters. Otherwise... (see below) we simply show the entire list.
Comment: ----------------------------------------------
Comment: process typing/deleting (more than (minimum_search) characters
Comment: ----------------------------------------------
Comment: Clear the List First
Set Variable: "q" = 0
Loop While (q
We go to Frame 2, the filtering script, and
see if the new input (whether more or less than the previous input) has any
matches. This way it doesn't matter if you are typing or deleting it will work
either way.
Go to and Play (2)
Else
Comment: ----------------------------------------------
Comment: process deleting to less than (minimum_search) characters
Comment: ----------------------------------------------
We show the entire list by going back to
Frame 1, where we initially set up the entire list.
If ((findit ne oldsearch))
Go to and Play (1)
End If
End If
Set Variable: "oldsearch" = findit
| » Level Advanced |
|
|
Added: : 2000-05-01
Rating: 8.51 Votes: 114
Hits: 14486
|
| » Author |
|
Flashjunkie is a self-professed obsessive addict of life. Due to the highly artistic nature required of an Art Director for an Ad agency, he took up Flash to add some math to his diet
|
| » Download |
|
Download the files used in this tutorial.
|
|
Download (96 kb)
|
|
Get conversion and unzipping tools
for PC and Mac here!
|
| » Forums |
|
More help? Search our boards for quick answers!
|
|
Please rate this tutorial, 10 is the top rating, you can also click the
comments link to read/write a review.
|
|
|