masterfal Posted April 18, 2019 Posted April 18, 2019 Hi All, I've used the lisp below to quickly add background masks to text but after an autocad update its stopped working. I'm getting this message when i try run it: no function definition: MASK:SELECTION Any ideas how i can fix? (defun c:mtm nil (mask:maskselection (mask:selection "\nSelect objects: ") t 1.1 t nil) (princ) ) Quote
dlanorh Posted April 18, 2019 Posted April 18, 2019 Are the defined functions "mask:selection" and "mask:maskselection" loaded? 1 Quote
tombu Posted April 18, 2019 Posted April 18, 2019 Looks like it's Lee Mac's code that isn't being loaded: http://www.lee-mac.com/mask.html 1 Quote
Lee Mac Posted April 27, 2019 Posted April 27, 2019 The two functions mask:selection & mask:maskselection are defined within the main program which may be downloaded using the link found here. The MaskV#-#.lsp program file will need to be loaded in the active drawing in order to define these two functions before your custom command can be evaluated. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.