Wouldnt it be better stuck onto the 'print' command with an acknowledgement before printing rather than at drawing startup?
Registered forum members do not see this ad.
Hi,
(I did search for all words in my title, did find a thing)
So, I want a pop-up message as '' Make sure to sign the paper after printing'' at the startup.
With a '' OK'' option.
What I have so farBut how to make it appear with a specific .dwg??(SETQ reply (ACET-UI-MESSAGE "Make sure to sign the paper after printing"
"Warning"
(+ Acet:OK Acet:ICONWarning)
)
)
Thanks alot



Wouldnt it be better stuck onto the 'print' command with an acknowledgement before printing rather than at drawing startup?
*** Out of Beer Error ->-> Recovering Memory***
Put it in your template on a non-printing layer right down by the title block.
"I have only come here seeking knowledge. Things they wouldn't teach me of in college." The Police
Eat brains...gain more knowledge!
"Work Smart, Not Hard"
Click to View My Portfolio ( Updated 05/21/2013 ) ---> http://www.rdeweese.com/
And one more thing...lock the layer just to be annoying.
"I have only come here seeking knowledge. Things they wouldn't teach me of in college." The Police
Eat brains...gain more knowledge!
If still consider the pop-up solution, may try the following.
Create a file named "acaddoc.lsp" into Support folder for current user and add the below lines into it (or append at end of file if already exist):
Regards,Code:(alert "Make sure to sign the paper after printing!") (princ)
ok didnt know you could do this so how do you add pop up messages to drawings?
CAD Technician
A-one+ - PDT Design Structures
ok lisp and such go straight over me head thanks anyway
CAD Technician
A-one+ - PDT Design Structures
Registered forum members do not see this ad.
@oVeRdOsE - Have preferred ALERT instead of ACET-UI-MESSAGE since this isn’t a native AutoLISP function, but part of Express tools pack; by using it may raise an error on a workstation that doesn’t have Express installed (is optional).
Regards,
Bookmarks