Author Topic: Setting up Templates Plot settings  (Read 3753 times)

0 Members and 1 Guest are viewing this topic.

SDETERS

  • Guest
Setting up Templates Plot settings
« on: November 10, 2008, 11:08:39 AM »
What I want to do is set up certain plot setting in all of my templates

I have everything set correctly but I am having an issue with the other machines.

When another machine opens the template he does not get the correct plot settings.  The CTB and PC3 files are being saved on my C drive instead of a netword drive

Is there a way I can do this?  How do you get the templates to pull up the correct plot setting when using the templates

Thanks

Matt__W

  • Seagull
  • Posts: 12955
  • I like my water diluted.
Re: Setting up Templates Plot settings
« Reply #1 on: November 10, 2008, 11:14:00 AM »
Put the CTB and PC3 files on a shared network drive for starters.
Autodesk Expert Elite
Revit Subject Matter Expert (SME)
Owner/FAA sUAS Pilot @ http://skyviz.io

SDETERS

  • Guest
Re: Setting up Templates Plot settings
« Reply #2 on: November 10, 2008, 11:26:07 AM »
Ok easy enough


Is there a place in the options to point autocad to the correct location for the shared directory for the CTB PC3 files?




Matt__W

  • Seagull
  • Posts: 12955
  • I like my water diluted.
Re: Setting up Templates Plot settings
« Reply #3 on: November 10, 2008, 11:27:52 AM »
Options dialog box.... Files tab... Printer Support File Path
Autodesk Expert Elite
Revit Subject Matter Expert (SME)
Owner/FAA sUAS Pilot @ http://skyviz.io

SDETERS

  • Guest
Re: Setting up Templates Plot settings
« Reply #4 on: November 10, 2008, 11:34:06 AM »
DUH   :oops:

Found it I hope this works

Thanks We will see if this works

What would be the easiest way of changing this on many different machines

I would like to have all the machine point to the same area

Would a script file work?

Thanks aGain

mjfarrell

  • Seagull
  • Posts: 14444
  • Every Student their own Lesson
Re: Setting up Templates Plot settings
« Reply #5 on: November 10, 2008, 11:58:19 AM »
DUH   :oops:


What would be the easiest way of changing this on many different machines



have them load the same profile
Be your Best


Michael Farrell
http://primeservicesglobal.com/

ronjonp

  • Needs a day job
  • Posts: 7533
Re: Setting up Templates Plot settings
« Reply #6 on: November 10, 2008, 12:08:12 PM »
You could also add this to their startup:

Code: [Select]
(defun plotpaths (/ files)
  (vl-load-com)
  (setq files (vla-get-files (vla-get-preferences (vlax-get-acad-object))))
  (vla-put-printerconfigpath files "yourpathhere")
  (vla-put-printerstylesheetpath files "yourpathhere")
  (princ)
)
(plotpaths)

Windows 11 x64 - AutoCAD /C3D 2023

Custom Build PC

SDETERS

  • Guest
Re: Setting up Templates Plot settings
« Reply #7 on: November 10, 2008, 12:49:41 PM »
Sweet

Thanks for the help


jonesy

  • SuperMod
  • Seagull
  • Posts: 15568
Re: Setting up Templates Plot settings
« Reply #8 on: November 11, 2008, 07:46:02 AM »
And dont forget to have the plot settings in a Read only folder so they cant change the "standards" when they feel like it.
Thanks for explaining the word "many" to me, it means a lot.

Matt__W

  • Seagull
  • Posts: 12955
  • I like my water diluted.
Re: Setting up Templates Plot settings
« Reply #9 on: November 11, 2008, 08:14:21 AM »
And dont forget to have the plot settings in a Read only folder so they cant change the "standards" when they feel like it.

Good point!
Autodesk Expert Elite
Revit Subject Matter Expert (SME)
Owner/FAA sUAS Pilot @ http://skyviz.io