Hi Jason, maybe it's easiest to modify the _ImportObj.js file to always do "exact" mode and then it wouldn't matter how you were launching it.
To do that, edit the file _ImportObj.js in a text editor, then on line 10 there is currently this:
code:
if ( moi.command.getCommandLineParams() ==='exact' ) { moi.ui.commandUI.normalizeObj( false ) } else { moi.ui.commandUI.normalizeObj( true ) }
Delete that or comment it out by putting in a // at the front of it, and then have this instead:
code:
moi.ui.commandUI.normalizeObj( false );
- Michael
|