Word Zoom 75% by defect

J

José PR

thanks . I'll try. If I have any problem comment here.

Lene Fredborg said:
By default, existing documents open at the zoom and in the view with
which
they were saved. New documents open at the zoom and in the view with
which
the attached template has been saved. For details, see
http://word.mvps.org/FAQs/General/SaveViewAndZoom.htm.

--
Regards
Lene Fredborg
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word



I'm protected by SpamBrave
http://www.spambrave.com/
 
J

José PR

an auto running macro ?
I've tried this one :
Sub escala75()
'
' escala75 Macro
'
ActiveWindow.ActivePane.View.Zoom.Percentage = 75

End Sub
 
G

Graham Mayor

An auto macro that runs when you open a document will be called

Sub AutoOpen()

I don't think the language difference should affect it. See the examples at
the bottom of the linked page I posted previously.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
J

José PR

I don't understand. I put the script with 75 value but fail.

Graham Mayor said:
An auto macro that runs when you open a document will be called

Sub AutoOpen()

I don't think the language difference should affect it. See the examples
at the bottom of the linked page I posted previously.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>



I'm protected by SpamBrave
http://www.spambrave.com/
 
G

Graham Mayor

Copy the following two macros to normal.dot -

Sub AutoNew()
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 75
End With
End Sub

Sub AutoOpen()
With ActiveWindow.View
.Type = wdPrintView
.Zoom.Percentage = 75
End With
End Sub

I don't think the language issue should cause a problem


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
J

José PR

Thanks. I finally resolve the problem with your help.

Graham Mayor said:
An auto macro that runs when you open a document will be called

Sub AutoOpen()

I don't think the language difference should affect it. See the examples
at the bottom of the linked page I posted previously.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>



I'm protected by SpamBrave
http://www.spambrave.com/
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top