I'm sorry, but that was an annoying answer.
From your video (and fixed to allow you to run it and THEN select objects) without wasting someone's time scrubbing for a simple answer:

 

 

;RemoveMapText
(defun c:RMT (/ ss)
  (setq ss (ssget))
  (RemoveMapText ss 127)
)

 


Change the 127 variable to whatever combination of  object text you want to remove. The values to sum can be found in the Fabrication help file here: https://help.autodesk.com/view/FABRICATION/ENU/?guid=GUID-2E0B4DC9-66FD-42B6-8301-B1DF416619E7
or:

Flag is a bitwise number that indicates the text to work on; for example:

1 = Item Number

2 = Size

4 = Elevation Text

8 = Alias Text

16 = Set Information

32 = Length Dimension

64 = Custom Report Text


It works the same as OSMODE, so if you only want to remove item number and size, you would set the variable to 3. 127 is the sum of all and removes all map text.

Tags (1)