Jump to content

Editing Callouts


Recommended Posts

For the callout with the leader line extending under the text, the Bubble Style is currently set to ISO.  If you want that to go away, change the Bubble Style to None.

 

You can do this all in one go using the script below:

PROCEDURE RemoveISOBubble;

{Finds Callout object with Bubble Style ISO and reverts them to Bubble Style None}

PROCEDURE RemoveISO(h:HANDLE);

	BEGIN
		SetRField(h,'Callout','New Bubble Style V20','None');
		ResetObject(h);
	END;

BEGIN
	ForEachObject(RemoveISO,(INVIEWPORT & ((R IN ['Callout']) & ('Callout'.'New Bubble Style V20'='ISO'))));
END;

Run(RemoveISOBubble);

 

To get this working in your drawing, go the the Resource Manager, right-click and select New Resource - Script.  It will ask you name a Script Palette to put this in, which could be something like "Macros" or whatever you need.  Then name the script something like "Remove ISO Bubble Style" and copy and paste the code from above.  Make sure that VectorScript is the selected language and press OK.  This should populate into a small palette on the screen.  Double-click the script in the palette to run it.

  • Like 2
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...