Jump to content

Call out tool and custom tool script/12.5


Recommended Posts

I don't use the call out tool because: I prefer to type notes on the drawing where I can see how much space they are taking up; I prefer to type notes first and leaders afterward; and, because I like to be able to easily reposition a note and change the location of the note in relation to the leader, which I find difficult with this tool. I see it as a stubborn tool, not one that conforms to the way I want to work.

So I continue to use the old leader line tool. But in 12.5 it doesn't quite work the way it used to. It seems to want to use the marker that is first in the list and it won't remember custom marker settings. I use a black dot that is smaller than the default. Instead of giving me a dot it gives me arrow heads. I can manually change those, but it did not formerly require extra steps.

So I created a custom tool attribute script which will give me a leader line as I wish it. Only problem is it is only good for one shot. I would like to be able to use it multiple times without selecting the tool each time. That is how tools normally work. So maybe I have something wrong in the script. Is that so? Here it is.

Thanks,

Donald

Procedure CustTool;

VAR

Name:STRING;

Result:BOOLEAN;

BEGIN

PushAttrs;

PenFore(255);

PenBack(0);

PenPat(2);

FillFore(255);

FillBack(0);

FillPat(0);

PenSize(6);

PenPat(2);

Marker(12, 0.07000, 15);

CallTool(-223);

PushAttrs;

END;

Run(CustTool);

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
Reply to this topic...

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