From: RJ on 5 May 2010 11:57 Would it be possible to have code that would both return the slide and rebuild the animation all in one action button and what would that code look like? -- RJ "David Marcovitz" wrote: > The dummy slide should work multiple times. It would probably be the > best approach. If you are using VBA, to elaborate on Shyam's answer > (which was exactly right)... > > #1 In VBA, a single quote in a line indicates a comment. Anything after > the single quote is ignored by the computer. You can remove any > comments, but they are helpful to the reader of the code (and, in your > case, the modifier of the code). > > #2 If you are not using an event handler (which adds another level of > complexity to this), then the code needs to go in a procedure which will > be assigned to a button. Instead of having a regular hyperlink to a > slide, you would have a the button that would have had the hyperlink > link to the procedure that contains that code. > > --David > > On 5/4/10 8:43 PM, RJ wrote: > > Thank you. I have already tried the dummy slide to reset the animation, but > > it only seemed to work once, which made me wonder if the 0:00 auto-advance on > > the dummy was itself an animation that could only be played once? > > > -- > David M. Marcovitz > Author of _Powerful PowerPoint for Educators_ > http://www.PowerfulPowerPoint.com/ > Microsoft PowerPoint MVP > Associate Professor, Loyola University Maryland > . >
From: David Marcovitz on 5 May 2010 12:03 Yes, now that I'm not looking at the original message, I'm not sure, but I thought that was what the code was that you posted. The GotoSlide method has two parameters: the slide number to go to and whether or not to reset the animation on that slide. Something along the lines of: ActivePresentation.SlideShowWindow.View.GotoSlide 3, msoTrue says go to slide 3 and reset the animation (msoFalse would not reset the animation). --David On 5/5/10 11:57 AM, RJ wrote: > Would it be possible to have code that would both return the slide and > rebuild the animation all in one action button and what would that code look > like? -- David M. Marcovitz Author of _Powerful PowerPoint for Educators_ http://www.PowerfulPowerPoint.com/ Microsoft PowerPoint MVP Associate Professor, Loyola University Maryland
From: RJ on 5 May 2010 14:26 Thanks very much David. You were very helpful. -- RJ "David Marcovitz" wrote: > Yes, now that I'm not looking at the original message, I'm not sure, but > I thought that was what the code was that you posted. The GotoSlide > method has two parameters: the slide number to go to and whether or not > to reset the animation on that slide. Something along the lines of: > > ActivePresentation.SlideShowWindow.View.GotoSlide 3, msoTrue > > says go to slide 3 and reset the animation (msoFalse would not reset the > animation). > > --David > > On 5/5/10 11:57 AM, RJ wrote: > > Would it be possible to have code that would both return the slide and > > rebuild the animation all in one action button and what would that code look > > like? > > > -- > David M. Marcovitz > Author of _Powerful PowerPoint for Educators_ > http://www.PowerfulPowerPoint.com/ > Microsoft PowerPoint MVP > Associate Professor, Loyola University Maryland > . >
First
|
Prev
|
Pages: 1 2 Prev: Automating powerpoint creation using VB Next: Ink problems in PPT 2010 Plus |