Skip to content

Creating ComboBoxes

rubenmueller edited this page Sep 13, 2010 · 3 revisions

ComboBox example

    var comboBox:ComboBox = new ComboBox();
    comboBox.width = 200;
    comboBox.height = 25;
    comboBox.skin = new AuroraComboBoxSkin();
    comboBox.x = comboBox.y = 50;
    comboBox.dataProvider = ["one","two","three","four","five","six"]
    addChild(comboBox);