CustomUI

 From:  chippwalters
6507.221 
Hi Everyone,

Hope this helps any of those Mac Users who want to create a CUSTOM folder (say a Dropbox folder) for their Object Library files. I do this so that I only need to keep one folder on Dropbox and all the library files automatically show up both at work and at home.

You'll need to find the file: ObjLibrary.cfg.htm in the mods folder and edit it from:
Object Library;MOI\objects
to: (use the accurate path to your file. See HERE for how to properly find the file path on MacOS.)
Object Library;/Users/chippwalters/Dropbox/Moi/ObjectsDONTMOVE

NOTE the slashes are going the opposite way!
Next, you’ll need to change ObjLibrary.menu.htm. Search for this code:
code:
if ( moi.filesystem.fileExists (iconname) ) { document.write ('<div class="preview"><img class="icon" src="'+ iconname.split("\\").join('/') +'?'+randomID+'"></div>'); }

and replace with this code (note inclusion of 'file:///z:')
code:
if ( moi.filesystem.fileExists (iconname) ) { document.write ('<div class="preview"><img class="icon" src="file:///z:'+ iconname.split("\\").join('/') +'?'+randomID+'"></div>'); }

Now you should be good to go! :-)