PP 2002, transitions and timings question

M

Melissa

We have a presentation done in PP 2000. The timings are not all the same on
each slide. I have most of the transitions set at "vertical bars" with a few
slides using different ones.

When using another system running PP 2002, there doesn't seem to be a way to
set the show to "random vertical bars" (or whatever it's called) to "apply
to all slides" without also changing the timings to all the same.

There must be a way to apply a transition effect to all the slides without
changing the existing timings.

Any help would be appreciated. I know more about PP 200 than 2002 and don't
have a lot of time to mess with figuring it out.

Melissa
 
B

Bill Dilworth

You'll need to create a VBA macro to change only the slide transition
property.

=====Begin Macro Code========
Option Explicit

Sub ChangeTransitions()
Dim x As Integer

For x = 1 To ActivePresentation. _
Slides.Count
ActivePresentation.Slides(x). _
SlideShowTransition.EntryEffect = _
ppEffectRandomBarsVertical
Next x

End Sub
========end code=========

--
Bill Dilworth, Microsoft PPT MVP
===============
Please spend a few minutes checking vestprog2@
out www.pptfaq.com This link will yahoo.
answer most of our questions, before com
you think to ask them.

Change org to com to defuse anti-spam,
ant-virus, anti-nuisance misdirection.
..
..
 
J

John Langhans [MSFT]

[CRITICAL UPDATE - Anyone using Office 2003 should install the critical
update as soon as possible. From PowerPoint, choose "Help -> Check for
Updates".]
[TOP ISSUE - Are you having difficulty opening presentations in PowerPoint
that you just created (you can save, but not open)? -
http://support.microsoft.com/?id=329820]

Hello Melissa,

You can do this in Slide Sorter view.

1) View -> Slide Sorter
2) Edit -> Select All (or Shift-Click to select only a subset of the
slides)
3) Slide Show -> Slide Transition
4) Select the slide transition effect you want to apply to all of the
selected slides (DO NOT TOUCH the slide timings field)

You're done.. The effect will have been applied to each of the selected
slides (you don't have to click Apply to all slides). The individual slide
timings will be unaffected.

If you (or anyone else reading this message) have suggestions for how to
make this easier to do in PowerPoint, don't forget to send your feedback
(in YOUR OWN WORDS, please) to Microsoft at:

http://register.microsoft.com/mswish/suggestion.asp

It's VERY important that, for EACH wish, you describe in detail, WHY it is
important TO YOU that your product suggestion be implemented. A good wish
submssion includes WHAT scenario, work-flow, or end-result is blocked by
not having a specific feature, HOW MUCH time and effort ($$$) is spent
working around a specific limitation of the current product, etc. Remember
that Microsoft receives THOUSANDS of product suggestions every day and we
read each one but, in any given product development cycle, there are ONLY
sufficient resources to address the ones that are MOST IMPORTANT to our
customers so take the extra time to state your case as CLEARLY and
COMPLETELY as possible so that we can FEEL YOUR PAIN.

IMPORTANT: Each submission should be a single suggestion (not a list of
suggestions).

John Langhans
Microsoft Corporation
Supportability Program Manager
Microsoft Office PowerPoint for Windows
Microsoft Office Picture Manager for Windows

For FAQ's, highlights and top issues, visit the Microsoft PowerPoint
support center at: http://support.microsoft.com/default.aspx?pr=ppt
Search the Microsoft Knowledge Base at:
http://support.microsoft.com/default.aspx?pr=kbhowto

This posting is provided "AS IS" with no warranties, and confers no rights.
Use of any included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.htm
 

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