VBA and Animation

J

Jim

Hi,

Is it possible to determine when an animation ends on a slide using
VBA? I found the SlideShowNextBuild event, but it appears to be fired
at the beginning of animation. I'd like to figure out a way to detect
when an animated object has completed its animation sequence.

Thanks.
 
C

Carmen Ferrara

Jim,
There is no native support for it. But you could use the SlideShowNextBuild
and determine the duration of that animation.

Regards,
Shyam Pillai

Image Importer Wizard:http://skp.mvps.org/iiw.htm

Ok, thanks. Would you happen to know how I would access the duration
of the animation? Is the duration in seconds?

Thanks again.
 
J

Jim

Jim,
There is no native support for it. But you could use the SlideShowNextBuild
and determine the duration of that animation.

Regards,
Shyam Pillai

Image Importer Wizard:http://skp.mvps.org/iiw.htm








- Show quoted text -

Ok, thanks. Would happen to know how I can access the Duration of an
animation? Is the Duration in seconds?

Thanks again.
 
S

Shyam Pillai

Check out the SlideShowNextClick(Wn As SlideShowWindow, nEffect As Effect)
event, this event lets you know which is the next animation click build that
will fire. Use nEffect to get the duration of the animation like this:
neffect.Timing.Duration. Use this duration when the SlideShowNextBuild
fires.

Regards,
Shyam Pillai
 
J

Jim

Check out the SlideShowNextClick(Wn As SlideShowWindow, nEffect As Effect)
event, this event lets you know which is the next animation click build that
will fire. Use nEffect to get the duration of the animation like this:
neffect.Timing.Duration. Use this duration when the SlideShowNextBuild
fires.

Regards,
Shyam Pillai








- Show quoted text -

Thanks. That was very helpful.
 

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