English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

I have an aerial photo in model space on a frozen layer. I want to be able to unfreeze that layer in paper space without it becoming unfrozen in model space.
I know you can use view port freezing to freeze a layer in paper space that you want turned on in model space, but I would like the opposite.
Any suggestions? Thanks for any help you can provide!

2006-11-17 02:57:08 · 2 answers · asked by Papa John 6 in Computers & Internet Software

I don't want it unfrozen in model space.

2006-11-17 03:35:38 · update #1

2 answers

man I think you're out of luck on this one. if you freeze it modelspace its just frozen, period.

now if the issue is it slowing your processor time processing the image everytime you open that dwg, (just guessing) you can toggle your image on and off pretty easy. if this is your issue,
make a toolbutton with this:

-vbarun;ImageToggle;r

open your vba editor and paste this code into a module. you will need to look up acad.dvb in the help files:

'*********
Sub ImageToggle()

Dim obj As Object
Dim msg, Style, Title, Help, Ctxt, response, MyString
Dim image As AcadRasterImage
'If ThisDrawing.GetVariable("Ctab") = "Model" Then
For Each obj In ThisDrawing.ModelSpace
If TypeOf obj Is AcadRasterImage Then
Set image = obj
If image.ImageVisibility = True Then
image.ImageVisibility = False
Else
image.ImageVisibility = True
End If

End If
Next
'End If
End Sub
'*************

2006-11-17 07:30:56 · answer #1 · answered by Anonymous · 0 0

ok dude try this
type
" -LA " then put " T " (for thaw) then it'll ax you what layers put " * " (shift+8) and then press enter twice and i'll thaw all the layers

2006-11-17 11:05:22 · answer #2 · answered by Paris, je t'aime 5 · 0 0

fedest.com, questions and answers