Jump to content

Steal - Lee Mac


abra-CAD-abra

Recommended Posts

http://www.lee-mac.com/steal.html

 

I am trying to use the above 'steal' function and pass the list argument for the 'collection' as a variable, where the said variable 'imp' is a list:

  (steal (findfile "StealTest.dwg")
   '(
        (
            "Multileader Styles"
            imp
        )

    )
  )

 

This returns bad argument type: listp IMP

I have tried the quote function and the apostrophe and I am having no joy.

 

Hope somebody can shed some light on this.

 

Thanking you in advance  🙂

 

Link to comment
Share on other sites

After some experimenting, I got there:

(steal (findfile "StealTest.dwg") (list (list "Multileader Styles" (list imp)))) 

Sensational piece of kit, Lee! :thumbsup:

  • Like 3
Link to comment
Share on other sites

Takes a minute to get used to lists of lists of lists but being able to bring in lists of so many different types of things instantly with one call is amazing!

Macro I use to bring in a layout along with Page Setups for outputting to printing both to paper and to PDF:

^C^C^P(DelPageSetup "11×17*")(Steal (strcat (vl-filename-directory (getenv "QnewTemplate")) (chr 92) "AutoCAD Template" (chr 92) "Templates.dwt") (list (list "Page Setups" (list "11×17" "11×17 PDF"))(list "Layouts" (list "11×17")))) .regen

It's loaded in my acaddoc.lsp file since I use it many times a day for many things.

Thanks Lee!😁

Link to comment
Share on other sites

9 hours ago, tombu said:

Takes a minute to get used to lists of lists of lists but being able to bring in lists of so many different types of things instantly with one call is amazing!

Macro I use to bring in a layout along with Page Setups for outputting to printing both to paper and to PDF:

^C^C^P(DelPageSetup "11×17*")(Steal (strcat (vl-filename-directory (getenv "QnewTemplate")) (chr 92) "AutoCAD Template" (chr 92) "Templates.dwt") (list (list "Page Setups" (list "11×17" "11×17 PDF"))(list "Layouts" (list "11×17")))) .regen

It's loaded in my acaddoc.lsp file since I use it many times a day for many things.

Thanks Lee!😁

Thank you, tombu! Very useful! 😀

  • Like 1
Link to comment
Share on other sites

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...