Jump to content

RvG

Member
  • Posts

    4
  • Joined

  • Last visited

Reputation

1 Neutral

Personal Information

  • Occupation
    Acoustic Consultant
  • Homepage
    www.klinktbeter.nl
  • Location
    Netherlands
  1. Thank you Pat, much appreciated. I got it working with the script below. With T=VIEWPORT I can get it to work for both section and regular viewports. Very nice, but for some weird way, the script isn't working on all sheet layers. The layer name reported back by AlrtDialog gives the correct name, but it's not working. Do you have any ideas/suggestions? PROCEDURE SelectViewport; VAR MyLayer : STRING; MyCriteria : STRING; BEGIN; MyLayer:= GetLName(ActLayer); MyCriteria:=Concat('(((L=', MyLayer, ') & (T=VIEWPORT)))'); AlrtDialog(MyCriteria); SelectObj(MyCriteria); END; Run(SelectViewport);
  2. Hi, I made a very simple Vectorscript to select all the viewports on a Sheet Layer called "Aanzichten" (see below). Is it possible change it to the currently visible Sheet Layer instead? PROCEDURE SelectViewport; BEGIN; SelectObj(INSYMBOL & INVIEWPORT & ((ST=SECTVIEWPORT) & (L='Aanzichten'))); END; Run(SelectViewport);
  3. Hi, is it possible to add key commands to Viewport context menu items? I would like to give some contact menu items a key command. So I can use them with Stream Deck for example. These are context menu items I'm talking about: - Edit Annotations - Edit Crop - Edit Section In-Place - Edit Camera I can't find these commands in the Workspace Editor. Is it possible with Vectorscript? Thanks
  4. Hi All, This is my first post on the forum and I wanted to ask you if the following idea is possible within Marionette. This is what I want it to do: From a given "source" within a given 2D poly, I want Marionette to generate simplfied "lightning rays" (in the form of a line object). Starting from the source, with a given angle and let it reflect (maximum 4 times) from the bounadries of the 2D poly. According to the law of reflection, the angle of incidence equals the angle of reflection (see picture). Is Marionette capable of such a task? If so, can you give me any starting point? Thanks in advance Roel
×
×
  • Create New...