CustomUI

 From:  Michael Gibson
6507.469 In reply to 6507.468 
Hi Psygorn, well the scene browser pane comes from the file BrowserPane.htm so that's one file that you would need to edit.

The place they are going into on the bottom is in CommandBar.htm . So first step is go into CommandBar.htm and find the spot where they are being inserted into. Set up a similar spot in BrowserPane.htm and then edit the CustomUi scripts so they're inserting into the browser pane instead of into the command bar.

The CustomUI scripts are located in your appdata\Moi\startup folder. If you look inside them you'll see something like this in each one:

code:
moi.ui.commandBar.CommandBarCustomUI.insertAdjacentHTML( ...


You'll need to change that to something like:

code:
moi.ui.getUIPanel( 'moi://ui/BrowserPane.htm' ).CommandBarCustomUI.insertAdjacentHTML( ...


- Michael