Jump to content

Publish lisp


Sudhir

Recommended Posts

You are being way too vague. What do you want to do exactly?

 

 

I want a lisp program for printing all layouts at once by using publish command

Link to comment
Share on other sites

If you want a script to do all the printing for you. Then you could write a lisp and use the -plot command. Just write down all the steps into a lisp file and run it in ScriptPro or similar program to plot all your dwgs.

ie:

-plot

Y

A0

\\YOUR PRINTER

ISO A0 (841.00 x 1189.00 MM)

M

L

N

E

...

Link to comment
Share on other sites

Its ok

 

But we have drawings with number of layouts means average 20 layouts in single drawing so i want to give print all layout at once by using the lisp program

 

thats why i want a publish lisp

Link to comment
Share on other sites

How about running this script to all your dwgs using scriptpro(or whatever). It seems to work fine.

 

(foreach tn (layoutlist)(command "-plot" "N" tn "" "PDF.pc3" "" "N" "Y"))

 

Adjust the plot command options that suits you.

Link to comment
Share on other sites

This may be of some use, but I thought Publish would handle what you wanted.

;;;  -=<  D E S C R I P T I O N  >=-
;;;  Routine to plot paperspace tabs
;;;  Pick Page Set Up to use
;;;  Sort Tabs by Alpha, Numeric, or Tab order; controls the pick list order too
;;;  Reverse sort order of Tabs
;;;  Pick tabs to plot via list, use SHIFT CLICK to pick a range or use
;;;    CTRL CLICK to tag individual names, 'Plot All' must be unchecked
;;;    This list order is determined by the Sort Tabs Radio Buttons
;;;  Ignore Tabs with flag character, this works with Pick Tabs too
;;;  Enter quantity of copies
;;;  Option to collate
;;;
;;;  Enter PlotTabs to run from the command line
;;;  You may call sub_PlotTabs wit a list of options see notes below

 

Member Required Link

PlotTabs2.14.png

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...