0

考えられるオートコンプリートの結果でいっぱいになるコンボボックスを作成しようとしています。最初に、ユーザー入力と比較する配列にすべての単語を入れてから、単語をコンボボックスに追加するswitchステートメントに入れます。ただし、入力が変更されたときにコンボボックスから結果を削除することはできません。

var dictionary:Vector.<String> = new Vector.<String>();
dictionary.push("University Chapel");
dictionary.push("IT Building");
dictionary.push("Student Centre");
dictionary.push("EMS Building");
dictionary.push("EMB Building");
dictionary.push("Monastry Hall");
dictionary.push("Conference Centre");
dictionary.push("Client Service Centre");
var objects:Vector.<MovieClip> = new Vector.<MovieClip>();
stage.focus = inputBox;
inputBox.addEventListener(Event.CHANGE, onCompletions);
function onCompletions(event:Event):void{
for(var i:int = 0; i < dictionary.length; ++i){
    if(dictionary[i].indexOf(inputBox.text) >= 0){
        switch(dictionary[i])   {
            case 'IT Building':
                cbox.addItemAt({label:"IT Building", data:"screenData" + newRow},0);  
                break;
            case 'University Chapel':
                cbox.addItemAt({label:"University Chapel", data:"screenData" + newRow},0);
                break;

            case 'Student Centre':
                cbox.addItemAt({label:"Student Centre", data:"screenData" + newRow},0);
                break;

            case 'EMS Building':
                cbox.addItemAt({label:"EMS Building", data:"screenData" + newRow},0);
                break;

            case 'EMB Building':
                cbox.addItemAt({label:"EMB Building", data:"screenData" + newRow},0);
                break;

            case 'Monastry Hall':
                cbox.addItemAt({label:"Monastry Hall", data:"screenData" + newRow},0);
                break;

            case 'Conference Centre':
                cbox.addItemAt({label:"Conference Centre", data:"screenData" + newRow},0);
                break;

            case 'Client Service Centre':
                cbox.addItemAt({label:"Client Service Centre", data:"screenData" + newRow},0);
                break;
        }
    }
    else    {
        //cbox.removeAll(); //Where I attempted to remove all the results
    }
}

}

そのため、コンボボックスから結果を削除し、再評価してから再度挿入しようとしています。副次的な質問として、actionscript を使用してコンボボックスを拡張する方法はありますか?

前もって感謝します

4

1 に答える 1