K
Keri in Vermont
In PowerPoint 2003, I have a Custom Action Button on slide 7. When that
button (lets call it “1â€) is pressed a text box appears (lets call it "A").
Slide 10 has a Custom Action button that makes a text box appear (lets call
it "B"). What I need, is for when the Custom Action button on slide 7 is
pressed (“1â€), not only is "A" activated, so is "B" (there will also be "C",
"D" etc.). I KNOW I have to write code to do this. I have a Macro set that
when I press the button (“1â€), “B†“C†and “D†should appear. They don’t.
The code I have is:
ActivePresentation.Slides(7).Shapes(53).Visible = True [aka “Bâ€]
ActivePresentation.Slides(10).Shapes(51).Visible = True [aka “Câ€]
ActivePresentation.Slides(13).Shapes(51).Visible = True But they
didn’t work
I then tried:
ActivePresentation.Slides(7).Shapes(53).AddEffect = msoAnimEffectAppear
ActivePresentation.Slides(10).Shapes(51).AddEffect = msoAnimEffectAppear
ActivePresentation.Slides(13).Shapes(51).AddEffect = msoAnimEffectAppear
But they didn’t work either.
Could someone please assist me with the proper code to get this to work?
button (lets call it “1â€) is pressed a text box appears (lets call it "A").
Slide 10 has a Custom Action button that makes a text box appear (lets call
it "B"). What I need, is for when the Custom Action button on slide 7 is
pressed (“1â€), not only is "A" activated, so is "B" (there will also be "C",
"D" etc.). I KNOW I have to write code to do this. I have a Macro set that
when I press the button (“1â€), “B†“C†and “D†should appear. They don’t.
The code I have is:
ActivePresentation.Slides(7).Shapes(53).Visible = True [aka “Bâ€]
ActivePresentation.Slides(10).Shapes(51).Visible = True [aka “Câ€]
ActivePresentation.Slides(13).Shapes(51).Visible = True But they
didn’t work
I then tried:
ActivePresentation.Slides(7).Shapes(53).AddEffect = msoAnimEffectAppear
ActivePresentation.Slides(10).Shapes(51).AddEffect = msoAnimEffectAppear
ActivePresentation.Slides(13).Shapes(51).AddEffect = msoAnimEffectAppear
But they didn’t work either.
Could someone please assist me with the proper code to get this to work?