Need help with plotting routine

Need help with plotting routine

sdvannelli
Enthusiast Enthusiast
277 Views
4 Replies
Message 1 of 5

Need help with plotting routine

sdvannelli
Enthusiast
Enthusiast

Autodesk changed something between 2025.1.1 and 2025.1.2 (and now 2026) in the way that plotting using an Adobe specific pc3 shows the default file name.

Since the dawn of time, I have been using the attached lisp to have a 1 click plotting routing. Initializing this brought up a dialogue box that looked like this:

 

sdvannelli_0-1743091411954.png

 

In 2025.1.2 and 2026, the exact same routine now shows this for every tab:

sdvannelli_1-1743091487597.png

 

It no longer gives any layout tab info, so plotting one tab after another just keeps defaulting to the same file name. I'm looking for a way for it to somehow get the layout tab name into the default file name that pops up, like it used to do.

 

Using DWG to PDF comes up with this, which I like:

sdvannelli_2-1743092253821.png

 

But I do not like other things about the plots from DWG to PDF, so I would prefer using my Adobe PDF.pc3 file.

 

Any way this can be tweaked (or re-written) to simply force the name that pops up to include the layout name?

Thanks

 

0 Likes
278 Views
4 Replies
Replies (4)
Message 2 of 5

pendean
Community Legend
Community Legend

@sdvannelli wrote:

...It no longer gives any layout tab info...

 


More users than not asked for that for decades, it's now live.

 

May I assume you never use SSM (SheetSet Manager)? And you're not interested in organizing and publishing with more control that way?

0 Likes
Message 3 of 5

sdvannelli
Enthusiast
Enthusiast

Correct. I do not use it and am not interested. Just simply want the name to come up the same as it did previously.

0 Likes
Message 4 of 5

paullimapa
Mentor
Mentor

Since you're using a PDF device that's not built-in to AutoCAD then that's not an Autodesk issue to resolve. 

You can change your lisp function to accommodate always setting the filename the way you want which in this case would be the drawing file name followed by  the layout name before you go into the plot sequence like this:

(setq filename (strcat (getvar 'dwgprefix) (vl-filename-base (getvar 'dwgname)) " " (getvar 'ctab) ".pdf"))

 


Paul Li
IT Specialist
@The Office
Apps & Publications | Video Demos
0 Likes
Message 5 of 5

Sea-Haven
Mentor
Mentor

Have a look at this, Potpdfange, edit the "PC3" file name and the pot window values as its based on 0,0 and 841x594 an A1 sheet. Save Multigetvals.lsp to a support path. PS enter end 99 for all.

SeaHaven_0-1743121903191.png

 

0 Likes