dirtlegg Posted December 23, 2010 Posted December 23, 2010 I have linked some aerial photos in my 2011 3d dwg but cannot send them to the back so my linework and annotation are visible. How do I send the photos to the back? Quote
rkmcswain Posted December 23, 2010 Posted December 23, 2010 I have linked some aerial photos in my 2011 3d dwg but cannot send them to the back so my linework and annotation are visible. How do I send the photos to the back? You say you cannot send them to the back, but then you ask how to do it. So are you saying you have tried, or you don't know how? Also, how were the images "linked"? Image command, FDO, OLE? Are they IMAGE entities? If they are IMAGE entities, then make sure IMAGEFRAME = 1 or 2. Run the Draworder command, select the image(s), choose "B" for Back. Quote
alanjt Posted December 23, 2010 Posted December 23, 2010 Macro I use from time to time... (defun c:HaB (/ ss) ;; Send all Images and Hatch to back ;; Alan J. Thompson (sssetfirst nil nil) (foreach pair '((0 . "HATCH") (0 . "IMAGE")) (if (setq ss (ssget "_X" (list pair (cons 410 (getvar 'ctab))))) (command "_.draworder" ss "" "_back") ) ) (princ) ) 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.