So here I am: My first blog post and my first tutorial. I’m not super confident at filming myself and trying to look natural. That’s why I work behind the scenes. But I wanted to teach my skills to people who might be interested. The video below took a few takes, and I’m pretty pleased with how it turned out, although I could still take some practice. Check it out, and I hope, if you like Adobe After Effects, you find this useful.
I decided to do my first tutorial on the Saber Plugin because I love that Plugin. As you will see from the video, I have used it many times in my professional work.
Here’s a quick quide on how to install it, which I didn’t go through in the video.
Download either the Mac or PC version from https://www.videocopilot.net/blog/2016/03/new-plug-in-saber-now-available-100-free/.
Find the downloaded .dmg file, usually in your Downloads folder.
Double-click the .dmg file to open the installation package.
The installer will prompt you to drag the Saber plugin file into the appropriate directory. Navigate to your Adobe After Effects plugins folder, typically: Applications > Adobe After Effects [Version] > Plug-ins
Drag the Saber plugin file into this folder.
Locate the downloaded file (usually in your Downloads folder) and double-click the installer to begin.
The installer should automatically detect your Adobe After Effects folder. If it doesn’t, manually point it to the correct directory, typically: C:\Program Files\Adobe\Adobe After Effects [Version]\Support Files\Plug-ins
Follow the on-screen instructions to finish installing the plugin.
So now you’ve installed it, check out my video to start creating some awesome stuff.
While web-based AI generators are great for copy-paste, the future is integrated. Keep an eye on these developments (coming soon, possibly with paid tiers):
Congratulations. You just used an AI generator without paying a cent.
With the explosion of Artificial Intelligence, a new breed of tools has emerged: the AI LISP Generator. These tools allow users to create complex AutoCAD automation using plain English, often for free. This article explores how these generators work, where to find them, and how they are revolutionizing the drafting workflow. ai generator autocad lisp free download
Running unverified scripts inside complex CAD files can sometimes corrupt project data or crash your workstation. Protect your work by following basic digital safety rules:
AI can automate hundreds of workflows. Here are common routines you can generate for free right now: While web-based AI generators are great for copy-paste,
Despite its utility, AutoLISP syntax—characterized by its heavy use of parentheses—intimidates many users. This is where AI generators step in. By using Large Language Models (LLMs) trained on vast repositories of code, these tools bridge the gap between human intent and machine execution. Instead of learning to write (defun c:hello () (princ "\nHello World") (princ)) , you simply ask an AI: "Write a LISP routine that prints Hello World to the command line." Top Free AI Tools for Generating AutoLISP Code
Here is a practical guide to using a general AI model (like ChatGPT) to generate your own AutoLISP routine. With the explosion of Artificial Intelligence, a new
The Ultimate Guide to Free AI LISP Generators for AutoCAD AutoCAD users constantly seek ways to automate repetitive drafting tasks. AutoLISP (LISP) is the most powerful programming language built directly into AutoCAD to achieve this automation. However, writing code manually requires programming expertise and hours of debugging.
Artificial intelligence has completely changed this workflow. Today, you do not need to know how to code to create custom automation tools. By using free AI generators, you can instantly build, debug, and implement custom AutoCAD LISP routines tailored to your specific project needs. What is an AI AutoCAD LISP Generator?
If you are new, ask the AI to use simple command functions rather than advanced entmake routines for easier debugging. Conclusion
(defun c:InsBlk (/ blkName insPt att1) (setq blkName "MyBlock") (setq insPt (getpoint "\nInsertion point: ")) (setq att1 (getstring T "\nEnter label: ")) (command "._-INSERT" blkName insPt "1" "1" "0") ;; find last inserted block and set attribute (simple approach) (princ) )
