Jump to content

encore

Member
  • Posts

    7
  • Joined

  • Last visited

Everything posted by encore

  1. I have two machines with Vectorworks 2023 installed, Windows 10 with AD joined user account and a MacBook. The MacBook has a different user account name than the Windows machine as it is not AD joined. How can I make the MacBook request a license from the RLM license server with the necessary username? Only one machine will be in use at one time, and it seems to work if I create a new user account on the MacBook to match the Windows AD account name, but this solution will not work for my needs due to existing assets on the original MacBook user account.. Thanks
  2. Had trouble setting singular constraints.. Discovered the correct settings for vertically constrained objects are as follows: vs.MoveTo(0,0) vs.LineTo(0,100) h = vs.LNewObj() vs.SetSingularConstraint(4, h, 1, 2)
  3. Hello, I've been trying to get dimensions pulled to the right, as well as down, to have their text outside of the dimensions lines. I was able to achieve this by with a custom dim std. and assigning that with vs.SetDimStd(0), however I would like to control it programmatically with the script and not rely on having a custom dim std. present. I've tried the following with no luck: vs.LinearDim(previousPoint, point, offset, 1, 770, 3, 0) vs.LinearDim(previousPoint, point, offset, 1, 770, 1, -36) vs.LinearDim(previousPoint, point, - offset, 0, 770, 1, 0) vs.SetObjectVariableReal(vs.LNewObj(), 44, -36) vs.LinearDim(start, stop, offset, 0, 770, 1, 0) vs.SetObjectVariableInt(vs.LNewObj(), 52, 2) Any advice? What is the meaning of the bitwise text flag "Text inside-outside [ 2 ]" from Appendix E: LinearDim
  4. For whatever reason VW will not allow the reshape tool to modify a rectangle. You must Modify > Convert > Convert to Polygons, which then allows reshape to work. I am trying to implement this in an object node as either a network or custom node, and cannot get it to work. Neither the 'Convert to Polygon' or 'Convert to Polyline' nodes make a rectangle reshape-able as control geometry, and neither 'vs.ConvertoToPolyline()' or 'vs.ConvertToPolygon()' seems to work in a script. How can I automate the menu command 'Convert to Polygons' so that I can take a rectangle or other poly as a rehsape-able control geometry input?
  5. Stumbling on this too.. would be great if there was better documentation or a public reference.
  6. Found it in the user folder > Plug-ins > Marionette > Marionette.py
  7. I am looking for a python reference for the library used in programming marionette nodes. I realize that most of the user-space procedures are available as VectorScript functions [0] and accessible via python, but is there similar reference for marionette's python specific methods used in the processing of node instructions? [0](https://developer.vectorworks.net/index.php/Vectorscript_Available_for_Marionette)
×
×
  • Create New...