Dear All, I am wondering if there is a way to scroll through an AVI file (back and forth) by manually sliding a scrollbar control to left and right during a PowerPoint show (PPT 2003)? The AVI file includes about 150 frames (640 x 480). I inserted a WindowsMediaPlayer control on slide#1 and I was able to move the seek button forward or backward but I could not scroll through the frames in real time as only the last frame will show up when I release the seek button. Any idea work-around, or suggestion on how I can achieve this is much appreciated. Regards, DORI
Here is what I have came up with so far: --------- Private Sub ScrollBar1_Scroll() ActivePresentation.SlideShowWindow.View.GotoSlide _ ActivePresentation.SlideShowWindow.View.Slide.SlideIndex Set Image1.Picture = ImageList1.ListImages(ScrollBar1.Value).Picture End Sub Private Sub ScrollBar1_Change() ActivePresentation.SlideShowWindow.View.GotoSlide _ ActivePresentation.SlideShowWindow.View.Slide.SlideIndex Set Image1.Picture = ImageList1.ListImages(ScrollBar1.Value).Picture End Sub ---------- Problems: 1) Although this will scroll through the images but there is a delay between images (about 0.5 second) which makes it too slow. Is there anything that I can do to speed up the scrolling process? 2) I am using the scroll event but it seems that I have to let go the left mouse button and then click and drag it again to go to the next image which is working like a clickable button not scrolling. Any solution for that? Thanks very much for any help. DORI "DORI" wrote: > Dear All, > I am wondering if there is a way to scroll through an AVI file (back and > forth) by manually sliding a scrollbar control to left and right during a > PowerPoint show (PPT 2003)? The AVI file includes about 150 frames (640 x > 480). > I inserted a WindowsMediaPlayer control on slide#1 and I was able to move > the seek button forward or backward but I could not scroll through the frames > in real time as only the last frame will show up when I release the seek > button. > Any idea work-around, or suggestion on how I can achieve this is much > appreciated. > Regards, > DORI > >
See: http://www.digital-photo-software-guide.com/avi-to-jpeg.html -- Gary''s Student - gsnu200794 "DORI" wrote: > Dear All, > I am wondering if there is a way to scroll through an AVI file (back and > forth) by manually sliding a scrollbar control to left and right during a > PowerPoint show (PPT 2003)? The AVI file includes about 150 frames (640 x > 480). > I inserted a WindowsMediaPlayer control on slide#1 and I was able to move > the seek button forward or backward but I could not scroll through the frames > in real time as only the last frame will show up when I release the seek > button. > Any idea work-around, or suggestion on how I can achieve this is much > appreciated. > Regards, > DORI > >
Your link was an ad for selling an image viewer software. I want to use PowerPoint to scroll through frames of a video clip. DORI "Gary''s Student" wrote: > See: > > http://www.digital-photo-software-guide.com/avi-to-jpeg.html > > > -- > Gary''s Student - gsnu200794 > > > "DORI" wrote: > > > Dear All, > > I am wondering if there is a way to scroll through an AVI file (back and > > forth) by manually sliding a scrollbar control to left and right during a > > PowerPoint show (PPT 2003)? The AVI file includes about 150 frames (640 x > > 480). > > I inserted a WindowsMediaPlayer control on slide#1 and I was able to move > > the seek button forward or backward but I could not scroll through the frames > > in real time as only the last frame will show up when I release the seek > > button. > > Any idea work-around, or suggestion on how I can achieve this is much > > appreciated. > > Regards, > > DORI > > > >