Disable Nonsense Views

I've read other people's problems relating to this but I can't find a
solution. I'm one of multiple users in a network using a mix of X3 and
X4. Sometimes this leads to files with nonsense views in the zoom levels
dropdown list. These files will not open in my version of X4.

Is there any way of disabling the extra views when opening the files?
Right now I have to ask the original designer to re-save the file as a
CMX before I can open it. I know there is a macro disabling color styles
when opening a file. Is there one for the views also?

Steve
www.brutefish.com
Parents
No Data
Reply
  • Brute-Fish said:
    Is there any way of disabling the extra views when opening the files?

    Hi Steve,

    I am glad to tell you that yes, there is, and once again it comes from amazing Woxxoom. The macro is called strip views.

    Just incase that macro doesn't function you'll have to try the following code:

    Public Sub clearAllViews()
    Dim i As Integer
    For i = (ActiveDocument.Views.Count ) To 1 Step -1
        ActiveDocument.Views(i).Delete
    Next i
    End Sub

    But to run this macro you must wait until your file is opened.

Children