How to open any folder with a new created button by Moi3D?

 From:  Michael Gibson
8590.2 In reply to 8590.1 
Hi Franz, the script for opening the snapshots folder would be like this:

moi.filesystem.shellExecute( moi.filesystem.getProcessDir() + 'snapshots' );

That could go in the onclick="" handler on a button or also set up a shortcut key with this as the command for the shortcut key:

script: /* Open snapshots folder */ moi.filesystem.shellExecute( moi.filesystem.getProcessDir() + 'snapshots' );

- Michael