• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • AutoCAD 2010/2011/2012 DWG Format

    Reply
    Distinguished Contributor
    Posts: 115
    Registered: ‎11-13-2006
    Accepted Solution

    Remove wipeouts

    460 Views, 8 Replies
    12-19-2012 08:08 AM

    Is there an easy way to remove all the wipeouts in a drawing without deleting the entities they are attached to?

    I have hundreds in some drawings, so I am trying to do a mass editing through lisp, but it won't remove just the wipeout, the text grouped with it gets deleted too. Any ideas?

    Please use plain text.
    Valued Contributor
    Posts: 99
    Registered: ‎12-04-2012

    Re: Remove wipeouts

    12-19-2012 08:39 AM in reply to: cjneper

    Use combination Ctrl+H (or Pickstyle set to zero) then delete the wipeout.

     

    Please use plain text.
    Distinguished Contributor
    Posts: 115
    Registered: ‎11-13-2006

    Re: Remove wipeouts

    12-19-2012 08:52 AM in reply to: cjneper

    Perfect!  Thank you.

    Please use plain text.
    Member
    whorton-DK
    Posts: 4
    Registered: ‎08-26-2011

    Re: Remove wipeouts

    12-19-2012 10:19 AM in reply to: cjneper

    Here is a small lisp routine I picked up somewhere which removes wipeouts

     

    (defun c:gowipe (/ b)
     (setvar "pickstyle" 0)
     (setq b (ssget "x" '((0 . "wipeout"))))
     (command "._erase" b "")
    )

    Please use plain text.
    Valued Contributor
    Posts: 99
    Registered: ‎12-04-2012

    Re: Remove wipeouts

    12-19-2012 12:50 PM in reply to: whorton-DK

     

    Lisp is good but for something not doing everyday like deleting wipeouts

    Qselect, image, DELETE key wouldn't be that difficult.

    Please use plain text.
    Valued Contributor
    Posts: 77
    Registered: ‎11-13-2008

    Re: Remove wipeouts

    12-20-2012 01:35 PM in reply to: cjneper

     

    qselect.JPG

    As easy as using the QSELECT command see image above and hitting the delete key after hitting ok on that dialog box. However if the wipeouts are embedded in blocks they won't be erased.

     

     

     

     

    Please use plain text.
    *Expert Elite*
    pendean
    Posts: 14,896
    Registered: ‎11-06-2003

    Re: Remove wipeouts

    12-20-2012 01:56 PM in reply to: Dave_S

    Let' count the ways....

     

    SELECTSIMILAR, found in a right-click or typed: simplest of them all. Everyone forget?


    Dean Saadallah LT BLOG | RSS Feed | LT Tips | PINS
    Please use plain text.
    Valued Contributor
    bcinnv
    Posts: 101
    Registered: ‎03-05-2011

    Re: Remove wipeouts

    03-04-2013 02:21 AM in reply to: cjneper

    wlhorton... You wouldn't happen to be in the vegas area would ya? Lol...that's the routine I wrote (exactly).

    - Brian
    "Very funny, Scotty. Now beam down my clothes."
    Please use plain text.
    Distinguished Contributor
    greg.battin
    Posts: 122
    Registered: ‎12-10-2010

    Re: Remove wipeouts

    03-05-2013 07:48 AM in reply to: cjneper

    I just thought that I'd add one more tip in case someone can't select a wipeout to delete:

     

    Use TRFRAMES in the command line.

    This is a Toggle which means that simply running the command will either tuen it on or off. This toggle allows you to select Wipeout frames to be erased.

     

    Also shown [HERE]

     

    ~Greg

    Please use plain text.