Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/20/2020 in all areas

  1. Do you mean the menu bar? To turn menu bar on you can click that little arrow pointing downwards at the top of your screen (to the left of where it sais "Autodesk AutoCAD 2020") then show menu bar. The default for dimensions is in the annotate palette group. Personally, I like to use the menu bar for dimensions because it seems easier to select exactly what I want. But just me. I use "drafting and annotation' workspace (customized for me) with the menu bar on. You can change the workspace setting by clicking the gear at bottom right. Once you get everything set up the way you want you can click the gear again and save your workspace settings. If you still have access to your old computer one option is to go into tools, options, profiles tab, export. You can then place the file on your company server or email it to yourself. Then import your profile in Autocad on your new machine. It usually works fine but have seen some mixed results across different versions of Autocad. I really liked the old classic setup but they got rid of that back in like 2016 or something. (TEAR) -ChriS
    1 point
  2. You might want to consider the program I posted here: https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/update-blocks-amp-attributes-lisp/m-p/4423983#M315011
    1 point
  3. Hi, The program was recreating the points due to the active list of entities along with the entdel function. Its not a good practice to feed While function with T and force to end stop the program with ESC button so try the following instead. (defun c:3pC2 (/ ss i sn ers lst) ;;; Tharwat 19. Nov. 2020 ;;; (while (and (princ "\nSelect THREE points to create a circle between them : ") (setq ers nil ss (ssget '((0 . "POINT")))) ) (if (eq (setq i (sslength ss)) 3) (progn (repeat i (setq sn (ssname ss (setq i (1- i)))) (setq ers (cons sn ers)) (setq lst (cons (cdr (assoc 10 (entget sn))) lst)) ) (command "_.circle" "_3P" "_none" (nth 0 lst) "_none" (nth 1 lst) "_none" (nth 2 lst) ) (foreach x ers (entdel x)) ) (alert "Error ... Please select 3 points only") ) ) (princ) )
    1 point
×
×
  • Create New...