Jump to content
  • 0

Draw continuous line segments option


LarryAZ

Question

4 answers to this question

Recommended Posts

  • 0

What I want is to just be able to use the line tool and draw two segments with three clicks, just like I do now with the wall tool. Right now I am still suprized everytime when I click on that third click and start drawing a new line instead of finishing drawing the second segment.

Link to comment
  • 0

Larry,

Try this:

In the Vectorscript Plug-in Editor, create a new Tool Plug-in named "Multiple Line Draw", open the Vectorscript Editor, and copy the following code into it...

procedure DrawMultipleLines;

begin

CallTool(-204);

DoMenuTextByName('Convert To Lines', 0);

end;

Run(DrawMultipleLines);

Then add this Tool to one of your palettes with the Workspace Editor.

The code above simply calls the Polyline tool, and when you are done creating the polyline segments, it converts them to lines.

Cheers,

-Rick Francken

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
Answer this question...

×   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...