testing Rhino 6 automation i have found a new problem in this simple script:
Option Explicit
' Run the subroutine defined above
Call TestRhinoAutomation
Sub TestRhinoAutomation
Dim objRhino, objShell
Set objShell = WScript.CreateObject("WScript.Shell")
On Error Resume Next
Set objRhino = CreateObject("Rhino.Application.6")
objRhino.Visible = 1
If objRhino.IsInitialized Then
objRhino.RunScript "_Line",1
End If
End Sub
somebody can help me to understand where is the problem?