Custom UI by Max issue with Mac remote path

 From:  chippwalters
7054.3 

Yup!


That's the ticket. So for the record,, to get this to work on Macs with custom paths, one would need to change in ObjLibrary.menu.htm (in drive_c/moi/ui/customui/mods/) the following line:
code:
if ( moi.filesystem.fileExists (iconname) ) { document.write ('<div class="preview"><img class="icon" src="'+ iconname.split("\\").join('/') +'?'+randomID+'"></div>'); }

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

(note the addition of "file:///z")