Jump to content

Xref's not loading or showing


meganw

Recommended Posts

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

 

 

Link to comment
Share on other sites

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)

 

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