ui code

 From:  Michael Gibson
3768.2 In reply to 3768.1 
Hi Burr, so all those tree portions of the scene browser are done internally - the scene browser itself is its own control and it puts all those tree things inside of it, with its own code.

The control itself is placed by this tag here:




If you wanted to add something below the scene browser tree stuff, you could put your stuff directly after that <moi:SceneBrowser/> tag (instead of in a whole separate PaletteBody container), like this:



That will look like this:



A lot of the Scene Browser stuff is populated dynamically according to what you have in the model anyway, like for example the Objects section gets filled up with entries for every named object in the model. So it would not really work for the scene browser to just be some static HTML only, it has to be filled in dynamically with stuff and so the whole scene browser including the top tree stuff is also filled in that way as well.

Does that help explain what you are seeing?

- Michael