×
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS

Log In

Come Join Us!

Are you an
Engineering professional?
Join Eng-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!
  • Students Click Here

*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Jobs

Plot Stamp....
5

Plot Stamp....

Plot Stamp....

(OP)
Is there some trick to using the "plotstamp" function.  I've changed all the setting to what I want and I have turned "on" the plot stamp within the print dialog box.  I am confused on why I can't get this to work?  Does anyone have any imput?  Thanks

RE: Plot Stamp....

What does not work?
It should put your desired text on any output (paper, pdf, etc)

RE: Plot Stamp....

(OP)
That's just it---I type in the command "plotstamp" then within the dialog box I give the text a height, location, etc...  then plot my drawing and there is nothing. I'm sure it is something easy but I have tried every option within the dialog box and I can't get it to show up.  I've used this before with ACAD 2000 and now I'm using 2004,  just thought that mabey they have changed something on me.

RE: Plot Stamp....

In the settings, try toying with the units settings (inches/millimeters). That might do it.

"Whether you think that you can, or that you can't, you are usually right "
.. Henry Ford

RE: Plot Stamp....

At my company we use an autolisp routine called ddts, it will show the file location, filename, date, and time. It also saves the file in the current directory.If you want to try using it go ahead and paste the following lisp routine in notepad, and save it as ddts.lsp

               Hope this helps,
                     Don


;;; *****  DDTS.LSP  *****
;;;
;;; Places Drawing name, Date and Time Stamp at lower left corner of drawing
;;;
(defun c:DDTS (/ CE AP CL DP DN CD MX HR MN LM LX DX TH DS MO YR TS TM UN TX OSM)
   (setq OSM (getvar "OSMODE"))
   (setvar "OSMODE" 0)
   (setq CE (getvar "CMDECHO"))
   (setvar "CMDECHO" 0)
   (setq TS (getvar "TEXTSIZE"))
   (setq AP "AM"
         CL (getvar "CLAYER")
         DP (getvar "DWGPREFIX")
         DN (getvar "DWGNAME")
         UN (GETENV "U")
         CD (rtos (getvar "CDATE") 2 4)
         MX (atoi (substr CD 5 2))
         HR (atoi (substr CD 10 2))
         MN (substr CD 12 2)
         LM (getvar "LIMMIN")
         LX (getvar "LIMMAX")
         DX (distance LM LX)
         TH (/ DX 552)
         DS (polar LM (/ pi 5) (/ DX 60))
;;;DS (polar LM (/ pi 6) (/ DX 100))  [orig]
         MO (nth MX '(nil "JAN" "FEB" "MAR" "APR" "MAY" "JUN"
                          "JUL" "AUG" "SEP" "OCT" "NOV" "DEC"))
   )
        (if (>= HR 12) (setq AP "PM"))
        (if (>= HR 13) (setq HR (itoa (- HR 12))) (setq HR (itoa HR)))

   (setq YR (strcat "DATE: " MO " " (substr CD 7 2) ", " (substr CD 1 4)))
   (setq TM (strcat "DWG. NAME: " DP "" DN "  " YR "  TIME: " HR ":" MN " " AP))
   (command ".LAYER" "T" "DATESTAMP" "")
   (command ".LAYER" "N" "DATESTAMP" "C" "7" "DATESTAMP" "S" "DATESTAMP" "")
   (setq TX (ssget "X" (list (cons 8 "DATESTAMP"))))
   (command ".ERASE" TX ""
            ".STYLE" "STANDARD" "" "0" "1" "0" "N" "N" "N"
            ".TEXT" DS TH "0" TM
            ".LAYER" "S" CL ""
   )
   (setvar "CMDECHO" CE)
   (setvar "TEXTSIZE" TS)
   (print)
   (print TM)
   (setvar "OSMODE" OSM)
   (command "qsave")
   (princ)
)

RE: Plot Stamp....

JKinzenbaw ,

think about RTEXT from rhe Expresstools V 1-9 on Your ACAD-CD...

Lothar

ADT 2004
ACAD 2002

RE: Plot Stamp....

(OP)
Lothar,

I have used rtext in the past but I wanted something that would update automatically everytime I plotted.  I'm not sure, is there away that I can set up rtext to update everytime the drawing is saved or plotted?  Thank ya'll for your input.

RE: Plot Stamp....

rtext will update everytime the drawing is REGANALL.  which in most cases is before you plot, and when you open a drawing for the first time.  the only problem we have with Rtext is that is does not work for users without the express tools installed or users viewing or ploting a drawing from volo view.  

RE: Plot Stamp....

JKinzenbaw

Another way to do this is as follows:

If you are using a template as your drawing sheet, type something at the location of your choice on the template. Let's say lower left corner.

Pick the text and go to Modify, Properties to get the properties dialog box.

Under Text, Contents, you'll see the text you entered on the template. Right click to edit.

Mine says:

Drawing Name and File Location - $(getvar,"dwgprefix")$(getvar,"dwgname")- Tab Name = $(getvar,"CTAB")- Plotted by - $(getvar,"loginname") on $(getvar,0, MONTH DD"," YYYY -
H:MM am/pm)

The output is:

Drawing Location, Drawing No. Layout Tab Name,Plotted by haggis on June 11, 2004 - 2:00 pm

Save your template and this will update any time you open or plot a drawing.

RE: Plot Stamp....

hopefully this isnt too far off topic,

how can i get just the date to be shown in my Rtext window.  I tried CDate and realized i dont need that much info.  And i tried it similar to haggis's line and RText did not recongnize the command.

RE: Plot Stamp....

(OP)
mrspetos,

RTEXT
     <Diesel>
paste into text box
  $(edtime, 0, MON DD"," YYYY - H:MMam/pm)

Hope this helps

RE: Plot Stamp....

Thanks to JKinzenbaw for picking up my error and apologies to anyone who tried my method of plotstaming.  I put getvar instead of edtime.

Haggis

RE: Plot Stamp....

I don't get it - why all the rtext and lisp when you can use plotstamp in the plot dialog?

RE: Plot Stamp....

because most users will turn it off and never turn it back on.

RE: Plot Stamp....

IFRs

Maybe some users just like to practice a little lisp and find other ways to do things....and maybe some day be as good as you!

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Eng-Tips Forums free from inappropriate posts.
The Eng-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Eng-Tips forums is a member-only feature.

Click Here to join Eng-Tips and talk with other members!


Resources