Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/16/2025 in all areas

  1. A few comments X is the shortcut for Explode I always type a shortcut like this to see if it exists. Use say "XX" & "YY". I would use '"Layer" "M" as it makes the layer if it does not exist, also sets it current. Use Comand-s for the xline it will ask for more details or just make your command correct by completing the requests when running XLINE. (command "xline" "H" (getpoint "\nPick point ") "") (command "xline" "V" (getpoint "\nPick point ") "") When making a lisp always look at the manual version, write the prompts down on a bit of paper.
    1 point
  2. (defun settononplot (lay / eng) (setq eng (entget (tblobjname "layer" lay))) (entmod (subst (cons 290 0)(assoc 290 eng) eng)) ) include this subfunction and call it at the end. (settononplot "YourLayer")
    1 point
×
×
  • Create New...