For a drop-down box, as long as it has focus, you can type in the first letter of an item you want to skip to. If there are multiple items in the drop-down box that start with that same letter, repeatedly pressing the letter will cycle you through all those items.
Now, I wonder if it would be possible to take the same idea a little further and use multiple letters to further narrow down the 'search'. For instance, if I had a drop-down box with the following items...
apple
peach
...I would want to set it up so that pressing "ap" would give you "apple", rather than "peach". Basically, I want it to capture keystrokes until no more keys are pressed within a certain amount of time, and then go and select the item whose leftmost X number of letters match whatever had been typed. In the case of multiple matches, it should still take you to the first match.
Would that be possible at all?
Now, I wonder if it would be possible to take the same idea a little further and use multiple letters to further narrow down the 'search'. For instance, if I had a drop-down box with the following items...
apple
peach
...I would want to set it up so that pressing "ap" would give you "apple", rather than "peach". Basically, I want it to capture keystrokes until no more keys are pressed within a certain amount of time, and then go and select the item whose leftmost X number of letters match whatever had been typed. In the case of multiple matches, it should still take you to the first match.
Would that be possible at all?