Course Content
BURST Command
The BURST command in AutoCAD is used to "explode" blocks or attributes into their individual components while preserving the original properties, such as color, layer, and line type.
0/4
DIMJOGGED Command
The DIMJOGGED command in AutoCAD is used to create a jogged (or "jog") dimension line for circular objects, like arcs and circles, to represent the radius when the center point is off the drawing or otherwise inconvenient to display.
0/4
NCOPY Command
The NCOPY command in AutoCAD (short for Nested Copy) allows you to copy objects from an external reference (Xref) or block reference directly into the current drawing.
0/4
OVERKILL Command
The OVERKILL command in AutoCAD is used to clean up and optimize drawings by removing redundant or duplicate geometry.
0/4
Mastering the Wipeout Command
Among AutoCAD's vast array of tools is one often overlooked yet powerful command: Wipeout. This nifty feature can clean up your drawings by hiding parts of your work you don't want to showcase.
0/6
Less Known but Powerful Features
By exploring these lesser-known features, you can unlock the full potential of AutoCAD and become a more efficient and productive user.
0/4
DIMSTYLE Editor
How to effectively use the DIMSTYLE editor to customize dimension styles
0/1
PURGE
0/1
WBLOCK
0/1
Hidden Keyboard Shortcuts
0/1
AutoCAD Secrets – Master the Hidden Gems

Creating and Using Macros

Understanding Macros

Macros in AutoCAD are a powerful tool for automating repetitive tasks. By recording a sequence of actions, you can create a script that can be replayed to automate those actions.

Creating a Macro:

  1. Start Recording:
    • Go to the Tools tab on the Ribbon.
    • Click Macro and then Start Recording.
  2. Perform Actions:
    • Perform the actions you want to automate, such as drawing lines, circles, or editing objects.
  3. Stop Recording:
    • Click Stop Recording in the Macro Recorder window.
  4. Save the Macro:
    • Save the macro with a descriptive name.

Editing a Macro:

  1. Open the Macro Editor:
    • Go to Tools > Macro > Visual LISP Editor.
  2. Load the Macro: Open the macro file you want to edit.
  3. Edit the Code: Modify the AutoLISP code to customize the macro’s behavior.
  4. Save the Macro: Save the modified macro file.

Running a Macro:

  1. Access the Macro: Go to Tools > Macro > Run.
  2. Select the Macro: Choose the desired macro from the list.
  3. Execute the Macro: Click Run.

Example: Creating a Macro to Draw a Square

  1. Start Recording: Begin recording a new macro.
  2. Draw a Square: Use the LINE command to draw a square of a specific size.
  3. Stop Recording: Stop the recording.
  4. Edit the Macro: Open the macro in the Visual LISP Editor.
  5. Modify the Code: Adjust the code to make the square size dynamic or add additional commands.
  6. Save the Macro: Save the modified macro.

Tips for Effective Macro Creation:

  • Keep Macros Simple: Break down complex tasks into smaller, more manageable macros.
  • Use Comments: Add comments to your macro code to explain the purpose of each step.
  • Test Thoroughly: Test your macros to ensure they work as expected.
  • Error Handling: Consider adding error handling to your macros to prevent unexpected behavior.
  • Leverage AutoLISP: Use AutoLISP to create more powerful and flexible macros.

By effectively using macros, you can significantly improve your productivity in AutoCAD.