i wrote an array.prototype function which added an unique
element, but then all the comboboxes behaved strange. i tracked the
problem down to this
Array.prototype.doesntmatter = function(element) {
for (var i in element) {
trace(i + ' ' + element
);
}
this.push('wuzaa'); // this adds extra lines on combobox
component. doesn't work with this[this.length] either
}
list1.addItem("?!");
, and add a combobox named list1. somehow, this function is
called whenever i click on the combo, (which add extra items) and
afterwards every time i hit a key. outputs things like this
then the author of the combobox also used an array function
name doesntmatter. to remedy change the name of your prototype
function or edit the combobox code or don't use the
combobox.