ninjapheret
08-24-2004, 08:33 PM
Hi guys,
I've had this posted three times in the AS forum here, but no luck there...if anyone could please council me with this I would be extremely grateful. This needs to be done before the 4th of September..
I've got a project wherein a ComboBox (called nameBox) has a list of people's names, and according data (their addreses). I have a dynamic textbox called "inscription" which should display the data of whatever value is currently selected in "nameBox".
Problem is my change handler doesn't work! It's a simple line in the change handler of the ComboBox:
inscription.text = theData;
with the following code on frame 1:
var theData = nameBox.selectedItem.data;
I had also tried putting the following line on the change handler with no luck:
inscription.text = this.selectedItem.data;
Why wouldn't such a simple thing work?
Again, I will really appreciate some help. If I can help you with anything let me know.
I've had this posted three times in the AS forum here, but no luck there...if anyone could please council me with this I would be extremely grateful. This needs to be done before the 4th of September..
I've got a project wherein a ComboBox (called nameBox) has a list of people's names, and according data (their addreses). I have a dynamic textbox called "inscription" which should display the data of whatever value is currently selected in "nameBox".
Problem is my change handler doesn't work! It's a simple line in the change handler of the ComboBox:
inscription.text = theData;
with the following code on frame 1:
var theData = nameBox.selectedItem.data;
I had also tried putting the following line on the change handler with no luck:
inscription.text = this.selectedItem.data;
Why wouldn't such a simple thing work?
Again, I will really appreciate some help. If I can help you with anything let me know.