TheSwamp

Code Red => AutoLISP (Vanilla / Visual) => Topic started by: CAB on January 06, 2016, 08:04:40 AM

Title: Help to remove a proxy object
Post by: CAB on January 06, 2016, 08:04:40 AM
Normally I can overcome these problems but this one has me stumped.
Maybe because I am still using ACAD2006.
This DWG has an object that stops it from copy/paste operations.
I tried to save back to ACAD 14 but there is a hatch or something that persist.
If I have to I can ask the survey company to save back to 14 or something to remove the object but I wanted a solution I could use in the future.

Thanks in advance.
Title: Re: Help to remove a proxy object
Post by: ronjonp on January 06, 2016, 09:01:28 AM
Here you go :)


This seemed to work for me:
Code - Auto/Visual Lisp: [Select]
  1. (defun c:byebye nil
  2.     (if (= "AcDbZombieEntity" (vla-get-objectname o))
  3.       (vla-delete o)
  4.     )
  5.     (vlax-for o2 o
  6.       (if (= "AcDbZombieEntity" (vla-get-objectname o2))
  7.         (vla-delete o2)
  8.       )
  9.     )
  10.   )
  11.   (princ)
  12. )
Title: Re: Help to remove a proxy object
Post by: CAB on January 06, 2016, 10:19:09 AM
Ron,
How nice, a late Christmas present.  :smitten:

You made my day.

Thanks
Title: Re: Help to remove a proxy object
Post by: ronjonp on January 06, 2016, 10:25:58 AM
Ron,
How nice, a late Christmas present.  :smitten:

You made my day.

Thanks
Glad to help out :) .. BTW, I use your plottabs routine almost daily  8)
Title: Re: Help to remove a proxy object
Post by: CAB on January 06, 2016, 11:01:49 AM
Yes I use plottabs daily, saves a lot of time on this plans with lots of tabs. :)

Thanks again.
Title: Re: Help to remove a proxy object
Post by: ur_naz on January 07, 2016, 07:16:51 AM
This should also help to explode or remove proxies
http://www.maestrogroup.com.ua/support/ExplodeProxy.zip
Title: Re: Help to remove a proxy object
Post by: CAB on January 07, 2016, 09:48:38 AM
Thanks for the offering but I can not translate the Help File.

What language is it?
Title: Re: Help to remove a proxy object
Post by: HasanCAD on January 07, 2016, 11:07:56 AM
Thanks for the offering but I can not translate the Help File.

What language is it?
I believe it is Russian.
Title: Re: Help to remove a proxy object
Post by: VovKa on January 07, 2016, 06:11:53 PM
Thanks for the offering but I can not translate the Help File.

What language is it?

The author is a theswamp member
http://www.theswamp.org/index.php?action=profile;u=955
You can ask all your questions in person


Title: Re: Help to remove a proxy object
Post by: gile on January 08, 2016, 03:59:19 AM
Hi,

As replies aren't strictly related to LISP, I'd also suggest ZombieKiller available on Exchange Apps (https://apps.autodesk.com/ACD/en/Detail/Index?id=appstore.exchange.autodesk.com%3azombiekiller_windows32and64%3aen).
Title: Re: Help to remove a proxy object
Post by: CAB on January 08, 2016, 08:14:06 AM
I attempted it earlier in my search but did bot seem to work in ACAD2006
Ran the msi then opened ACAD

Command: FINDZOMBIES
Unknown command "FINDZOMBIES".  Press F1 for help.
Title: Re: Help to remove a proxy object
Post by: CAB on January 08, 2016, 08:20:44 AM
Still having problems with this DWG.
Title: Re: Help to remove a proxy object
Post by: Lee Mac on January 08, 2016, 08:43:28 AM
I attempted it earlier in my search but did bot seem to work in ACAD2006
Ran the msi then opened ACAD

Command: FINDZOMBIES
Unknown command "FINDZOMBIES".  Press F1 for help.

All Autodesk Exchange Store apps are only compatible with AutoCAD 2012 onwards (not necessarily a restriction of the program itself, but a restriction of the Autodesk installer) - the compatibility is listed in the right-hand column.
Title: Re: Help to remove a proxy object
Post by: ronjonp on January 08, 2016, 09:35:42 AM
Still having problems with this DWG.
Is this better?
Title: Re: Help to remove a proxy object
Post by: CAB on January 08, 2016, 09:48:14 AM
Yes, that fixed it Ron.  8)

Thanks