Log in

View Full Version : Slide-transition number for export or other.



tyler77
04-17-2008, 10:48 PM
1) I would like to export each slide with its transitions separately.

Example

Slide1 - transition1 -----> slide1.jpg
Slide1 - transition2 -----> slide2.jpg
Slide2 - transition1 -----> slide3.jpg
Slide2 - transition2 -----> slide4.jpg

Is it possible directly with VBA?

2) Is there a command to know the transitions_number like slidenumber command?

Please help me......i'm going mad...

John Wilson
04-18-2008, 01:40 PM
Hi Tyler

A slide can't have two transitions. Do you mean Animation builds? If so this is not easy code but felow MVP Shyam Pillai has an Add In (free I think)
http://skp.mvps.org/cshow.htm

tyler77
04-20-2008, 11:53 PM
Hi Tyler

A slide can't have two transitions. Do you mean Animation builds? If so this is not easy code but felow MVP Shyam Pillai has an Add In (free I think)
....

Thank you John, using the timeline object or something else, is there no way to keep the current animation index during a slideshow?

Thanks.

tyler77
04-21-2008, 06:27 AM
Thank you John, using the timeline object or something else, is there no way to keep the current animation index during a slideshow?

Thanks.

Ok. Any update....;)

Using the mainsequence property for each slide i can test the number of the animations, and it works, but if i test "InteractiveSequences" the result is always 0????!?!?!?

ActivePresentation.Slides(slidenumber).TimeLine.MainSequence.count = 3
ActivePresentation.Slides(slidenumber).TimeLine.InteractiveSequences.count = 0????

Any suggestions?

John Wilson
05-15-2008, 07:51 AM
Does your slide have any interactive sequences? Your code should count them OK, obviously if there are none the answer would be zero.