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.
 
K

Kathy Jacobs

Chris,
In 97 or 2000 you are going to need to fake it with multiple slides. You
won't get the sliding movement, you will just get the swap between the
sides.

On the other hand, this is fairly easy to do in 2002 or later. Any chance
you can upgrade to one of the newer versions?


--
Kathryn Jacobs, Microsoft MVP PowerPoint and OneNote
Author of Kathy Jacobs on PowerPoint - Available now from Holy Macro! Books
Get PowerPoint and OneNote information at www.onppt.com

I believe life is meant to be lived. But:
if we live without making a difference, it makes no difference that we lived
 
C

Chris Watts

Kathy,
Thanks - it is as I feared. I have been faking it for a while and just
wanted to improve it.
At home I could easily upgrade but at work we all have 2000 - and I don't
know when they will upgrade. Even if I got and used 2002 at home, I would
still need to run it under 2000 - they are a bit ify about installing even
the ppt2003 viewer.

cheers
Chris


Kathy Jacobs said:
Chris,
In 97 or 2000 you are going to need to fake it with multiple slides. You
won't get the sliding movement, you will just get the swap between the
sides.

On the other hand, this is fairly easy to do in 2002 or later. Any chance
you can upgrade to one of the newer versions?


--
Kathryn Jacobs, Microsoft MVP PowerPoint and OneNote
Author of Kathy Jacobs on PowerPoint - Available now from Holy Macro! Books
Get PowerPoint and OneNote information at www.onppt.com

I believe life is meant to be lived. But:
if we live without making a difference, it makes no difference that we lived

Chris Watts 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.
 
G

Guest

someone suggested vba in your other post

I think this would do it:

Sub mover(oshp As Shape)
posL = oshp.Left
posW = -(oshp.Width / 2)
If oshp.Left > -50 Then
For x = posL To posW Step -5
oshp.Left = x
DoEvents
Next x
End If
End Sub
--
----- It will physically move the shape so you may need to reset it if the
pres is saved. The -50 allows for a little error in positioning (should in
theory be 0)
Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html


Chris Watts said:
Kathy,
Thanks - it is as I feared. I have been faking it for a while and just
wanted to improve it.
At home I could easily upgrade but at work we all have 2000 - and I don't
know when they will upgrade. Even if I got and used 2002 at home, I would
still need to run it under 2000 - they are a bit ify about installing even
the ppt2003 viewer.

cheers
Chris


Kathy Jacobs said:
Chris,
In 97 or 2000 you are going to need to fake it with multiple slides. You
won't get the sliding movement, you will just get the swap between the
sides.

On the other hand, this is fairly easy to do in 2002 or later. Any chance
you can upgrade to one of the newer versions?


--
Kathryn Jacobs, Microsoft MVP PowerPoint and OneNote
Author of Kathy Jacobs on PowerPoint - Available now from Holy Macro! Books
Get PowerPoint and OneNote information at www.onppt.com

I believe life is meant to be lived. But:
if we live without making a difference, it makes no difference that we lived

Chris Watts 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.
 
C

Chris Watts

John,
Than - my first excusion into vba with ppt, but here goes!
That certainly moves the image across the screen in the desired way, but the
display effect is quite disturbing.
In Slide View mode, the whole slide disappears to reappear again a fraction
of a second later - the rest of the slide is full intensity but the moving
image is just there momentarily. Everything disppears again and the process
repeats until the moving image reaches its final postition.

Chris


John Wilson said:
someone suggested vba in your other post

I think this would do it:

Sub mover(oshp As Shape)
posL = oshp.Left
posW = -(oshp.Width / 2)
If oshp.Left > -50 Then
For x = posL To posW Step -5
oshp.Left = x
DoEvents
Next x
End If
End Sub
--
----- It will physically move the shape so you may need to reset it if the
pres is saved. The -50 allows for a little error in positioning (should in
theory be 0)
Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html


Chris Watts said:
Kathy,
Thanks - it is as I feared. I have been faking it for a while and just
wanted to improve it.
At home I could easily upgrade but at work we all have 2000 - and I don't
know when they will upgrade. Even if I got and used 2002 at home, I would
still need to run it under 2000 - they are a bit ify about installing even
the ppt2003 viewer.

cheers
Chris


Kathy Jacobs said:
Chris,
In 97 or 2000 you are going to need to fake it with multiple slides. You
won't get the sliding movement, you will just get the swap between the
sides.

On the other hand, this is fairly easy to do in 2002 or later. Any chance
you can upgrade to one of the newer versions?


--
Kathryn Jacobs, Microsoft MVP PowerPoint and OneNote
Author of Kathy Jacobs on PowerPoint - Available now from Holy Macro! Books
Get PowerPoint and OneNote information at www.onppt.com

I believe life is meant to be lived. But:
if we live without making a difference, it makes no difference that we lived

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
benefit
from
the discussion.
Private, or personal, messages should begin the Subject line with [NEWS]
to
ensure that they pass my spam trap.
 

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

Fonts, PPT and mobility 2
Applying template to multiple files 6
File corruption 8
Colour change after animation 2
Positioning in edit mode 2
Sorting slides between presentations 6
Loss of formating 6
Clock tick 1

Top