thanks for all your help today guys

last question (for today :D  )

i've loaded an array (including a starting value) into a combo box that was made using createClassObject in actionscript and it works fine (drop down has the full list of values, including the starting one) except that nothing ever appears in the 'up' state.

var comboInit:Object = new Object();
var sizes:Array = [{thisSize: "choose one"}];
for (var i:Number = 0; i < productArray[product].sizes.length; i++) {
    sizes.push ({thisSize:productArray[product].sizes[i]});
}
comboInit._y = 450;
comboInit._x = 500;
comboInit.dataProvider = sizes;
comboInit.labelField = "thisSize";
createClassObject(ComboBox, "variationCombo", 5004, comboInit);

did i not do something correctly?

hope you can help
a
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to