My Last Saved by information isn't updating, can someone help me with might be wrong with that line of text? Thanks! File Path: $(getvar, "dwgprefix") File Name: $(getvar,"dwgname") Layout Name: $(getvar,"ctab") Last Saved Date and Time: $(edtime, $(getvar, tdupdate),MONTH DD YYYY"," H:MMam/pm) Last Saved Time: $(edtime, $(getvar, tdupdate),H:MMam/pm) Drawn By: $(getvar, "loginname") Last Save By: $(getprop, LastSavedBy) Attached Xrefs: $(xrefs, 4) Attached Images: $(images, 2 ) -- Brent Daley CAD Manager RD Engineering, Inc. 11920 Burt Street, Suite 180 Omaha, NE 68154 Phone: 402.505.4355 Cell: 402.981.3713 Fax: 402.505.4432 Email:
LastSavedBy is only updated when acsiui.arx is loaded. This normally happens when you use DwgProps. So you can check (arx) to see if it is loaded, and if not, load it. (cond ((not (member "acsiui.arx" (arx))) (arxload "acsiui"))) -- R. Robert Bell My Last Saved by information isn't updating, can someone help me with might be wrong with that line of text? Thanks! File Path: $(getvar, "dwgprefix") File Name: $(getvar,"dwgname") Layout Name: $(getvar,"ctab") Last Saved Date and Time: $(edtime, $(getvar, tdupdate),MONTH DD YYYY"," H:MMam/pm) Last Saved Time: $(edtime, $(getvar, tdupdate),H:MMam/pm) Drawn By: $(getvar, "loginname") Last Save By: $(getprop, LastSavedBy) Attached Xrefs: $(xrefs, 4) Attached Images: $(images, 2 ) -- Brent Daley CAD Manager RD Engineering, Inc. 11920 Burt Street, Suite 180 Omaha, NE 68154 Phone: 402.505.4355 Cell: 402.981.3713 Fax: 402.505.4432 Email:
Can someone tell me what the line of code would look like if I wanted to add one for Last Plotted By: Thanks!! -- Brent Daley CAD Manager RD Engineering, Inc. 11920 Burt Street, Suite 180 Omaha, NE 68154 Phone: 402.505.4355 Cell: 402.981.3713 Fax: 402.505.4432 Email:
It won't be a "line of code". That data isn't stored in the drawing normally, so you would need to react to the plot command to store the username at plot completion to a custom property (or other storage mechanism) for later retrieval; i.e. is it worth it? -- R. Robert Bell Can someone tell me what the line of code would look like if I wanted to add one for Last Plotted By: Thanks!! -- Brent Daley CAD Manager RD Engineering, Inc. 11920 Burt Street, Suite 180 Omaha, NE 68154 Phone: 402.505.4355 Cell: 402.981.3713 Fax: 402.505.4432 Email: