Flash Listbox Component
- Started
- Last post
- 6 Responses
- pushme
Question: Is it possible to make the listbox component invisible while displaying the data that its pulling? My listbox instance = _root.newsfeed
- unfittoprint0
use the _visible=false parameter, a listener or some trigger to its onLoad event to tell u when the data pulling is finished.
- pushme0
_visible=false doesn't make it invisible but does invoke the scrollbar
- pushme0
bump*
- pushme0
_visible=false worked but I can't figure out how to have it display the date. I tried the eventListener optino but am not familiar w/ that and imagine I'm not using it right.
- 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);
- pushme0
Yep. MX 2004 Pro
Thx. I'll give that a shot.