Component wizard = trace("help");

i am a bit stumped as to how i can update the items of a dropdown list.
in theory this should be working but will only assign [COLOR=darkred][board_styles][/COLOR] once
Something like an upDateAfterEvent for set components?

[COLOR=sienna]THIS IS THE METHOD[/COLOR]


 
function comboDisplay5(component) {
 Stylez_Var = component.getSelectedItem().label ;
}
Stylez.setChangeHandler ("comboDisplay5") ;

[COLOR=sienna]AND THIS IS THE EVENT TO CHANGE THE LIST ITEMS[/COLOR]

 mal.onPress = function(){
trace(radio);
board_styles= new Array ("mal1", "mal2", "mal4");
for (i=0;i<board_styles.length;i++) {
 Stylez.addItem (board_styles*) ;
}
}
mar.onPress = function(){
trace(radio);
board_styles= new Array ("mar1", "mar2", "mar4");
for (i=0;i<board_styles.length;i++) {
 Stylez.addItem (board_styles*) ;
}
}

[COLOR=black]I have re-gigged lots but still do not get the prefered result. I would love a hand if anyone knows offfhand…[/COLOR]

these mar and mal can be in a radio group…

Hope this makes some sense…

cheers