Jump to content

"SpaceObjectCoreTools" or how to create A Space object ("Raum")


Recommended Posts

Hallo zusammen

ich versuche schon seit ein paar Tagen Raum Objekte mit dem python-script anzulegen aber klappt gar nicht .

Ich habe auf der Seite https://developer.vectorworks.net/index.php?title=Category:VS_Function_Reference:SpaceObjectCoreTools die Methods gefunden aber die mehr nicht in VS library mehr existieren.. Zum Beispiel:

vs.Space_CreateSpace

kann nicht gefunden werden

 

Gibt es eine neue Dokumentation dazu, oder gibts eine neue Methode? 🥹

 

 

Link to comment

I don't have any information on the Python version. I tried what you did and got the same error message. My guess is that the capitalization is different than shown in the Reference Manual.

 

The Vectorscript version does work, so the functionality exists.

 

Procedure Test;

VAR	H1: Handle;

BEGIN
	H1:=Space_CreateSpace(FSActLayer, 10');
End;

Run(Test);

 

Link to comment
36 minutes ago, Pat Stanford said:

I don't have any information on the Python version. I tried what you did and got the same error message. My guess is that the capitalization is different than shown in the Reference Manual.

 

The Vectorscript version does work, so the functionality exists.

 

Procedure Test;

VAR	H1: Handle;

BEGIN
	H1:=Space_CreateSpace(FSActLayer, 10');
End;

Run(Test);

 

Thank You! Which version of VectorWorks do you have then? I also tryed just few funktions and there was no result.

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...