[FONT=Verdana]In an alphabetically sorted array, I want to jump from one letter to another.[/FONT]
[FONT=Verdana]So, when I’m with a word beginning with “a”, I want to jump to the next item beginning with “b”…etc[/FONT]
[FONT=Verdana] [/FONT]
[FONT=Verdana]I’ve set up this simple script, which simply look at the first character of the current item, then loop in the (sorted) array until it finds a different first character…[/FONT]
[FONT=Verdana]It works very well…when descending![/FONT]
[FONT=Verdana]But when ascending, the script sees that there is character change…but this is not the first item beginning with that letter…but the last one (since we are coming from bottom to top)[/FONT]
[FONT=Verdana]And of course I would like the script to give me the very first item beginning with a new letter.[/FONT]
[FONT=Verdana] [/FONT]
[FONT=Verdana](So, to summarize, I want to browse an array alphabetically, up & down, so that each time I press on the UP arrow key, I go up in the alphabet….and when I press the DOWN arrow key, I go down in the alphabet)[/FONT]
[FONT=Verdana] [/FONT]
[FONT=Verdana]Would you please have an elegant way to do this?[/FONT]
[FONT=Verdana]Thanks very much ;-)[/FONT]
[FONT=Verdana] [/FONT]
[FONT=Verdana]
[/FONT]
[FONT=Verdana]var anArray:Array = ["a1","a2","b1","b2","c1","c2","d1","d2","e1","e2","f1","f2","g1","g2"][/FONT]
[FONT=Verdana]anArray.sort();[/FONT]
[FONT=Verdana]var arrayLength:Number = anArray.length[/FONT]
[FONT=Verdana]var index:Number=1[/FONT]
[FONT=Verdana]function keyDown() {[/FONT]
[FONT=Verdana] if (Key.isDown(40)) {[/FONT]
[FONT=Verdana] var istring:String = anArray*.charAt(0);[/FONT]
[FONT=Verdana] for (i=index+1; i<arrayLength-1; i++) {[/FONT]
[FONT=Verdana] if (anArray*.charAt(0) != istring) {[/FONT]
[FONT=Verdana] index = i;[/FONT]
[FONT=Verdana] trace (anArray*)[/FONT]
[FONT=Verdana] break;[/FONT]
[FONT=Verdana] }[/FONT]
[FONT=Verdana] }[/FONT]
[FONT=Verdana] } else if (Key.getCode() == 38) {[/FONT]
[FONT=Verdana] var istring:String = anArray*.charAt(0);[/FONT]
[FONT=Verdana] for (i=index; i>0; i--) {[/FONT]
[FONT=Verdana] if (anArray*.charAt(0) != istring) {[/FONT]
[FONT=Verdana] index = i;[/FONT]
[FONT=Verdana] trace (anArray*)[/FONT]
[FONT=Verdana] break;[/FONT]
[FONT=Verdana] }[/FONT]
[FONT=Verdana] }[/FONT]
[FONT=Verdana] }[/FONT]
[FONT=Verdana]}[/FONT]
[FONT=Verdana]var keyListener:Object = new Object();[/FONT]
[FONT=Verdana]keyListener.onKeyDown = keyDown;[/FONT]
[FONT=Verdana]Key.addListener(keyListener);[/FONT]
[FONT=Verdana]
[/FONT]