ILoveMadoka Posted June 13, 2022 Posted June 13, 2022 (edited) Didn't want to cross post but was wondering if anyone knows of a lisp solution to a question I posted here: My Question I didn't want to approach this issue from a programming standpoint if Autocad has a solution. I ask here in case the regulars in this forum don't look in the other forums.. If this is still considered cross posting, my apologies... Edited June 13, 2022 by ILoveMadoka Quote
mhupp Posted June 13, 2022 Posted June 13, 2022 (edited) If you activate the view ports it will zoom the the same location. I don't know if it will work if your in TOP and use it on SIDE or ISO view. ;;----------------------------------------------------------------------------;; ;; Zoom Area Across Multiple Drawings (defun C:ZAD (/ a) ;Zoom Across Drawings (initget "Yes No") (setq a (cond ((getkword "\nRedefine Zoom Area? [Yes/No]: ")) ( "No") ) ) (if (= "Yes" a) (progn (vl-cmdf "_.Zoom" "W" Pause Pause) (setq vc (getvar 'viewctr)) (setq SZ (getvar 'viewsize)) (vl-propagate 'vc) (vl-propagate 'sz) ) (if vc sz (vl-cmdf "_.Zoom" "C" VC SZ) (prompt "\nPlease Define Zoom Area") ) ) (princ) ) Edited June 13, 2022 by mhupp Quote
Kenny Ramage Posted June 13, 2022 Posted June 13, 2022 Believe it or not but I am Kenny Ramage. I cannot believe that AfraLisp is still having an influence. 5 1 Quote
tombu Posted June 13, 2022 Posted June 13, 2022 1 hour ago, Kenny Ramage said: Believe it or not but I am Kenny Ramage. I cannot believe that AfraLisp is still having an influence. Thanks for helping so many of us get started! 2 Quote
BIGAL Posted June 13, 2022 Posted June 13, 2022 Refer to some of the tutorials all the time. Very helpful site. Quote
mhupp Posted June 14, 2022 Posted June 14, 2022 10 hours ago, Kenny Ramage said: Believe it or not but I am Kenny Ramage. I cannot believe that AfraLisp is still having an influence. Why? Clear easy to follow steps by step instructions. who wouldn't find that helpful. Quote
ILoveMadoka Posted June 14, 2022 Author Posted June 14, 2022 Thank you... Will look at it tomorrow... Quote
enthralled Posted June 20, 2022 Posted June 20, 2022 If the objects in the model space are being moved without changing the scale or rotation, then I use this to change (pan) viewports view in all layouts or current layout only: VPML 1 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.