meganw Posted October 27, 2023 Posted October 27, 2023 I can't load my xrefs. When I try to load them, nothing appears. When I go to load the file, the name of the file appears in the xref manager but nothing appears in model or layout space. Now my existing titleblock is unloaded and won't come back either. - I've turned on all layers and unfrozen everything - I've saved and renamed files and restarted cad - I've set VISRETAIN to 1 - I've zoomed all to see if the xref is off the screen but nothing's there. - I've purged all - I've tried loading as an attachment and an overlay. - I've tried changing the path but nothing works Quote
BIGAL Posted October 27, 2023 Posted October 27, 2023 When you zoom extents look for a dot in the corners, that is your xtef. Try this say scale 100 will zoom to all 4 corners of the dwg extents. ; By Alan H Jan 2016 (defun zoomy ( / pt1 pt2 pt3 pt4) (setq sc (getint "\nEnter a scale factor ")) (setq pt1 (getvar "extmax")) (setq pt3 (getvar "extmin")) (setq pt2 (list (car pt1)(cadr pt3))) (setq pt4 (list (car pt3)(cadr pt1))) (command "zoom" "C" Pt1 sc) (if (/= (setq ans (Getstring "\nPress enter for next any key to exit")) nil) (command "zoom" "C" Pt2 sc) (exit) ) (if (/= (setq ans (Getstring "\nPress enter for next any key to exit")) nil) (command "zoom" "C" Pt3 sc) (exit) ) (if (/= (setq ans (Getstring "\nPress enter for next any key to exit")) nil) (command "zoom" "C" Pt4 sc) (exit) ) (princ) ) (zoomy) 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.