AutoMate Layer Translater

Discussion in 'AutoCAD' started by Nate Hunter, Dec 17, 2004.

  1. Nate Hunter

    Nate Hunter Guest

    I need to find a way to automate the layer translater. Does anyone have any
    ideas on how to do this?

    Nate
     
    Nate Hunter, Dec 17, 2004
    #1
  2. Apologies for the LISP but I don't think you can do it with VBA.

    ;|
    Loads the given standards file, and runs the LayTrans command using that
    file.

    Usage: (i:LayTrans fName)
    Arguments: fName string, filename of the .dws file
    Returns: n/a
    |;
    (defun i:LayTrans (fName)
    (cond ((not (member "laytrans.arx" (arx))) (arxload "laytrans")))
    (acet-laytrans fName (+ 1 4 8))
    (princ))


    --
    R. Robert Bell


    I need to find a way to automate the layer translater. Does anyone have any
    ideas on how to do this?

    Nate
     
    R. Robert Bell, Dec 17, 2004
    #2
  3. Nate Hunter

    Nate Hunter Guest

    thanks this was exactly what I was looking for

    Nate
     
    Nate Hunter, Dec 20, 2004
    #3
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.