I actually stuck a placeholder on to the empty array and now everything seems to be working out ok, thanks for the help guys!
Thank You Dan Vega [email protected] http://www.danvega.org On Sat, Dec 20, 2008 at 4:29 PM, Dan Vega <[email protected]> wrote: > Same result .. > > private function listDirectories(event:ResultEvent):void { > var dirs:Array = event.result as Array; > > // if the _directories array is null this is our root > request > if(_directories == null) { > _directories = dirs; > }else { > hold.children = dirs; > } > //trace( ObjectUtil.toString(_directories) ); > (tree.dataProvider as ArrayCollection).dispatchEvent(new > CollectionEvent(CollectionEvent.COLLECTION_CHANGE)); > } > >

