Open with Rhino V4

This script opens the current file from Rhino V3 with Rhino V4.

Note: If you have Rhinoceros 4.0 installed in a different location then you'll have to change the path assigned to the variable "strRhino4".

The following script is ready to be pasted into a button.

 

 

 

 

! -_RunScript (
Sub OpenWithV4
'© 2005 Jess Maertterer
Dim strRhino4, strExec, WshShell

strRhino4 =  "C:\Program Files\Rhinoceros 4.0 Beta\System\Rhino4.exe"

strExec = strRhino4 & chr(32) & chr(34) & Rhino.DocumentPath & Rhino.DocumentName & chr(34)
Set WshShell = CreateObject("WScript.Shell")
WshShell.Exec(strExec)

End Sub
OpenWithV4
)

© 3DE < ^ >