Jump to content

how to take printout all files from folder in single time


Recommended Posts

Posted

Hello!

 

how to take printout all files (10-20 dwg files) from folder in single time

 

Thanks

Posted

You need to define the layout page setups, then use PUBLISH command. Or you can use sheet set manager to manage your drawings.

Posted

Script, I agree :)

You must consider a lot of things when using plot while running scripts:, my personal experience years ago.. when our office used to annotate and dimension on paperpsace and with multiple sheets in one Layout tab

selecting what to print is always a problem.. some co-workers may adhere to 1 Tblock per Layout, some doesnt... five sheets on 1 layout and sometimes 2 layout tabs.

back then i automate our printing by specifying the Tblock Block name and used the insertion point as reference....

 

so the cycle is search all tblock.. get insertion point... and depending on the size of the block i use.

 

(setq 1st_lg (ssname lbX lbX_cnt)
       1s_lgpt (cdr (assoc 10 (entget 1st_lg)))
  )
 (setq 2nd_lgpt (mapcar '+ 1s_lgpt '(420.00 297.00))) ; this is for A3 size 

 

just thought this info might help..:)

Posted

I wrote a Batch Plotter for a company I used to work at, it had a Dialog Interface allowing the user to select plotter/paper/copies/directory of drawing etc and the actual printing algorithm was something along these lines:

 

- Create a Script with drawings found, script would call a LISP also written to the support path

- Script Opens Drawing, LISP is called.

- LISP iterates through each drawing tab, if Border block is found, proceed with printing

- Make sure MSpace is false (i.e. Viewports not active)

- Zoom Extents

- Populate VLA Layout & Plot Object with correct settings

- Execute vla-plot

- Add delay to prevent crash

- Move on...

Posted

Hi Lee,

Can we batch plot to PDFs without open CAD files which already set up to plot?

Cheers, PP.

Posted

The file must be open to print, either using a script or otherwise - the printing methods aren't available using ObjectDBX.

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