Jump to content
Developer Wiki and Function Reference Links ×

Adding Extrude Along Path Solids Issue


David O

Recommended Posts

Hello everyone !

DId anyone here already experienced problems trying to add extrude along path solid with anything else inside VectorScript ?

 

If i create an Extrude Along Path solid (via  createcustomobjectpath('Extrude Along Path', hpath, profile); and then try to add the resulted solid with anything else (say, spheres...)

using DoMenuTextbyName('Solid Operations',1); or with AddSolid() ... it doesn;t work ...

The weird thing is that if i try to get the resulted solids from the script and run the AddSolid command manually over them it works perfectly ...

 

Did someone here already faced this situation and came up with any turnaround ?

Thanks !

Link to comment

Two potential issues, both arising out of the fact that the script generating the EAP doesn't actually execute until after your script finishes, so using a menu command will look for selected objects, and that the time you call the menu, the object doesn't exist yet.

 

In general, avoid DoMenuText in favor of vs commands that accept handles.  Using AddSolid() should work better for you: http://developer.vectorworks.net/index.php/VS:AddSolid

 

A solid addition is essentially a container, so you should be fine invoking the add command before it has had a chance to regenerate.  If you need to do something with or get information about the resulting solid addition, you can try SetObjectVariable( hExtrude, 1167, true); (ovParametricImmediateReset), which will force an SDK-based PIO to regenerate immediately before continuing on with the script.

  • Like 1
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...