jim78b Posted April 30, 2020 Posted April 30, 2020 hello i want a lisp that create a xline on a layer (example XL colour 1) : AND LET ME TO SELECT :horizontal , vertical etc etc then return on layer 0 even if i press esc to exit command. Another thing, is possible to make a short cut in lisp SHIFT + F to make offset xline always on xl layer and then return on layer 0? thanks in advance however i have this lisp but not work if i select ...a choice ...not return on layer 0 (defun c:xlS (/ p1 p2) (setq cl (getvar "clayer")) (command "-layer" "m" "XL" "_Color" "1" "" "") (command "xline" \ "") (setvar "clayer" "0") );defun Quote
Lee Mac Posted April 30, 2020 Posted April 30, 2020 You could use my custom XLine program from here. 1 Quote
jim78b Posted May 7, 2020 Author Posted May 7, 2020 SORRY But in your lisp there is not xline offset Quote
Lee Mac Posted May 7, 2020 Posted May 7, 2020 12 hours ago, jim78b said: SORRY But in your lisp there is not xline offset Just use the standard OFFSET command? Quote
jim78b Posted May 28, 2020 Author Posted May 28, 2020 Sorry but i need offset in the same command 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.