Jump to content

What kinda stuff do you automate?


Sbeth85

Recommended Posts

  • Replies 25
  • Created
  • Last Reply

Top Posters In This Topic

  • Sbeth85

    8

  • ReMark

    3

  • Tiger

    3

  • a3dtot

    3

Top Posters In This Topic

A house waffle panels about 15 mins to draw and trim up all the lines and ribs with my lisp about 20 seconds. Just think of something you do over and over then ask here.

Link to comment
Share on other sites

Wow, all the functions you guys are describing are amazing...

However I'm not sure the work I do is complicated enough to justify learning how to do LISPS...

 

When it comes to customization I altered my Home panel a bit and have made new CUI Aliases for stuff that I use often, and that seems to suffice for now... Beyond a Macro for cleaning a file, I can't think of anything I'd need to automate.

 

Could a LISP be used for DrawOrder? As in, I always want my Flooring layer to be below my Furniture layer?

Link to comment
Share on other sites

This is like a Christmas Wishlist...

 

Could I create a Macro/Lisp that would be like a "Back" button (or like on a TV remote, the LAST button), where I could toggle between the last 2 places I'd been? (Aka Model and a Certain Layout I'm working on, instead of having to search each one out?)

Link to comment
Share on other sites

You need a reactor program that remembers what layout you are in and stores it somewere then you would just use some simple keystroke to jump.

 

Here is a goto layout for lots of pages Model is 0 etc

 

(defun C:goto ( / lay num)
(setq num (getint "\nEnter tab number"))
(vlax-for lay (vla-get-Layouts (vla-get-activedocument (vlax-get-acad-object)))
(if (= num (vla-get-taborder lay))
 (setvar "ctab" (vla-get-name lay))
) ; if
) ; for
) ; defun
(C:goto)

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