Dear All

I'm trying to perform a very simple task: use a macro to toggle the
"Balloons in Print & Web Layout" option on and off (Tools->Options->Track
Changes).

But I can't find the property to do this. Recording a macro doesn't show it
up. After wading through reams of disjointed help pages and examples for
.RevisionsBalloonWidthType and other properties of View and
Applications.Options, I'm still none the wiser.

Could anyone tell me where to find the appropriate property or method please?

Cheers
Richard

RE: Macro to toggle "Balloons in Print & Web Layout" by KePaHa

KePaHa
Tue May 03 14:25:02 CDT 2005

To set Balloons to Always:
ActiveWindow.View.RevisionsMode = wdBalloonRevisions

To set Balloons to Never:
ActiveWindow.View.RevisionsMode = wdInLineRevisions


"spamblackhole" wrote:

> Dear All
>
> I'm trying to perform a very simple task: use a macro to toggle the
> "Balloons in Print & Web Layout" option on and off (Tools->Options->Track
> Changes).
>
> But I can't find the property to do this. Recording a macro doesn't show it
> up. After wading through reams of disjointed help pages and examples for
> .RevisionsBalloonWidthType and other properties of View and
> Applications.Options, I'm still none the wiser.
>
> Could anyone tell me where to find the appropriate property or method please?
>
> Cheers
> Richard
>
>

RE: Macro to toggle "Balloons in Print & Web Layout" by spamblackhole

spamblackhole
Tue May 03 18:55:09 CDT 2005

Thanks very much, that's exactly what I needed!!

Cheers
Richard

"KePaHa" wrote:

> To set Balloons to Always:
> ActiveWindow.View.RevisionsMode = wdBalloonRevisions
>
> To set Balloons to Never:
> ActiveWindow.View.RevisionsMode = wdInLineRevisions
>
>
> "spamblackhole" wrote:
>
> > Dear All
> >
> > I'm trying to perform a very simple task: use a macro to toggle the
> > "Balloons in Print & Web Layout" option on and off (Tools->Options->Track
> > Changes).
> >
> > But I can't find the property to do this. Recording a macro doesn't show it
> > up. After wading through reams of disjointed help pages and examples for
> > .RevisionsBalloonWidthType and other properties of View and
> > Applications.Options, I'm still none the wiser.
> >
> > Could anyone tell me where to find the appropriate property or method please?
> >
> > Cheers
> > Richard
> >
> >