{"id":13394,"date":"2023-03-30T07:00:00","date_gmt":"2023-03-30T14:00:00","guid":{"rendered":"https:\/\/www.autodesk.com/blogs\/autocad\/?p=13394"},"modified":"2023-03-28T11:29:59","modified_gmt":"2023-03-28T18:29:59","slug":"autocad-lt-2024-autolisp","status":"publish","type":"post","link":"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/","title":{"rendered":"How to Use AutoCAD LT and AutoLISP: Your Questions Answered"},"content":{"rendered":"\n<p>AutoCAD LT customers received a lot of value with the release of AutoCAD LT 2024. For the first time, AutoCAD LT 2024 now includes AutoLISP\u2014further enabling organizations to streamline workflows, enforce CAD standards, and leverage thousands of pre-existing automations for AutoCAD-based programs.<\/p>\n\n\n\n<p>This is great news for the AutoCAD LT community. Not only does the existing base of AutoCAD LT users have a new tool to explore, but it opens an entire group of AutoCAD users to take advantage of AutoLISP. And you don\u2019t have to become a programmer to do it.<\/p>\n\n\n\n<p>It\u2019s probably safe to say that most existing AutoCAD LT users don\u2019t know a lot about AutoLISP. And why would you? You couldn\u2019t use it, and nobody learns a feature or programming language they can\u2019t use. But there may be some of you who are aware (to some degree) of what AutoLISP can do. For both groups, there may be quite a few questions. Now that you have AutoLISP, what can you do with it? Where can you go to find code? What do you do with the code once you have it?<\/p>\n\n\n\n<p>Not to worry! Here, we\u2019ll explore what you now have and how to find and use AutoLISP code that you can trust and help you in your daily tasks.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"autolisp-101\">AutoLISP 101<\/h2>\n\n\n\n<p>AutoLISP is a dialect of the Lisp programming language. Developed in 1958, Lisp is the second oldest language still in use, next to Fortran. AutoLISP was added to AutoCAD version 2.18 back in 1986 as an interface to extend its functionality.<\/p>\n\n\n\n<p>Not only can you use it to automate tasks similar to (but much more powerful than) scripts, but it also lets you interact with the editor in familiar ways. AutoLISP\u00a0lets you specify points, select objects, enter alpha-numeric data at the command line, or provide input via dialog boxes that are created with its companion language, DCL (Dialog Control Language).<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><a href=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/28\/PC_AutoCAD_LT_LISP_ret.jpg\" data-lbwps-width=\"1920\" data-lbwps-height=\"1080\" data-lbwps-srcsmall=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/28\/PC_AutoCAD_LT_LISP_ret-300x169.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/28\/PC_AutoCAD_LT_LISP_ret-1024x576.jpg\" alt=\"Screenshot AutoLISP and AutoCAD LT \" class=\"wp-image-13395\" srcset=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/28\/PC_AutoCAD_LT_LISP_ret-1024x576.jpg 1024w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/28\/PC_AutoCAD_LT_LISP_ret-300x169.jpg 300w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/28\/PC_AutoCAD_LT_LISP_ret-768x432.jpg 768w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/28\/PC_AutoCAD_LT_LISP_ret-1536x864.jpg 1536w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/28\/PC_AutoCAD_LT_LISP_ret.jpg 1920w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"quick-tips-to-begin-using-autolisp\">Quick Tips to Begin Using AutoLISP<\/h2>\n\n\n\n<p>One of the most important differentiators between AutoCAD and AutoCAD LT is the fact that AutoCAD LT users can now use AutoLISP code. VLIDE, which stands for Visual LISP Integrated Development Environment, is not included in AutoCAD LT. It\u2019s integrated into full AutoCAD and is where AutoLISP code is typically written and debugged.<\/p>\n\n\n\n<p>With or without the built-in LISP editor, AutoLISP is easy for non-programmers to use. One of the reasons it\u2019s easier is the fact that AutoCAD LT is its own runtime interpreter for your code. In other words, you can enter a piece of AutoLISP code right at the Command prompt, and it will run it for you.<\/p>\n\n\n\n<p>How can this be of value to you? Well, AutoLISP can do math. Maybe you\u2019ll find it quicker to use a bit of code instead of using the QuickCalc tool or even the Windowscalculator. The syntax may be a little weird for you, as the operator or function comes first, so to add 2 and 2, you\u2019d enter <strong>(+ 2 2)<\/strong>. It will return a value of 4. Please remember that an AutoLISP statement always returns a value. That means you can use an AutoLISP statement to respond to an AutoCAD prompt.<\/p>\n\n\n\n<p>Let\u2019s say AutoCAD LT is asking for a distance, and you need to calculate the value first. We\u2019ll say it\u2019s Pi times 12 divided by 2 (because, why not?). Enter <strong>(\/ (* pi 12) 2)<\/strong> at a distance prompt. AutoLISP returns 18.8496 as the distance (depending on your units setting).<\/p>\n\n\n\n<p>What if you want the value as the string on a multileader? Enter <strong>(rtos (\/ (* pi 12) 2)&nbsp; 4 2)<\/strong> when prompted for text. That rtos function converts the value into a string or, in this case, 1&#8242; &#8211; 6 \u00be\u201d.<\/p>\n\n\n\n<p>Maybe you have a complex set of objects to select, and you know you will need to select them a few more times in your session. No problem when you have AutoLISP by your side. Just type in <strong>(setq SS (ssget))<\/strong>. The ssget function prompts you to select objects like you\u2019re used to doing. Now go ahead and perform your complex selection.<\/p>\n\n\n\n<p>Basically, the code you entered (the setq) will assign the selected set of objects to the variable SS, which AutoLISP will remember while the drawing remains open. It also gives you an easy mechanism for retrieving it. So, the next time you need these objects, enter <strong>!SS<\/strong> at the Command prompt. Just like that, you have the exact same selection set. As you find these little nuggets, copy and paste them into a text document that you keep at easy reach. Just edit a little text if you need to, then copy and paste!<\/p>\n\n\n\n<p>One thing to note about AutoLISP code. Always use plain text, never anything formatted. Notepad is perfect for this. Just stay away from your favorite word-processing program.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"loading-and-running-autolisp-code\">Loading and Running AutoLISP Code<\/h2>\n\n\n\n<p>OK, code snippets at the Command prompt are nice, but you\u2019ll probably use your favorite search engine and find full-fledged AutoLISP routines on the internet, which will be even more helpful. They\u2019ll usually be in a single file with the extension of .lsp, so you\u2019ll need to know how to load them and what to do to make them run.<\/p>\n\n\n\n<p><strong><em>Note:<\/em><\/strong> AutoCAD LT also allows you to load and run .vlx and .fas files, which are both a compiled format, so you won\u2019t be able to open and read them.<\/p>\n\n\n\n<p>The easiest is the APPLOAD command. You can also find its icon on the Applications panel of the ribbon\u2019s Manage tab. Running it will display the Load\/Unload Applications dialog, which is where you\u2019ll navigate to your AutoLISP file and click load. Pretty easy. But doing it that way means you have to do it every time you re-enter your drawing. AutoLISP files are not persistently loaded by default. In the lower right corner of the Load\/Unload Applications dialog is something called the Startup Suite. If you put your file here, it will load whenever you open a drawing.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><a href=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-Lisp_1.jpg\" data-lbwps-width=\"832\" data-lbwps-height=\"573\" data-lbwps-srcsmall=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-Lisp_1-300x207.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"832\" height=\"573\" src=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-Lisp_1.jpg\" alt=\"Startup Suite AutoLISP\" class=\"wp-image-13400\" srcset=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-Lisp_1.jpg 832w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-Lisp_1-300x207.jpg 300w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-Lisp_1-768x529.jpg 768w\" sizes=\"auto, (max-width: 832px) 100vw, 832px\" \/><\/a><\/figure>\n\n\n\n<p>You can also use AutoLISP itself to open your file. Just type in <strong>(load \u201cfilename.lsp\u201d)<\/strong>, and you\u2019re good. That is if the file is in a defined search path. If not, you\u2019ll have to supply the full path before the file name. And that requires some AutoLISP knowledge, so you may not want to use this method.<\/p>\n\n\n\n<p>Here\u2019s another great tip. You can also drag and drop an AutoLISP file into your LT session. It will load, and you\u2019ll be ready to go. Or will you? Your AutoLISP file is now loaded, but how do you make it run? Sometimes the programmer is friendly and will include a prompt that tells you what to type in, so keep an eye on the Command Line history. If not, you\u2019ll have to open the AutoLISP file (a double click should do the trick) and find the line that defines how to run the routine. Look for the following in the code:<\/p>\n\n\n\n<p>(defun C:commandNameHere \u2026<\/p>\n\n\n\n<p>Capitalization doesn\u2019t matter, so don\u2019t worry about that. You\u2019re looking for the defun (which is used to define a function in AutoLISP) and the C:, which is what tells AutoLISP that the word following it is the command name. That\u2019s what you\u2019ll type at the Command prompt to run your AutoLISP routine.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image.jpg\" data-lbwps-width=\"1920\" data-lbwps-height=\"1280\" data-lbwps-srcsmall=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-300x200.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-1024x683.jpg\" alt=\"\" class=\"wp-image-13403\" srcset=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-1024x683.jpg 1024w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-300x200.jpg 300w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-768x512.jpg 768w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-1536x1024.jpg 1536w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-464x309.jpg 464w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image.jpg 1920w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"autolisp-to-automate\">AutoLISP to Automate<\/h2>\n\n\n\n<p>Code snippets are great, as is loading and running code. But there\u2019s more! How about the ability to run the code you want every time you open a file? Think about those implications.<\/p>\n\n\n\n<p>You could analyze your layers to make sure they match your standards and fix them if they don\u2019t. Do the same with all your styles. You can check the file\u2019s name, folder, or path to ensure compliance based on the drawing type or discipline it belongs to. It\u2019s all easily done with code you can find on the internet with a few search terms typed into your favorite search engine.<\/p>\n\n\n\n<p>How do you get started? There\u2019s a special file that will load every time a drawing is opened. In full AutoCAD, it\u2019s called ACADDOC.lsp, but in LT now, it\u2019s called ACADLTDOC.lsp. It doesn\u2019t exist to start with, so you\u2019ll have to create it (remember your friend, Notepad) and make sure it is in a folder that is in your search paths. It will work like the Startup Suite in the Load\/Unload Applications dialog, but instead of just loading the routines so that you have access to them, you can also run the commands.<\/p>\n\n\n\n<p>Typically, this is also where you\u2019ll control your LT environment. There may be some system variables, or environment variables that you want to ensure are always set to your liking. Here are examples of AutoLISP statements that a company might add to the ACADLTDOC.lsp file:<\/p>\n\n\n\n<p>(setvar &#8220;FILEDIA&#8221; 1)<\/p>\n\n\n\n<p>(setvar &#8220;CMDDIA&#8221; 1)<\/p>\n\n\n\n<p>(setvar &#8220;ATTDIA&#8221; 1)<\/p>\n\n\n\n<p>(setenv &#8220;ShowFullPathInTitle&#8221; &#8220;1&#8221;)<\/p>\n\n\n\n<p>They\u2019re just AutoLISP statements, so when the file loads, they execute automatically without needing to enter a command name. It\u2019s a terrific way to standardize your setup.<\/p>\n\n\n\n<p>You can also put shortened or little helper commands in there. Just make sure you remember the command name (the part after the C:). Again, this code loads and is ready for you to use. Here is an example of a command with a shortened name similar to a command alias. Just type in MP to run MATCHPROP.<\/p>\n\n\n\n<p>(defun c:mp () (command &#8220;_matchprop&#8221;) (princ))<\/p>\n\n\n\n<p>Or it may be some kind of helper command. The following code will flip your selected objects 180\u00b0 around the point you define.<\/p>\n\n\n\n<p>(defun C:flip ()\u00a0 (command &#8220;_rotate&#8221; (car (entsel)) &#8220;&#8221; (getpoint) &#8220;180&#8221;) (princ))<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"exploring-visual-lisp\">Exploring Visual Lisp<\/h2>\n\n\n\n<p>Everything we\u2019ve talked about so far involves using raw AutoLISP. But you may run across an extension that\u2019s widely used. When looking at the code, keep your eye out for the following statement at the top of the file: (vl-load-com). That\u2019s your clue that the code may utilize ActiveX related functions. Also, look for commands that start with \u201cvla-\u201c or \u2018vlax-\u201c.<\/p>\n\n\n\n<p>Finding this isn\u2019t necessarily a bad thing, as your new and improved LT does support its use. But depending on what it\u2019s trying to do, it may not work properly. For instance, ActiveX in AutoLISP can create and modify 3D objects, but since LT doesn\u2019t support 3D, it wouldn\u2019t work. The same would go for constraints, profiles, external applications, etc.<\/p>\n\n\n\n<p>But there is one kind of ActiveX in AutoLISP code that you might find useful, and that should work for you. Wouldn\u2019t it be cool if something was lurking in the background of your drawing session, just waiting for one thing in particular to happen?<\/p>\n\n\n\n<p>Think about this scenario. Exploding dimensions is strictly forbidden in your office. But it happens anyway. How great would it be to have a piece of hidden code that\u2019s programmed only to do something if the EXPLODE command was used on a dimension? The user tries it, and the code takes over and prevents it.<\/p>\n\n\n\n<p>This is called event-driven programming and is accomplished using reactors. It\u2019s a bit advanced, but you can find working examples. The reactor and the function it runs when activated (the \u201ccallback function\u201d) could reside in the ACADLTDOC.lsp as well.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-2.jpg\" data-lbwps-width=\"1920\" data-lbwps-height=\"1280\" data-lbwps-srcsmall=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-2-300x200.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-2-1024x683.jpg\" alt=\"\" class=\"wp-image-13407\" srcset=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-2-1024x683.jpg 1024w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-2-300x200.jpg 300w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-2-768x512.jpg 768w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-2-1536x1024.jpg 1536w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-2-464x309.jpg 464w, https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/LT-AutoLISP_DAM-Stock-Image-2.jpg 1920w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"finding-autolisp-and-visual-lisp-code\">Finding AutoLISP and Visual Lisp Code<\/h2>\n\n\n\n<p>You might not initially write code from scratch, but you&#8217;re going to find it mainly online. Oh, you\u2019ll (probably) eventually do what almost every AutoLISP programmer did to begin with. You\u2019ll find some code, try to read it, change something, and see if it still works.<\/p>\n\n\n\n<p>Here\u2019s a little AutoLISP function that changes all text styles to use ROMANS.<\/p>\n\n\n\n<p>(defun C:MakeRomans (\/ rewind next name)<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;(setq rewind T)<\/p>\n\n\n\n<p>&nbsp;&nbsp; (while (setq next (tblnext &#8220;STYLE&#8221; rewind))<\/p>\n\n\n\n<p>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;(setq name (cdr (assoc 2 next)))<\/p>\n\n\n\n<p>&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;(if (not (wcmatch name &#8220;*|*&#8221;))<\/p>\n\n\n\n<p>&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(command &#8220;-style&#8221; name &#8220;romans&#8221; &#8220;&#8221; &#8220;&#8221; &#8220;&#8221; &#8220;&#8221; &#8220;&#8221; &#8220;&#8221;))<\/p>\n\n\n\n<p>&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;(setq rewind nil))<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;(princ))<\/p>\n\n\n\n<p>It probably looks foreign to you, but looking closer, you may recognize some things in there. You know the STYLE command, and, of course, ROMANS is familiar. Actually, that entire line looks a lot like how you\u2019d write it in a script. Maybe you\u2019re ready to see what happens if you change something.<\/p>\n\n\n\n<p>Maybe the first thing you\u2019d try is a different font. You change ROMANS to ARIAL. Save, load, run\u2026 and voila! It works!<\/p>\n\n\n\n<p>Back to the Internet. That\u2019s how you\u2019re going to find your code initially. One thing I can almost completely guarantee you is that if you have a good idea for a task for AutoLISP to handle, you\u2019re not the first to do so. Another thing about AutoLISP programmers\u2014they love to show off their work. It also means that they love to help one another. That\u2019s a good combination for you.<\/p>\n\n\n\n<p>First, you\u2019ll need to become adept at using specific keywords and phrasing to find precisely what you need. Make sure to include the whole word of AutoLISP (not just Lisp). I always lead with AutoCAD as well. Don\u2019t include LT. There\u2019s no LT AutoLISP code out there\u2014yet!<\/p>\n\n\n\n<p>Use the verb or verbs that describe what your desired code will do, and use AutoCAD language. For instance, say Copy, not Duplicate. Leave out article adjectives and prepositions. Try to build a search query similar to this: AutoCAD AutoLISP Export Layer Table<\/p>\n\n\n\n<p>In time, you\u2019ll find what does and doesn\u2019t work well for you. You\u2019ll also start to see a pattern in the results. Certain websites will appear often. You\u2019ll also get a feel for the ones where you get the best results. And vice-versa, of course.<\/p>\n\n\n\n<p>You can even try some of the latest in artificial intelligence. You\u2019ve undoubtedly heard about the AI chat sites that have popped up this year. Just ask one of them to write you some code! But proceed with caution as it provided results with some \u201crookie\u201d mistakes. As quickly as technology is changing and evolving, it might be perfected by the time you read this.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"resources-to-learn-more\">Resources to Learn More<\/h2>\n\n\n\n<p>Hopefully, all of this has made you curious to learn more. And there are so many resources available to get started.<\/p>\n\n\n\n<p>The best place to find help with understanding what your code means is Autodesk\u2019s own <a href=\"https:\/\/help.autodesk.com\/view\/OARX\/2023\/ENU\/?guid=GUID-0365EB64-531D-4CC0-B740-E756CC5E5AB6\" target=\"_blank\" rel=\"noreferrer noopener\">AutoLISP Developer\u2019s Guide<\/a>. And if you\u2019re ready to go that far, maybe you\u2019d like to go a little farther. There\u2019s even a <a href=\"https:\/\/help.autodesk.com\/view\/OARX\/2023\/ENU\/?guid=GUID-C64046FA-CD9E-4B38-9967-A501119E4A62\" target=\"_blank\" rel=\"noreferrer noopener\">Getting Started tutorial<\/a> to help you on your way. And, of course, there are the <a href=\"https:\/\/forums.autodesk.com\/t5\/visual-lisp-autolisp-and-general\/bd-p\/130\" target=\"_blank\" rel=\"noreferrer noopener\">AutoLISP forums<\/a>. <a href=\"https:\/\/www.autodesk.com\/autodesk-university\/search?fields.product=AutoCAD\" target=\"_blank\" rel=\"noreferrer noopener\">Online classes<\/a> are available from Autodesk University as well.<\/p>\n\n\n\n<p>With the release of AutoCAD LT 2024, you can also check out <a href=\"https:\/\/help.autodesk.com\/view\/ACDLT\/2024\/ENU\/?guid=GUID-037BF4D4-755E-4A5C-8136-80E85CCEDF3E\" target=\"_blank\" rel=\"noreferrer noopener\">What&#8217;s New or Changed with AutoLISP (AutoLISP)<\/a> and improvements with the <a href=\"https:\/\/help.autodesk.com\/view\/ACDLT\/2024\/ENU\/?guid=GUID-E2B683FE-43FB-4F5D-A9AE-809772FE8D3B\" target=\"_blank\" rel=\"noreferrer noopener\">Functions By Functionality References in the AutoLISP Reference Guide<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"give-autolisp-in-autocad-lt-a-try\">Give AutoLISP in AutoCAD LT a Try<\/h2>\n\n\n\n<p>With access to AutoLISP in AutoCAD LT, there\u2019s a whole world of automation and time-saving code for you to explore. If you\u2019re not already an LT subscriber, you can go here to download a <a href=\"https:\/\/www.autodesk.com\/products\/autocad-lt\/free-trial\" target=\"_blank\" rel=\"noreferrer noopener\">free 30-day trial<\/a>. Experiment a little, learn a little, and don\u2019t be afraid to give it a try.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>AutoCAD LT customers received a lot of value with the release of AutoCAD LT 2024. For the first time, AutoCAD LT 2024 now includes AutoLISP\u2014further enabling organizations to streamline workflows, enforce CAD standards, and leverage thousands of pre-existing automations for AutoCAD-based programs. This is great news for the AutoCAD LT community. Not only does the [&hellip;]<\/p>\n","protected":false},"author":329,"featured_media":13411,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[893],"tags":[14,7620,386],"class_list":["post-13394","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-learning","tag-autocad-lt","tag-autocad-lt-2024","tag-autolisp","dhig-theme--light"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Use AutoCAD LT and AutoLISP: Your Questions Answered | AutoCAD Blog | Autodesk<\/title>\n<meta name=\"description\" content=\"AutoLISP is now available in AutoCAD LT. Learn how to use it, where to find it, and the new automations now available with this in-depth guide.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use AutoCAD LT and AutoLISP: Your Questions Answered\" \/>\n<meta property=\"og:description\" content=\"AutoLISP is now available in AutoCAD LT. Learn how to use it, where to find it, and the new automations now available with this in-depth guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/\" \/>\n<meta property=\"og:site_name\" content=\"AutoCAD Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/autocad\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-30T14:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/i0.wp.com\/blogs.autodesk.com\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/AutoCAD-LT-2024-AutoLISP-Banner-Feature-Image.jpg?fit=1530%2C830&ssl=1\" \/>\n\t<meta property=\"og:image:width\" content=\"1530\" \/>\n\t<meta property=\"og:image:height\" content=\"830\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Frank Mayfield\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/AutoCAD-LT-2024-AutoLISP-Banner-Feature-Image.jpg\" \/>\n<meta name=\"twitter:creator\" content=\"@heathercs3ez\" \/>\n<meta name=\"twitter:site\" content=\"@autocad\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Frank Mayfield\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"12 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/autocad-lt-2024-autolisp\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/autocad-lt-2024-autolisp\\\/\"},\"author\":{\"name\":\"Frank Mayfield\",\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/#\\\/schema\\\/person\\\/fbfe7079a52f7aa618a72c29f6398de6\"},\"headline\":\"How to Use AutoCAD LT and AutoLISP: Your Questions Answered\",\"datePublished\":\"2023-03-30T14:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/autocad-lt-2024-autolisp\\\/\"},\"wordCount\":2566,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/autocad-lt-2024-autolisp\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/wp-content\\\/uploads\\\/sites\\\/35\\\/2023\\\/03\\\/30\\\/AutoCAD-LT-2024-AutoLISP-Banner-Feature-Image.jpg\",\"keywords\":[\"AutoCAD LT\",\"AutoCAD LT 2024\",\"AutoLISP\"],\"articleSection\":[\"Learning\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/autocad-lt-2024-autolisp\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/autocad-lt-2024-autolisp\\\/\",\"url\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/autocad-lt-2024-autolisp\\\/\",\"name\":\"How to Use AutoCAD LT and AutoLISP: Your Questions Answered | AutoCAD Blog | Autodesk\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/autocad-lt-2024-autolisp\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/autocad-lt-2024-autolisp\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/wp-content\\\/uploads\\\/sites\\\/35\\\/2023\\\/03\\\/30\\\/AutoCAD-LT-2024-AutoLISP-Banner-Feature-Image.jpg\",\"datePublished\":\"2023-03-30T14:00:00+00:00\",\"description\":\"AutoLISP is now available in AutoCAD LT. Learn how to use it, where to find it, and the new automations now available with this in-depth guide.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/autocad-lt-2024-autolisp\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/autocad-lt-2024-autolisp\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/autocad-lt-2024-autolisp\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/wp-content\\\/uploads\\\/sites\\\/35\\\/2023\\\/03\\\/30\\\/AutoCAD-LT-2024-AutoLISP-Banner-Feature-Image.jpg\",\"contentUrl\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/wp-content\\\/uploads\\\/sites\\\/35\\\/2023\\\/03\\\/30\\\/AutoCAD-LT-2024-AutoLISP-Banner-Feature-Image.jpg\",\"width\":1530,\"height\":830,\"caption\":\"AutoLISP in AutoCAD LT\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/autocad-lt-2024-autolisp\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u30db\u30fc\u30e0\",\"item\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Learning\",\"item\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/learning\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Use AutoCAD LT and AutoLISP: Your Questions Answered\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/#website\",\"url\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/\",\"name\":\"AutoCAD Blog\",\"description\":\"Your home for all things AutoCAD\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/#organization\",\"name\":\"Autodesk, Inc.\",\"url\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/wp-content\\\/uploads\\\/sites\\\/35\\\/2022\\\/06\\\/16\\\/autodesk-autocad-small_social-400.png\",\"contentUrl\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/wp-content\\\/uploads\\\/sites\\\/35\\\/2022\\\/06\\\/16\\\/autodesk-autocad-small_social-400.png\",\"width\":400,\"height\":400,\"caption\":\"Autodesk, Inc.\"},\"image\":{\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/autocad\",\"https:\\\/\\\/x.com\\\/autocad\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/#\\\/schema\\\/person\\\/fbfe7079a52f7aa618a72c29f6398de6\",\"name\":\"Frank Mayfield\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/wp-content\\\/uploads\\\/sites\\\/35\\\/2020\\\/04\\\/frank-Headshot-Brick-Cropped_vfbt8t-150x150.png\",\"url\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/wp-content\\\/uploads\\\/sites\\\/35\\\/2020\\\/04\\\/frank-Headshot-Brick-Cropped_vfbt8t-150x150.png\",\"contentUrl\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/wp-content\\\/uploads\\\/sites\\\/35\\\/2020\\\/04\\\/frank-Headshot-Brick-Cropped_vfbt8t-150x150.png\",\"caption\":\"Frank Mayfield\"},\"description\":\"Frank has worked in various design and CAD Management roles with AutoCAD and Autodesk software since 1986 (v2.62). He is currently a Design Technology Consultant in Tulsa, OK. He also serves as Vice President on the AUGI Board of Directors and is a member of numerous Autodesk user panels. As a top-rated mentor for trial users of AutoCAD 2018 and AutoCAD LT 2018, he has provided live, real-time guidance and support for over 2,500 new users in more than 50 countries worldwide. He currently serves on the AUGI Board of Directors and is a member of numerous Autodesk user panels.\",\"sameAs\":[\"https:\\\/\\\/x.com\\\/heathercs3ez\"],\"url\":\"https:\\\/\\\/www.autodesk.com/blogs\\\/autocad\\\/author\\\/frankmayfield\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Use AutoCAD LT and AutoLISP: Your Questions Answered | AutoCAD Blog | Autodesk","description":"AutoLISP is now available in AutoCAD LT. Learn how to use it, where to find it, and the new automations now available with this in-depth guide.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/","og_locale":"en_US","og_type":"article","og_title":"How to Use AutoCAD LT and AutoLISP: Your Questions Answered","og_description":"AutoLISP is now available in AutoCAD LT. Learn how to use it, where to find it, and the new automations now available with this in-depth guide.","og_url":"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/","og_site_name":"AutoCAD Blog","article_publisher":"https:\/\/www.facebook.com\/autocad","article_published_time":"2023-03-30T14:00:00+00:00","og_image":[{"width":1530,"height":830,"url":"https:\/\/i0.wp.com\/blogs.autodesk.com\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/AutoCAD-LT-2024-AutoLISP-Banner-Feature-Image.jpg?fit=1530%2C830&ssl=1","type":"image\/jpeg"}],"author":"Frank Mayfield","twitter_card":"summary_large_image","twitter_image":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/AutoCAD-LT-2024-AutoLISP-Banner-Feature-Image.jpg","twitter_creator":"@heathercs3ez","twitter_site":"@autocad","twitter_misc":{"Written by":"Frank Mayfield","Est. reading time":"12 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/#article","isPartOf":{"@id":"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/"},"author":{"name":"Frank Mayfield","@id":"https:\/\/www.autodesk.com/blogs\/autocad\/#\/schema\/person\/fbfe7079a52f7aa618a72c29f6398de6"},"headline":"How to Use AutoCAD LT and AutoLISP: Your Questions Answered","datePublished":"2023-03-30T14:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/"},"wordCount":2566,"commentCount":0,"publisher":{"@id":"https:\/\/www.autodesk.com/blogs\/autocad\/#organization"},"image":{"@id":"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/#primaryimage"},"thumbnailUrl":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/AutoCAD-LT-2024-AutoLISP-Banner-Feature-Image.jpg","keywords":["AutoCAD LT","AutoCAD LT 2024","AutoLISP"],"articleSection":["Learning"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/","url":"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/","name":"How to Use AutoCAD LT and AutoLISP: Your Questions Answered | AutoCAD Blog | Autodesk","isPartOf":{"@id":"https:\/\/www.autodesk.com/blogs\/autocad\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/#primaryimage"},"image":{"@id":"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/#primaryimage"},"thumbnailUrl":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/AutoCAD-LT-2024-AutoLISP-Banner-Feature-Image.jpg","datePublished":"2023-03-30T14:00:00+00:00","description":"AutoLISP is now available in AutoCAD LT. Learn how to use it, where to find it, and the new automations now available with this in-depth guide.","breadcrumb":{"@id":"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/#primaryimage","url":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/AutoCAD-LT-2024-AutoLISP-Banner-Feature-Image.jpg","contentUrl":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2023\/03\/30\/AutoCAD-LT-2024-AutoLISP-Banner-Feature-Image.jpg","width":1530,"height":830,"caption":"AutoLISP in AutoCAD LT"},{"@type":"BreadcrumbList","@id":"https:\/\/www.autodesk.com/blogs\/autocad\/autocad-lt-2024-autolisp\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/www.autodesk.com/blogs\/autocad\/"},{"@type":"ListItem","position":2,"name":"Learning","item":"https:\/\/www.autodesk.com/blogs\/autocad\/learning\/"},{"@type":"ListItem","position":3,"name":"How to Use AutoCAD LT and AutoLISP: Your Questions Answered"}]},{"@type":"WebSite","@id":"https:\/\/www.autodesk.com/blogs\/autocad\/#website","url":"https:\/\/www.autodesk.com/blogs\/autocad\/","name":"AutoCAD Blog","description":"Your home for all things AutoCAD","publisher":{"@id":"https:\/\/www.autodesk.com/blogs\/autocad\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.autodesk.com/blogs\/autocad\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.autodesk.com/blogs\/autocad\/#organization","name":"Autodesk, Inc.","url":"https:\/\/www.autodesk.com/blogs\/autocad\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.autodesk.com/blogs\/autocad\/#\/schema\/logo\/image\/","url":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2022\/06\/16\/autodesk-autocad-small_social-400.png","contentUrl":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2022\/06\/16\/autodesk-autocad-small_social-400.png","width":400,"height":400,"caption":"Autodesk, Inc."},"image":{"@id":"https:\/\/www.autodesk.com/blogs\/autocad\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/autocad","https:\/\/x.com\/autocad"]},{"@type":"Person","@id":"https:\/\/www.autodesk.com/blogs\/autocad\/#\/schema\/person\/fbfe7079a52f7aa618a72c29f6398de6","name":"Frank Mayfield","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2020\/04\/frank-Headshot-Brick-Cropped_vfbt8t-150x150.png","url":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2020\/04\/frank-Headshot-Brick-Cropped_vfbt8t-150x150.png","contentUrl":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-content\/uploads\/sites\/35\/2020\/04\/frank-Headshot-Brick-Cropped_vfbt8t-150x150.png","caption":"Frank Mayfield"},"description":"Frank has worked in various design and CAD Management roles with AutoCAD and Autodesk software since 1986 (v2.62). He is currently a Design Technology Consultant in Tulsa, OK. He also serves as Vice President on the AUGI Board of Directors and is a member of numerous Autodesk user panels. As a top-rated mentor for trial users of AutoCAD 2018 and AutoCAD LT 2018, he has provided live, real-time guidance and support for over 2,500 new users in more than 50 countries worldwide. He currently serves on the AUGI Board of Directors and is a member of numerous Autodesk user panels.","sameAs":["https:\/\/x.com\/heathercs3ez"],"url":"https:\/\/www.autodesk.com/blogs\/autocad\/author\/frankmayfield\/"}]}},"_links":{"self":[{"href":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-json\/wp\/v2\/posts\/13394","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-json\/wp\/v2\/users\/329"}],"replies":[{"embeddable":true,"href":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-json\/wp\/v2\/comments?post=13394"}],"version-history":[{"count":0,"href":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-json\/wp\/v2\/posts\/13394\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-json\/wp\/v2\/media\/13411"}],"wp:attachment":[{"href":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-json\/wp\/v2\/media?parent=13394"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-json\/wp\/v2\/categories?post=13394"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.autodesk.com/blogs\/autocad\/wp-json\/wp\/v2\/tags?post=13394"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}