klinzey
-
Posts
2,796 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Articles
Marionette
Store
Posts posted by klinzey
-
-
For more information see:
-
Once you use a symbol it should appear in the resource manager of your active document.
Also, when the dialog opens you should be able to navigate and select a symbol from the active document or one of the other folders.
You should be able to create and use any hybrid symbol.
If you are in a blank document we offer you some default choices. -
You are not doing anything wrong. We are likely only searching for files in the application folder as these are not native Vectorworks files.
-
No. Export Instrument Data does not allow control over the order the fields are exported.
The order shown in the list any not even be the order of the fields in the exported file. -
@Cristiano Alves I am not seeing any issues in 2025 when copying an array to a new file. Here is a quick test.
This is a known issue with Vectorworks 2024 and prior but it has been fixed in 2025.
I did not try it with the KARA speakers but the symbol used should not make a difference.
-
Do you know where the student obtained the Vectorworks license?
You can reach out to the global support team and they will be able to assist you.
https://www.vectorworks.net/en-US/company/contacts
-
Uninstall is now done via the Vectorworks Install Manager located in the Vectorworks Application folder.
Once launched, from the hamburger menu in the upper right hand corner you can choose uninstall, but you might try the repair option first. -
Please contact your local distributor tech support for assistance.
The student version issued by the distributor has a restriction that does not allow it to be opened by a professional version. -
If you are using the Lightwright data exchange make sure your file is saved and that the file name and file path do not contain any reserved characters such as a /,\, etc.
-
Yes, it required the object to be event enabled and in the kObjOnInitXPropertiesSetObjPropVS event:
kObjOnInitXPropertiesSetObjPropVS( kObjXIs2DSurfaceEligable {= 14} , TRUE); { Weiler operations operate on 2D path }
You can take a look here for more information on setting up your plug-in to be event enabled. -
You can move the labels so they don't overlap but other than that not really, It's the nature of 3D text.
You can apply a data tag to each lighting device. This would allow you to better control the location in 3D to place the tag in front of the light.
-
1
-
-
I took a look at your file and I don't see any label legends in the document?
I made one quickly to test and I think the issue will be clear when you look at the drawing in an isometric view.
In 3D you can't manually control the stacking order, the stacking order is determined by the location in 3D space.
Text is place on a 3D plane based on the origin of the lighting device so it will be behind the body of the other lights.
-
The serial number that starts with "VISION" is for Vision, not Vectorworks.
I will ask our Academic specialist reach out to you about the Sheer ID issue. -
Is it the entire screen or just the Vectorworks Window?
-
The worksheet name is not modifiable. It is the internal name used by Vectorworks.
Once the field is created that name needs to be maintained.
What I would do is create the new field.
Use Spotlight Find and Modify to copy the data from the old field to the new field.
Delete the old field.
It should be a quick operation but requires a few steps.
-
Showcase is unlimited (256 universes) for everyone. There is no additional restrictions for educational licenses.
Showcase does not currently support animated fog. -
For Vectorworks we consider these 2 separate items as they would be counted as 2 separate items when counting and ordering inventory.
If the entire document would use black or silver truss and you just care about the look, you can use class attributes to globally change the color and texture of the truss. -
Yes, I ran into the same issue.
It's not documented but try using {$IFX ...} rather than {$IF ...}
It was implemented for 2025 but I don't know if it was ever fully tested.
Additionally, {$IFX ...} would not function in older versions so it probably would not help in your case because 2024 and prior would not understand the {$IFX ...} directive.
You can try conditionally include functions with matching parameters.
I can't remember if this worked or not when I tried it years ago. The functions do nothing but would allow the compiler to resolve the names but because of the if statement would never be accessed. -
@Arleta PDF editing is restricted in the student version to prevent the removal of the educational watermark. Opening the PDF for editing is not permitted, but you should be able to combine the PDF into another document. Indesign is likely trying to open the PDF for editing.
I'm not sure why you are having issues exporting to DWG, Exporting to DWG is allowed in the student version. -
I gave the script a quick look and it looks like you are storing the path in the dialog control and no where else?
In your Dialog_Handler procedure you need to react to the events that happen in the dialog.
https://github.com/Vectorworks/developer-scripting/blob/main/VectorScript/pages/Creating a Custom Dialog Box.md#handling-dialog-box-events
In your case when the user clicks the OK button you need to get the values you stored in the dialog and save them somewhere.
The values in the dialog are only available while the dialog is open.
You can either assign then the a variable in the scope of the main object and/or the paths as parameters of the plugin object.
If you store the values as parameters of the plugin object they will be available the next time the object is reset.
https://github.com/Vectorworks/developer-scripting/blob/main/VectorScript/pages/Plug-in Parameter Types.md
If you want to have the object reset automatically when moved you will need to enable the property in the plugin editor for the script.
https://github.com/Vectorworks/developer-scripting/blob/main/VectorScript/pages/Object Events.md#enable-script-specified-events-
1
-
-
@BillW That parameter type is a little deceiving, it's only used to store the Material value, you need to use other mechanisms, such as a dialog, to set/get the value.
The same thing applies to the other types like Symbol Definition etc.
These parameters are usually hidden in the OIP and managed by the plug-in.
These types are used to make sure the Material, Symbol, and other resource types, do not get purged, will be copied to a new document, follow name changes tracked, etc.
For Materials you will usually use this if your object needs to support more than 1 Material.
If you simply want your object to support Materials like the Rectangle, you need to enable the extended property in the script.
...
kObjXPropSupportBuildingMaterialInOIP = 86;
...
vsoGetEventInfo(theEvent, theButton);
CASE theEvent OF
kObjOnInitXProperties:
BEGIN
bool := SetObjPropVS(kObjXPropSupportBuildingMaterialInOIP, TRUE );
...
(I haven't tested this portion but that is how it should work.) -
9 hours ago, LMorga said:
There is no way to adjust the internal or user z origin.
@LMorga is correct but there was a bug there moving the XY origin would effect the how the Trim Height is reported.
Your method of copy and pasting into a new file likely fixed the problem because the user origin was not moved in the new file.-
1
-
-
Have you moved the user origin?
Are you using the latest service pack? -
Correct. Save just saves the current settings, it does not close the window. You still need to click on OK to exit the dialog.

Adding mode bar Buttons
in Vectorscript
Posted
See: