Jump to content

ashot

Member
  • Posts

    156
  • Joined

  • Last visited

Reputation

43 Great

1 Follower

Personal Information

  • Occupation
    Structural and Civil Engineering
  • Homepage
    ashot.me
  • Location
    United States

Recent Profile Visitors

3,977 profile views
  1. in file AARON'S TITLE BLOCK AND ADA SHEETS V2026 v2025.vwx on sheet G-1 select SYMBOL "Details Sheet 1" and Modify>Scale Object (make sure Scale Text is checked) to something from 1/1 to 1/48. Or even easier use Symbol > Object Info Palette > Scaling Symmetric > Factor: e.g. 0.0833 to fit into 24x36 sheet border
  2. I do not have permission to see the content of the thread shared by Patrick 😒
  3. in VW2025 i found a solution for VP filters Shift-Return works Shift-Enter does not work
  4. I changed the Workspaces to defaults in VW 2025 - nothing helps to remedy VP filters. I created new fresh file in VW 2025 - I got no results, the same problem. However, after I opened the very same fresh file in VW 2026 it worked for VP filters as designed. Go figure out.
  5. I just tired in Navigation Palettes, and yes, you are right, it works only after I hit Enter. But still it does not work for Viewports, it closes the window after I hit the same Enter. Can you confirm that it wroks for you when you hit Enter, does not matter which one on keyboard.
  6. No, if I enter search filter in Navigation I do not need to hit enter, it does it dynamically. If I hit Enter it closes the window. When I try the same for Viewports, the filter does not populate automatically, and if hit enter the window closes as it does in previous example.
  7. Does anyone know why we can NOT use Search/Filter for layers or classes in Viewport Layer or Class Properties? It works for Navigation Palette, but not for Viewports.
  8. Please check attached VW file in 2025 format. I hope this will solve the problem for 3d Poly with many-many vertices mimicking circle. How convert 3D Poly to Stakes.vwx
  9. Great, the problem solved for each Viewport I have a control, easy, thank you. I have 8 lights (4 pairs) in all directions for this
  10. Thank you Michael, You shared with me 8 Fake lights, in the same Layer but each with different classes. I use them In some Viewports and often I need to change the color of Directional lights to get better coloring results. I can do it manually for each of 8 lights, but thinking to check what color was alreardy assigned and be able to change it with script, WS or Marionette.
  11. PROCEDURE ChangeDirectionalLightColor; VAR hLight: HANDLE; lightType, brightness: INTEGER; isOn, castShadow: BOOLEAN; newRed, newGreen, newBlue: REAL; BEGIN hLight := FSActLayer; // Get the handle of the currently selected object IF (hLight <> NIL) AND (GetObjectType(hLight) = 77) THEN // Check if it's a light object (type 77) BEGIN GetLightInfo(hLight, lightType, brightness, isOn, castShadow); IF lightType = 1 THEN // Check if it's a directional light (type 1) BEGIN // Define your desired RGB color (values from 0.0 to 1.0) newRed := 1.0; // Red newGreen := 0.0; // Green newBlue := 0.0; // Blue // Set the color using object variables (specific variable indices for color may vary) SetObjectVariableReal(hLight, 51, newRed); // Example: Variable 51 might be for Red SetObjectVariableReal(hLight, 52, newGreen); // Example: Variable 52 might be for Green SetObjectVariableReal(hLight, 53, newBlue); // Example: Variable 53 might be for Blue ResetObject(hLight); // Update the object to show changes Message('Directional light color changed to red.'); END ELSE BEGIN Message('Selected object is not a directional light.'); END; END ELSE BEGIN Message('No light object selected.'); END; END; Run(ChangeDirectionalLightColor);
  12. Is there a way to change the color of directional light via Script / Worksheet / Marionette ? @Pat Stanford @michaelk @Sam Jones Attached is OIP parameter: Color Also AI generated Script with Errors. Please Help, thank you in advance.
  13. How about Infographics for different styles to use in Vectorworks. Here is 8 years old VW teaser. Also Check this website https://flourish.studio , please scroll down to see all kind of charts.
  14. attached is my first Wrapper to get WS List Create Pie Chart notes Ashot Trimmed.vwx
  15. Please see attached VW File with all my questions about Worksheet Database Dynamic List to be used in Pie Chart Create Pie Chart notes Ashot Trimmed.vwx
×
×
  • Create New...