> > The menu item, is just a placeholder. There is a fair amount code which does
> > the recording of timings. It is not a single statement. You can achive the
[quoted text clipped - 32 lines]
> iPresent Presio
> http://www.ipresent.net
On Mar 24, 9:12 pm, Tom Hyde <TomH...@discussions.microsoft.com>
wrote:
> I found this blip (if this helps)
>
[quoted text clipped - 53 lines]
> > iPresent Presio
> >http://www.ipresent.net
Tom,
What's your eventual output? Are you looking to run a presentation
(slideshow) and then access the timepoint data? If so, what would be
the format of the timepoint data you would hope to access via VBA? I
think if I understood the end goal, I might be able to help.
Just for some quick background: Microsoft Producer allows you to
record audio/video and synchronize it with slides. It's a separate
application that works with PowerPoint. The final output is a
presentation that can be published to the web. I also make a product
that does something very similar. Basically each slide (and
animation) has a timepoint that corresponds to a point in the
associated audio or video clip. When played back (via the web) the
audio/video and slides are all synchronized in a webcast type
interface.
Let me know more about your project's goals and I'll see if I can
help.
Regards,
Carmen-
---
iPresent Presio
http://www.ipresent.net
Tom Hyde - 25 Mar 2008 04:58 GMT
When Producer is installed, an addin to PowerPoint is added to Show Slides
and record timings. These timings can then be saved into the powerpoint file
and extracted later (in my case we use the timings to create webcasts). My
eventual goal is override the standard view slide show event (ex. F5) so it
instead mimics the View Slide Show and Record Timings. The reason I need this
is that presentors sometimes will kick out of the presentation by accident
and then restart the show normally (ex. F5) which does not record the timings
(I require)
using the event handler class I can get at the App_SlideShowBegin event, I
just need to know what command initiates Producer's recording of the timings.
These timings are actually more robust than the normal rehearse timings
(which will not allow a presentation to go backwards and record these timings)
Hopefully that's a little more clear.
> Let me know more about your project's goals and I'll see if I can
> help.
>
> Regards,
> Carmen-
Carmen Ferrara - 25 Mar 2008 15:51 GMT
On Mar 24, 11:58 pm, Tom Hyde <TomH...@discussions.microsoft.com>
wrote:
> When Producer is installed, an addin to PowerPoint is added to Show Slides
> and record timings. These timings can then be saved into the powerpoint file
[quoted text clipped - 17 lines]
> > Regards,
> > Carmen-
Hi Tom,
Yes, much clearer now, thanks. Try creating a little VBA sub that
mimics the keystrokes that of the toolbar command you are looking
for. This sub worked for me. It started the presentation in
slideshow mode - and the timings were recorded (I could view them on
the thumbnail view).
Public Sub DoSlideShow_RecordTimings()
SendKeys "%V", True
SendKeys "{DOWN}", True
SendKeys "{UP}", True
SendKeys "{ENTER}", True
End Sub
I'm running Office XP - let me know if that works for you.
Carmen-
---
iPresent Presio
http://www.ipresent.net
Tom Hyde - 25 Mar 2008 13:52 GMT
I found the Producer's add-in .ppa file and thought I could call one of it's
methods to mimic this activity, but can't see the code within the .ppa file?
Trying to see if I can convert it back to a .pps
Using a text editor, it looks like their might be a function
ShowPresentationAndRecordTimings that I could call using
Application.Run ("ShowPresentationAndRecordTimings")
but after testing, this still did not record the timings (what I require)
There may be some parms available to ShowPresentationAndRecordTimings, but I
cannot tell and have searched to no avail.