AutoCAD 2010/2011/2012 DWG Format
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Remove wipeouts
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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?
Solved! Go to Solution.
Re: Remove wipeouts
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Use combination Ctrl+H (or Pickstyle set to zero) then delete the wipeout.
Re: Remove wipeouts
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Perfect! Thank you.
Re: Remove wipeouts
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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 "")
)
Re: Remove wipeouts
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Lisp is good but for something not doing everyday like deleting wipeouts
Qselect, image, DELETE key wouldn't be that difficult.
Re: Remove wipeouts
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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.
Re: Remove wipeouts
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Re: Remove wipeouts
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
wlhorton... You wouldn't happen to be in the vegas area would ya? Lol...that's the routine I wrote (exactly).
"Very funny, Scotty. Now beam down my clothes."
Re: Remove wipeouts
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
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


