How do I disable the scroll mouse feature in powerpoint

S

Steven

Dear all,

When I Choose Slide Show in powerpoint2003, How do I disable the scrool
mouse feature with vba code or other feature? Thanks
 
E

Echo S

Steven said:
Dear all,

When I Choose Slide Show in powerpoint2003, How do I disable the scrool
mouse feature with vba code or other feature? Thanks

Put your file into Kiosk mode. It's under Slide Show|Set up Show. You'll
have to provide navigation buttons or set automatic transition timings if
you use Kiosk mode.
 
D

David M. Marcovitz

Put your file into Kiosk mode. It's under Slide Show|Set up Show.
You'll have to provide navigation buttons or set automatic transition
timings if you use Kiosk mode.

With VBA, that would be:

ActivePresentation.SlideShowSettings.ShowType = ppShowTypeKiosk

--David

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/
 
S

Steven

Thanks for reply, I try this code, but it can't disable mouse wheel scroll,
How to handle it?
 
D

David M. Marcovitz

The code I provided puts the presentation into Kiosk mode which disables
the scroll bar. However, a presentation can't change mode while it is
running, so if you are activating this code from within Slide Show View, it
won't disable the scroll bar until the next time it is put into Slide Show
View.
--David

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/
 

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