Sub Location
On Error Resume Next
Dim strFileSize
strFileSize = FileName
End Sub
Function FileName
Dim strPath
Dim CopyPaste
StrPath = Rhino.DocumentPath & Rhino.DocumentName
CopyPaste = MsgBox("Would you text of the file location?", vbYesNo)
If CopyPaste = vbYes Then
'Trying to copy and paste strPath into textbox and put directly into Rhino. Cannot find a way.
'Rhino.TextOut strPath Optional
Else
End If
This is the script I am attempting to make. I have to take strPath and make a text box in rhino with the contents of strPath. I just can’t seem to do it. Could anyone tell me what i’m missing here? I’ve looked for the syntax for Rhino and i just can’t find it.
im not sure what are you trying.
you have multiple options to output:
Rhino.StringBox ([strMessage [, strString [, strTitle]]])
rhino.print strMessage
etc
I do apologies for that. I’ve tried it multiple ways!
I’m just trying to get the documentpath and documentname in text in Rhino. So my initial thought was to copy and paste like this but cannot find a way to open a -text or _text with rhino.command to paste the data.
Option Explicit
Sub Location
On Error Resume Next
Dim strFileSize
strFileSize = FileName
End Sub
Function FileName
Dim strPath
Dim CopyPaste
StrPath = Rhino.DocumentPath & Rhino.DocumentName
CopyPaste = MsgBox("Would you like the file location?", vbYesNo)
If CopyPaste = vbYes Then
Call Rhino.ClipboardText (strPath)
Else
End If
WIth your help i was able to get this basic set working! Now i just have to add a fail safe in case the file isn’t actually saved. Some error codes. And i’ll be done! Basic codes works as follows:
Option Explicit
Sub Location
On Error Resume Next
Dim strFileSize
strFileSize = FileName
End Sub
Function FileName
Dim strPath, CopyPaste, arrPoint
StrPath = Rhino.DocumentPath & Rhino.DocumentName
CopyPaste = MsgBox("Continue With Filename?", vbYesNo)
arrPoint = Rhino.GetPoint ("Pick Insertion Point")
If CopyPaste = vbYes Then
IsArray(arrPoint)
Rhino.AddText strPath, arrPoint
End If
Only if it’s saved @pascal. STP files by default are not linked to their source file. And if i force them to save, they tend to give them undesirable names vs job numbers.
Hi Joseph - can you incorporate the opening of the file into the script, or possibly a different one and you can add the path as document data that the current script can grab.