AcDbRegAppTableRecord: "ams_akf_scale"

Discussion in 'AutoCAD' started by todbarrett, Sep 30, 2004.

  1. todbarrett

    todbarrett Guest

    Hello to all,
    I'm experiencing these types of error messages on several drawings. Using ADT3.3.

    DXF Name Current Value Validation Default
    AcDbRegAppTableRecord: "ams_akf_scale"
    XData format Problem Fix or remove



    DXF Name Current Value Validation Default
    AcDbBlockReference(C42) BTR Id invalid create new
    AcDbBlockReference(3389) BTR Id invalid create new
    AcDbBlockReference(96FF) BTR Id invalid create new
    AcDbBlockReference(9B15) BTR Id invalid create new

    We have no 3rd party apps loaded, but receive files from many architects. I would be grateful if anyone can tell me how to get rid of these error messages.

    I also posted this message in the AutoCAD 2002 group

    Thank you,
    Tod
     
    todbarrett, Sep 30, 2004
    #1
  2. todbarrett

    John Uhden Guest

    I've seen this with "ams_time" and "ams_pause". I'd wager that that there is an
    appid named "ams_akf_scale" and the problem is that this "ams" person attached
    xdata to the appid. Try this (you could add it to your S::STARTUP)...

    (defun KillAmsCrap ( / e ent)
    (foreach appid '("ams_time" "ams_pause" "ams_akf_scale")
    (and
    (setq e (tblobjname "appid" appid))
    (setq ent (entget e '("*")))
    (entmod (subst (list -3 (list appid))(assoc -3 ent) ent))
    (not
    (vl-catch-all-error-p
    (vl-catch-all-apply
    'vla-delete
    (list (vlax-ename->vla-object e))
    )
    )
    )
    (princ (strcat "\nDeleted Appid '" appid "'"))
    )
    )
    )



    would be grateful if anyone can tell me how to get rid of these error messages.
     
    John Uhden, Oct 2, 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.
Similar Threads
There are no similar threads yet.
Loading...