Jump to content

viewports lisp


SCORE

Recommended Posts

I usually work in the three viewports left configuration with the left window in top, the right in sw iso and the bottom right in front. is there a way to save this somewhere so when I open a new drawing I can go straight to it? or maybe a lisp routine to set it all up? I already made some lisp routings to get there but it takes about 4 steps.

 

 

thanks

Link to comment
Share on other sites

Most of the drawings I work in are already started by somebody else. but I could do that for when I start new dwg

 

OK, that's what I thought you asked in your first post. Then you went and changed the criteria. Looks like you're still in need of that lisp routine.

Link to comment
Share on other sites

ive made 1 lisp to get the view port configuration, and 3 other lisp to get to the view I want, I just don't know how to tie them all together and make it on command

Link to comment
Share on other sites

well here is my lisps I made, there pretty simple

 

 

(defun C:v3 ()

(command "-Vports" "3" "l")

)

 

 

(defun C:1 ()

(command "-VIEW" "SW")

)

 

 

(defun C:5 ()

(command "-VIEW" "TOP")

)

 

 

 

(defun C:6 ()

(command "-VIEW" "FRONT")

)

 

 

I figured out after you make you action recorder whatever you name it you can type that into the command line and it will play the action. so I named it v12, it works like a charm. im still going to try and figure out how to make a lisp to do everything

Link to comment
Share on other sites

is there a command to toggle viewports in model space? I think I would need that to make my lisp..

 

Ctrl + R will cycle through viewports in both model and paper space

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