Jump to content

print all layouts


cadamrao

Recommended Posts

Sir,

 

I have a lisp to printout layout drawing;it works :geek:greate to print single layout;

but I need to printout all layouts in my drawing.Please revised the attached lisp to print all layouts.Currently we are using server based printer A3 (FX ApeosPort-IV C5575 L13) and need to print all layouts as per my pagesetup A3 or A1 or....

 

Advance thanks

venki

layout plot.lsp

Link to comment
Share on other sites

Why not just use the PUBLISH command, or select all the layouts and right click and choose Publish?

 

Hi

 

I know the PUBLISH command;but it need this more faster.

 

Thanks

Link to comment
Share on other sites

i use this script:

(foreach lay (layoutlist) (setvar "CTAB" lay) (command "_PLOT" "N" "" "" "" "" "Y" ""))

 

make sure all the page setups are set.

 

PmxCAD

Link to comment
Share on other sites

Heres is what we use where i work, it works great. the good thing is that the pages don't have to be sets. it also doesn't print the model tab.

 

 

(defun c:Tab ( / )
 (foreach layoutname (vl-remove "Model" (layoutlist))
   (command "._layout" "set" layoutname)
   (command "-plot" 
"yes" 
layoutname
"TFC-ENGXER6204.pc3" 
"Arch C (18x24 in.)" 
"Inches"
"LANDSCAPE" 
"NO" ;PLOT UPSIDE DOWN
"LAYOUT" 
"1:1" 
"0.00,0.00" 
"YES" ;PLOT WITH PLOTSYTLES
"MONOCHROME.CTB" 
"NO" ;PLOT WITH LINEWEIGHTS
"NO" ;SCALE LINEWEIGHTS WITH PLOT SCALE
"YES" ;PLOT PAPER SPACE LAST
"NO" ;REMOVE HIDDEN LINES
"NO" ;WRITE THE PLOT TO A FILE
"NO" ;SAVE CHANGES TO LAYOUT
"YES");PROCEED WITH PLOT
 )
 (princ)
)

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...