this.createClassObject(mx.controls.ComboBox, "comboBox", 10);
comboBox.setStyle("themeColor", "0xFF0000");
var mouseListener:Object = new Object();
mouseListener.onMouseWheel = function(delta) {
if ((delta > 0 && box_mc._y < 270) || (delta < 0 && box_mc._y > 0)) {
box_mc._y = box_mc._y + (delta * 3);
}
}
Mouse.addListener(mouseListener);
function cbUpdate() {
choice = _root.comboBox.getSelectedItem().data;
_root.gotoAndPlay(change);
}
_root.comboBox.setChangeHandler("change");
_root.comboBox.addItem("Velg et sted", "");
_root.comboBox.addItem("Asker", "Asker");
_root.comboBox.addItem("Askøy", "Askøy");
_root.comboBox.addItem("Bergen", "Bergen");
_root.comboBox.addItem("Bryne", "Bryne");
_root.comboBox.addItem("Elverum", "Elverum");
_root.comboBox.addItem("Fredrikstad", "Fredrikstad");
_root.comboBox.addItem("Gjøvik", "Gjøvik");
_root.comboBox.addItem("Grimstad", "Grimstad");
_root.comboBox.addItem("Hamar", "Hamar");
_root.comboBox.addItem("Horten", "Horten");
_root.comboBox.addItem("Hønefoss", "Hønefoss");
_root.comboBox.addItem("Kongsberg", "Kongsberg");
_root.comboBox.addItem("Jessheim", "Jessheim");
_root.comboBox.addItem("Kristiansand", "Kristiansand");
_root.comboBox.addItem("Krokstadelva", "Krokstadelva");
_root.comboBox.addItem("Lamberseter", "Lamberseter");
_root.comboBox.addItem("Lierskogen", "Lierskogen");
_root.comboBox.addItem("Lillehammer", "Lillehammer");
_root.comboBox.addItem("Lillestrøm", "Lillestrøm");
_root.comboBox.addItem("Lørenskog", "Lørenskog");
_root.comboBox.addItem("Moss", "Moss");
_root.comboBox.addItem("Oslo", "Oslo");
_root.comboBox.addItem("Sandnes", "Sandnes");
_root.comboBox.addItem("Sarpsborg", "Sarpsborg");
_root.comboBox.addItem("Ski", "Ski");
_root.comboBox.addItem("Stavanger", "Stavanger");
_root.comboBox.addItem("Steinkjer", "Steinkjer");
_root.comboBox.addItem("Trondheim", "Trondheim");
_root.comboBox.addItem("Tønsberg", "Tønsberg");
|