Bind the dwgs

Bind the dwgs

Anonymous
Not applicable
1,164 Views
7 Replies
Message 1 of 8

Bind the dwgs

Anonymous
Not applicable

Hi...Dear members

 

Can anybody please help me to make a lisp for eTransmit to bind the dwgs,

currently am using this by manually if i get a lisp file for this i can call the lisp via autoscript

my requirements are

*eTransmit setup name - STANDARD,

*binded dwgs need to save separate folder (folder name)  - C /  DWG

*binded dwgs name and folder name should be the same as original dwgs name and folder ( my original dwg are in separate folders like .. ELECTRICAL ,   STRUCTURAL, ARCHITECTURAL etc...) 

 

*and transmittal package type ( folder set of files) not zip file

am attaching an image of my transmittal setup page 

 

Thanks

0 Likes
Accepted solutions (1)
1,165 Views
7 Replies
Replies (7)
Message 2 of 8

hmsilva
Mentor
Mentor

Hi tdkhtr,

 

using 'etransmit' command via AutoLISP, we can not do much more than use the command line version.

If your settings are stored at the 'Standard' setup, perhaps something like this

(command "_.-ETRANSMIT" "_CH" "Standard" "_C")

 

Henrique

EESignature

0 Likes
Message 3 of 8

Anonymous
Not applicable

Hi Hmsilva
Thanks for ur reply
yes this is OK for me
but how can avoid PlotCfgs folder
when am doing with more than one dwg
1st file is ok then 2 nd file it is asking
for Overwrite file
so i change the code
(command "_qsave" "_.-ETRANSMIT" "_CH" "Standard" "_C" "_all")
now the problem for 1st file (bcoz when "_all" command is running it is stuck on there )
so am looking for avoid PlotCfgs folder

Thanks

0 Likes
Message 4 of 8

hmsilva
Mentor
Mentor
Accepted solution

You're welcome, tdkhtr.

 

Untested...

 

(defun c:demo ()
  (command "_qsave" "_.-ETRANSMIT" "_CH" "Standard" "_C")
  (while (> (getvar 'cmdactive) 0)
  (command "_All")
  )
  (princ)
)

 

Henrique

EESignature

0 Likes
Message 5 of 8

Anonymous
Not applicable
Dear Hmsilva...
Thanks a lot...
This is what i really need..

Thanks...
0 Likes
Message 6 of 8

hmsilva
Mentor
Mentor
You're welcome, tdkhtr
Glad I could help

Henrique

EESignature

0 Likes
Message 7 of 8

Anonymous
Not applicable
Hi...

When i run this lisp sometime error message displaying (shown below)

Command: demo
_qsave
Command: _.-ETRANSMIT
Updating fields...
Enter an option [Create transmittal package/Report only/CUrrent setup/CHoose
setup] <Report only>: _CH
Choose Transmittal Setup or [?] <Standard>:Standard Enter an option [Create
transmittal package/Report only/CUrrent setup/CHoose setup] <Report only>: _C
Gathering files ...

Transmittal created: C:\DWG.
Command: _All Unknown command "ALL". Press F1 for help.


looking any help to solve this
Thanks..
0 Likes
Message 8 of 8

hmsilva
Mentor
Mentor

@Anonymous wrote:
Command: demo
_qsave
Command: _.-ETRANSMIT
Updating fields...
Enter an option [Create transmittal package/Report only/CUrrent setup/CHoose
setup] <Report only>: _CH
Choose Transmittal Setup or [?] <Standard>:Standard Enter an option [Create
transmittal package/Report only/CUrrent setup/CHoose setup] <Report only>: _C
Gathering files ...
Transmittal created: C:\DWG.
Command: _All Unknown command "ALL". Press F1 for help.


Hi tdkhtr,

unfortunately I can't reproduce this behavior running the code...

 

Henrique

EESignature

0 Likes