Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/30/2024 in all areas

  1. As someone else noted, there are multiple options for any process in AutoCAD. Find one that works for you and keep moving forward. You can always come back later and experiment with the other options. You may even find something that works better. To align objects, such as the endpoints of lines, there's always object snaps. Do a little research, find out how they work, and...
    1 point
  2. @Nikon There were a few errors in the code you posted .. FWIW here are some modifications with comments. ;; Create a new text style and replace all styles in the drawing (defun c:cr-txtst-sel2 ;; RJP - Localize all variables (/ acaddoc eo ff i objstyle oldcmd select ss styles) (vl-load-com) ;; RJP - Check that the font can be found otherwise BOOM! Also search for the system font not tied...
    1 point
  3. Here's another, not quite as advanced as CAB's BreakAll program, but I had fun writing it - (defun c:breakwith ( / *error* brk brl ent ftr idx sel ) (defun *error* ( msg ) (LM:endundo (LM:acdoc)) (if (and msg (not (wcmatch (strcase msg t) "*break,*cancel*,*exit*"))) (princ (strcat "\nError: " msg)) ) (princ) ) (setq ftr (list '(0 . "ARC,CIRCLE,ELLIPSE,LINE,*POLYLINE,SPLINE") '(-4 . "<NOT") '(-4...
    1 point
  4. Not sure disabling F keys for all programmes is the best solution when you can do it just for AutoCAD
    1 point
  5. Another approach is to use the AutoHotkey program, as follows: 1. Download and install the AutoHotkey program from the address: https://www.autohotkey.com/ 2. Create a text file and name it, for example, NOT_F1.AHK (the AHK extension is mandatory!). The file will contain a single line, as below: F1::return 3. Launch the script by double-clicking on its name. The F1...
    1 point
  6. I have done translations before. I'd suggest using Notepad ++ to open the file because it keeps the foreign characters for a better translation than regular Notepad. Then use Google Translate or some other translator and translate the comments only at first. This way you understand what the program is doing. Then, only translate the prompts. If the program works as it is, I wouldn't tinker...
    1 point
  7. You need to modify the key from the CUI manually.
    1 point
  8. Get smaller fingers so you don't hit them by accident? Look at an internet search: 'AutoCAD mapping F keys"
    1 point
  9. You'll find there's several ways to do anything in AutoCAD so you will often receive a variety of correct answers to most questions. I often use grips to Stretch, Move, Rotate, Scale or Mirror lines and objects. https://help.autodesk.com/view/ACD/2025/ENU/?guid=GUID-BBEA1F71-EB16-4D49-80D9-970A6909F508 When snapping to an endpoint remember you only have to hover over...
    1 point
×
×
  • Create New...