Flash Listbox Component
Flash Listbox Component
Out of context: Reply #5
- Started
- Last post
- 6 Responses
- unfittoprint0
Is it a MX2004 compiled comp? If not, you should try to find the loading event within it and target it.
And there may actually include a listener somewhere inside.
this may help.
myListener = new Object();
myListener.change = function(evt){
trace(evt.target.value);
}
myListBox.addEventListener("chan... myListener);