I have a combobox with an event listener that looks like this:
doSomething = new Object();
doSomething.change = function() {
trace("working");
};
combobox_cb.addEventListener("change", doSomething);
This works fine, but with one problem. If the user clicks the same one that it is already on nothing happens. I tried to change it from “change” to “click” but it didn’t work.
Posted 6 months ago













