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
 

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

Similar Threads

Applying template to multiple files 5
Fonts, PPT and mobility 1
File corruption 4
Colour change after animation 2
Sound clip 0
Loss of formating 5
Clock tick 1
Positioning in edit mode 2

Top