Etransmit Macro

Discussion in 'AutoCAD' started by Bill DeShawn, Jan 11, 2005.

  1. Bill DeShawn

    Bill DeShawn Guest

    ETRANSMIT MACRO

    I worked out a little ETRANSMIT macro for a quick "packngo".

    ^C^C-etransmit;f;Here_are_the_files_you_requested;;Y;N;N;Y;N

    Just one thing: It's too bad I can't just enter in a name of a folder
    within the macro. With this, I have to browse to the folder.
     
    Bill DeShawn, Jan 11, 2005
    #1
  2. Bill DeShawn

    dave Guest


    If you set the sysvar FILEDIA to zero beforehand, the folder name can be
    added to the macro.

    ^C^Cfiledia;0;-etransmit;f;c:/temp; ... ;filedia;1; might do it.
     
    dave, Jan 11, 2005
    #2
  3. Bill DeShawn

    KirkONE Guest

    What about? simply an idea.


    (defun c:DLP ( / FileDir FileName M D K r)
    (setq r 5)
    (repeat r
    (command "_purge" "all" "*" "n")
    )
    (command "_qsave")
    (setq FileDir (getvar "dwgprefix"))
    (setq FileName (getvar "dwgname"))
    (setq M (strcat "Esportazione_" FileName))
    (setq D (strcat "mkdir " M))
    (setq K (strcat FileDir M))
    (command "_shell" D)
    (command "_-etransmit" "Folder" K "Compattazione per esportazione
    globale progetto [DL]" " - - " "Tutti i files necessari alla corretta
    editazione e archiviazione sono stati correttamentre processati." " - -
    " "" "Y" "N" "N" "Y" "N")
    )


    regards
    K1!
     
    KirkONE, Jan 13, 2005
    #3
  4. Bill DeShawn

    Bill DeShawn Guest

    Se pela un gato a través de mútliples métodos.
    --
    Bill DeShawn

    http://my.sterling.net~bdeshawn

     
    Bill DeShawn, Jan 16, 2005
    #4
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.