Option Explicit 'Script written by Russell Loveridge ' this script demonstrates different ways to interact with the user, and how to open up a file. Call Main() Sub Main() Rhino.print "Select your basic Geometry file" ' This prints the text " Sele.... " to the command line. MsgBox "Select your basic Geometry file" ' This opens up a Message Box which displays the text " Sele.... ", and an OK button Rhino.Command "_-Import E:\test1.3dm", True ' This line invokes the IMPORT SCENE command so the user can choos the starting geometry and conditions for a file. End Sub