Scroll between left and right halves

C

Chris Watts

I wish to include, in a presentation, a document that is twice the sceen
width.
I wish first to display statically the left-hand half then, after a
mouse-click, pan across to a static display of the right-hand half. Any
suggestions as to how I might achive this with PPT97 or 2000?

Will any suggetion also work with top and bottom halves rather than left and
right?

TIA
Chris

--
Chris Watts
Please reply via the newsgroup/mailing list - that way we all benefit from
the discussion.
Private, or personal, messages should begin the Subject line with [NEWS] to
ensure that they pass my spam trap.
 
C

ciw2otv

Chris said:
I wish to include, in a presentation, a document that is twice the sceen
width.
I wish first to display statically the left-hand half then, after a
mouse-click, pan across to a static display of the right-hand half. Any
suggestions as to how I might achive this with PPT97 or 2000?

Will any suggetion also work with top and bottom halves rather than left and
right?

TIA
Chris

--
Chris Watts
Please reply via the newsgroup/mailing list - that way we all benefit from
the discussion.
Private, or personal, messages should begin the Subject line with [NEWS] to
ensure that they pass my spam trap.


Hello Chris,
One way that it can be done is with a little VBA coding.
----Begin code----
Public Sub ScrollDocument()
With ActivePresentation.Slides(1).Shapes("Rectangle 4")
If .Left = 0 Then
.Left = -.Width / 2
Else: .Left = 0
End If
End With
End Sub
----End code----
Hope it moves things for you,
Eldon
 
Top