Jump to content

Convert a .lsp file into a .scr file


Recommended Posts

Posted (edited)

Hello everyone. Can you help me to convert a .lsp file into a .scr file?
Below, you will find the .lsp file (quick selection - multiple objects and set to a specific layer).
I want to use the .scr file with ScriptPro for multiple .dwg files.

(defun C:DOIT ()

  (command "_.chprop" (ssget "_X" '((0 . "Mtext,Multileader") )) "" "_layer" "G-ANNO-TXNT" "")

)

 

Edited by SLW210
Added Code Tags!!
Posted

There's no need to convert it, you can load & call it from a Script file, e.g. the script could be as simple as:

(load "YourLISPFile.lsp" nil)
(if c:doit (c:doit))

 

Posted

Thank you for reply Lee. I will try tomorrow.  I'm sure it will work 🙂.

Posted

As the lisp is super short why not just save it as Doit.lsp but remove 1st and 3rd line, then when you load, it will just run. Or add  (c:DOIT) as a last line then it will run when you do the (load "DOIT") 

 

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...