Repost : Group Text In animations

A

Abhishek

Hi!

I am using off 2003
I want to know how can i get the value of Group text option in animation
*through VBA code*
I'll explain below the option that i am talking of
I draw a textbox and put an animation on it . now i modify that animation by
going to Effect options--> text animation--> group text -->All paragraphs at
once instead of as one object
How can i get this value thru code. I can get other options like

sEffect.EffectInformation.AfterEffect.ToString();//Aftereffect

sEffect.EffectInformation.AnimateBackground.ToString();//animate bkgrnd

sEffect.EffectInformation.AnimateTextInReverse.ToString();//animatetextinrev

sEffect.EffectInformation.BuildByLevelEffect.ToString();//charteffectlevel

sEffect.EffectInformation.SoundEffect.Name.ToString();//soundeffectname


sEffect.EffectInformation.TextUnitEffect.ToString();//textunitefect


Any help and suggestion would be greatly appreciated


Abhishek
 
S

Shyam Pillai

Like I posted previously:
It's the same as the BuildByLevelEffect effect but It will fail when it's
set at 'As one object' and 'All paragraphs at once'. This is a known bug in
the OM. You will need to parse this information from the HTML.
 
S

Shyam Pillai

In addition, you will have to use a workaround. Note that when the shape is
set to animate as one object, it will have only 1 effect in the main
sequence. However if the shape has 'All paragraphs at once' if will have
multiple effects (1 for the shape if it is animation, and X effects equal to
the number of paragraphs).
Clever use of the ConvertToBuildLevel should get you the information you
seek.
 

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