comcu Posted March 17, 2024 Posted March 17, 2024 Hi, I have been searching online and I cannot find a way of compiling a lisp file into a FAS file. does anyone know when they can recommend it? I only use Autocad LT so don't have access to full AutoCAD. Many thanks Quote
mhupp Posted March 17, 2024 Posted March 17, 2024 I think 2024 is the only version of LT that can use lisp. Quote
comcu Posted March 17, 2024 Author Posted March 17, 2024 Yes, I use the latest version of LT and it has lisp but not vslide editor and I can’t find a way to compile. Quote
BIGAL Posted March 17, 2024 Posted March 17, 2024 (edited) If Fas works then you may have to ask nicely some one to make your FAS files you can process via a lisp multiple Lsp files in a few seconds. (vla-sendcommand (vla-get-activedocument (vlax-get-acad-object)) "Vlide ") (setq loads (list "Lisp11" "lisp22" "lisp33")) (setq loc1 "D:\\Alan\\Lisp\\") (setq loc2 "D:\\Alan\\compiled") (foreach lisp loads (vlisp-compile 'st (strcat loc1 lisp ".lsp") (strcat loc2 lisp ".fas")) ) Edited March 17, 2024 by BIGAL Quote
comcu Posted March 17, 2024 Author Posted March 17, 2024 Thanks, and yes that would work. I just thought that there would be a standalone version I could utilise and be in control but having searched all day doesn’t seem to be one. I am currently using visual studio to write/edit code. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.