Set up random transitions for slides in PPT2010

Source: Internet
Author: User

In the latest PowerPoint 2010 release, a number of dazzling and stunning slide transitions have been added, but careful users can see that the option of "random switching effects" included in the previous version is now gone, That is, the user must specify a fixed switch for each page slide instead of using each page to randomly change the way it is.

Set up random transitions for slides in PPT2010

Set up random transitions for slides in PPT2010

This has to say is a 2010 version of a larger regret, but fortunately we still have VBA, can make up for this regret, you can use the following code to set the page slides using a random switching mode:

————————————————————————————

Sub Randeffect ()

For i = 1 to ActivePresentation.Slides.Count

With ActivePresentation.Slides (i). SlideShowTransition

. AdvanceOnClick = MsoTrue ' after mouse click Toggle

'. AdvanceOnTime = MsoTrue ' You can also choose to switch periodically

'. AdvanceTime = 5 ' timed for 5 seconds

. EntryEffect = Ppeffectrandom

. Duration = 1.5 ' 1.5 seconds long switch

End With

Next

End Sub

————————————————————————————

Unfortunately, the random effects of the above code are only those transitions in "subtle", while the more dazzling "gorgeous" and "dynamic content" transitions do not appear in random results. How to make this random switching function more perfect, and I need more time to study it further.

Click on the left of the table of contents bar-> right-> cast video switch, then the right-hand side will appear animation options, select the last "random switch" and then select "Apply to all projection" film on the OK

Note : More wonderful tutorials Please pay attention to the triple computer Tutorials section, triple Office group: 185219299 welcome you to join

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.