Object Enabler problem

Discussion in 'AutoCAD' started by Tiss, Oct 16, 2004.

  1. Tiss

    Tiss Guest

    I have set Autocad to search for object enableres.

    I have a drawing that uses alot of xrefs, which all have an error in that they cant find the object enabler for "CyPointSetPlugIn"

    I am pretty sure I can delete what everobjects this enabler has produced.

    But how ?

    How do I get rid of this problem / these objects.

    I've done a google for a tool, but cant find anything.

    Can anyone help ?

    Regards



    Tiss
     
    Tiss, Oct 16, 2004
    #1
  2. Use quickselect to get all the proxy objects? or the following:

    (ssget "X" '((0 . "ACAD_PROXY_ENTITY")))

    this will get all the proxy entities in the drawing. so you can delete them
    (as you stated below <I am pretty sure I can delete what everobjects this
    enabler has produced.>)

    The following routine(s) wil erase proxy entities in a drawing.

    ;
    Code:
    (defun erasess (sset / COUNT)
    (setq count 0)
    (repeat (sslength sset)
    (command "erase" (ssname sset count) "")
    (setq count (+ 1 count))
    )
    )
    (defun C:expro ()
    (SETQ proxyset (ssget "X" '((0 . "ACAD_PROXY_ENTITY"))))
    (IF PROXYSET (erasess proxyset)(alert "There are no Proxy Entities in this
    drawing"))
    (princ)
    ) ;defun
    (princ)
    ;[code]
    
    
    Casey
    
    
    I have set Autocad to search for object enableres.
    
    I have a drawing that uses alot of xrefs, which all have an error in that
    they cant find the object enabler for "CyPointSetPlugIn"
    
    I am pretty sure I can delete what everobjects this enabler has produced.
    
    But how ?
    
    How do I get rid of this problem / these objects.
    
    I've done a google for a tool, but cant find anything.
    
    Can anyone help ?
    
    Regards
    
    
    
    Tiss
     
    Casey Roberts, Oct 19, 2004
    #2
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.