Author Topic: Print Server Name Change?  (Read 15995 times)

0 Members and 1 Guest are viewing this topic.

JohnK

  • Administrator
  • Seagull
  • Posts: 10626
Re: Print Server Name Change?
« Reply #30 on: February 10, 2010, 12:04:59 PM »
k
TheSwamp.org (serving the CAD community since 2003)
Member location map - Add yourself

Donate to TheSwamp.org

SDETERS

  • Guest
Re: Print Server Name Change?
« Reply #31 on: February 10, 2010, 03:05:51 PM »
Great Thanks for the help it worked for what I was wanting to accomplish.  Now any Ideas to do the same with Autocad LT?  Sorry But they use both programs.

JohnK

  • Administrator
  • Seagull
  • Posts: 10626
Re: Print Server Name Change?
« Reply #32 on: February 10, 2010, 03:26:47 PM »
ummm no sorry. Ive never used LT so...what can we use besides a macro. Can we use diesel or something? ...nevermind. i dont know how to do what we just did with diesel anyways.
TheSwamp.org (serving the CAD community since 2003)
Member location map - Add yourself

Donate to TheSwamp.org

mjfarrell

  • Seagull
  • Posts: 14444
  • Every Student their own Lesson
Re: Print Server Name Change?
« Reply #33 on: February 10, 2010, 03:27:19 PM »
  Sorry But they use both programs.

somehow I thought this was for you... ;)

probably no luck making that happen in LT though.
Be your Best


Michael Farrell
http://primeservicesglobal.com/

JohnK

  • Administrator
  • Seagull
  • Posts: 10626
Re: Print Server Name Change?
« Reply #34 on: February 10, 2010, 03:28:14 PM »
I suppose you could use TrueView and set the default plotter to none.
TheSwamp.org (serving the CAD community since 2003)
Member location map - Add yourself

Donate to TheSwamp.org

SDETERS

  • Guest
Re: Print Server Name Change?
« Reply #35 on: February 10, 2010, 03:52:27 PM »
It is for a different department.  I was helping out them out. We use basic out of the box autocad.  Sad but I am the go to guy for Autocad questions when I can not answer them I come here to look for answers.  And answers you did give me which worked out great.

Please do not think about the LT I am very happy with what you all came up with.  Thanks Again.

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Print Server Name Change?
« Reply #36 on: February 10, 2010, 04:02:01 PM »

in LT, what happens when you use PSETUPIN from the command line ?
kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

SDETERS

  • Guest
Re: Print Server Name Change?
« Reply #37 on: February 10, 2010, 04:21:08 PM »
It brings up Pop Up Dialogue Box asking you to "Select Page Setup From File"  Then it gives you the option to select a dwg file.

Kerry

  • Mesozoic relic
  • Seagull
  • Posts: 11654
  • class keyThumper<T>:ILazy<T>
Re: Print Server Name Change?
« Reply #38 on: February 10, 2010, 04:29:04 PM »

OK

In your old drawings you have a PageSetup named ME, which uses the redundant plotter.

In your Template you have a PageSetup named ME, which uses the new plotter.

The new PC3 file is on your path.

yes ?

So ..

type PSETUPIN
select the template file
Select the Page setup ME
Import it , overriding the redundant definition.

Does that work for you ??

kdub, kdub_nz in other timelines.
Perfection is not optional.
Everything will work just as you expect it to, unless your expectations are incorrect.
Discipline: None at all.

SDETERS

  • Guest
Re: Print Server Name Change?
« Reply #39 on: February 11, 2010, 09:12:07 AM »
Ok I go to Psetupin

Select the template

Select the Pagesetup name

then I set the Pagesetup name to current

then Close out and the plot works.

My question can Lt run script files? 

Thanks

mjfarrell

  • Seagull
  • Posts: 14444
  • Every Student their own Lesson
Re: Print Server Name Change?
« Reply #40 on: February 11, 2010, 10:35:01 AM »
try one...

or just try ... SCRIPT @ command line and see IF LT likes it?
Be your Best


Michael Farrell
http://primeservicesglobal.com/

SDETERS

  • Guest
Re: Print Server Name Change?
« Reply #41 on: February 11, 2010, 11:42:52 AM »
Yes it will take script files.

Now Thanks for the help.  Off to try my hand at a script file.  Sweet.

DaveD

  • Guest
Re: Print Server Name Change?
« Reply #42 on: July 08, 2010, 06:48:31 PM »
If you can get LT to run scripts (or want to with CAD), here's an example of what we use to set up our plots:
----------------------------------
._TILEMODE 0
(load"plotview")
(c:plotview3042)
(setq expert (getvar "EXPERT"))(setvar "EXPERT" 2)
._-PSETUPIN
"PL_30x42.dwg"
"4500 30x42"
(setvar "EXPERT" expert)
._-PLOT
_No

4500 30x42

_No
_Yes
_No
._Preview
----------------------------------

LT wouldn't run the "plotview" routine but that simply sets up a named View to plot in the current dwg based on the paper size desired and could be scripted pretty easily as well.

As far as your original issue with getting the 'none' plotters after a server/plotter change, I've struggled with that several times, too.  PC3's are fragile and I think poorly thought I for what they have to do.  It seems they should just print to the local printer name no matter what server or driver info it carries with it.  Maybe I'm wrong.

Govert's tools ( http://www.noliturbare.com/plot-print/print-ctbs-and-more ) has a pc3 reader and if you open one up you can see the pc3 holds the driver version, IP address, name and server name.  I've tried doing a replace on the server name in a text file and bringing it back in to the pc3 reader to see if I could update them that way, with no luck.

Each time I've ended up having to rebuild each pc3 from scratch when we've had this happen.  I'm glad you found something that will help you out a bit, but I bet if someone (Govert?) could write an app that would find and replace strings in a pc3 they could sell it to CAD managers across the land... well, I'd buy one anyway.

Yes it will take script files.

Now Thanks for the help.  Off to try my hand at a script file.  Sweet.