Copy-paste from Rhino 7 to MoI3d

 From:  Michael Gibson
9890.18 In reply to 9890.17 
Hi renklint, I've attached the helper app here. Unzip it and save it somewhere.

Then you'll need to modify the Ctrl+V shortcut key in MoI to run the helper app before doing the paste.

To do that go to Options > Shortcut Keys and for the Ctrl+V key that currently has "Paste" for its Command value, instead put in this:

script: moi.filesystem.shellExecute( 'c:\\path\\UpdateRhinoClipboard.exe', 'target=moi', true /*wait for finish*/ ); moi.command.execCommand( 'paste' );

You'll need to update the c:\\path\\ to the path where you saved it, and also note that instead of just one \ character you need 2 of them like \\ because a single \ is an escape character in JavaScript.

Any luck with Ctrl+V working from Rhino 7 to Moi with that in place?

- Michael

UPDATE - Mac version is here:
http://moi3d.com/forum/index.php?webtag=MOI&msg=9890.35

Rhino script for going the reverse direction here:
http://moi3d.com/forum/index.php?webtag=MOI&msg=9890.40

EDITED: 20 Apr 2022 by MICHAEL GIBSON