Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 09-09-2012, 05:01 AM
mahdi mahdi is offline Is it possible to disable mouse or keyboard control keys during each effect animation Windows XP Is it possible to disable mouse or keyboard control keys during each effect animation Office 2010 32bit
Novice
Is it possible to disable mouse or keyboard control keys during each effect animation
 
Join Date: Sep 2012
Posts: 3
mahdi is on a distinguished road
Unhappy Is it possible to disable mouse or keyboard control keys during each effect animation


Hi,

I need to disable mouse click and keyboard control keys during presentation of each animation effect. Actually, I want to prevent the user to shorten the effects up and racing on the slides.

We have a educational power point presentation designed for the students and it is our prefer to pause the students on each effect. In the other word we want to have a presentation which could be controlled by the user at the beginning of each effect, but force the user to see the animation effects completely as are designed. It is our believe that the presentation could be more efficient on this way.

Any help is my pleasure
Reply With Quote
  #2  
Old 09-09-2012, 06:44 AM
Jamtart Jamtart is offline Is it possible to disable mouse or keyboard control keys during each effect animation Windows 7 64bit Is it possible to disable mouse or keyboard control keys during each effect animation Office 2010 64bit
Advanced Beginner
 
Join Date: Apr 2012
Posts: 53
Jamtart is on a distinguished road
Default

I have a similiar situation as yours. The first thing I did was on the slide in question, go to the Transition Tab, on the far right you will see "Advance Slide" and the "On Mouse Click" is checked by default, uncheck it.
Then if you need to Pause and Resume you will need to use macros for that function. I use that a LOT for my presentations for my students. I dont have the script at the moment, but if you do a search here you may find it.
Hope this was usefull
Reply With Quote
  #3  
Old 09-09-2012, 07:01 AM
Jamtart Jamtart is offline Is it possible to disable mouse or keyboard control keys during each effect animation Windows 7 64bit Is it possible to disable mouse or keyboard control keys during each effect animation Office 2010 64bit
Advanced Beginner
 
Join Date: Apr 2012
Posts: 53
Jamtart is on a distinguished road
Default

Here is a little something I found to create a Pause and Resume:
Lets say if you are running a slide that has multiple animations on it. Halfway through the presentation, you may want to pause the animations to explain something. A simple way to do this is to press the "b" key which will black out the screen. Then, press "b" key again to resume the presentation. The downside is that you won't be able to see the content on the screen.

To resolve this, you can make use of VBA. To do so, click Tools > Macro > Visual Basic Editor. Copy the code as shown below:

Sub pauseshow()
ActivePresentation.SlideShowWindow.View.State = ppSlideShowPaused
End Sub

Sub runshow()
ActivePresentation.SlideShowWindow.View.State = ppSlideShowRunning
End Sub

Close the editor once you are done.

Now, create two autoshapes.
Right click on the first one and select Action Settings. Select Run Macro > pauseshow. Click Ok.
Right click on the second one and select Action Settings. Select Run Macro > runshow. Click Ok.
Clicking on Shape 1 will now pause the presentation, while clicking on Shape 2 will resume the presentation.
Web site:
https://msmvps.com/blogs/tohlz/archi...-with-vba.aspx

Then, because you would have disabled the "Advance Slide" as I do, you need an action button to advance to the next slide, or just press N on the keyboard if that is easier.
Reply With Quote
  #4  
Old 09-12-2012, 04:58 AM
mahdi mahdi is offline Is it possible to disable mouse or keyboard control keys during each effect animation Windows XP Is it possible to disable mouse or keyboard control keys during each effect animation Office 2010 32bit
Novice
Is it possible to disable mouse or keyboard control keys during each effect animation
 
Join Date: Sep 2012
Posts: 3
mahdi is on a distinguished road
Unhappy still in problem

Thank you very much Jamtart for your reply
I am very glad that you replied the post, but the problem still exists

It will disable mouse but the keyboard still controls the presentation and the end user could race on the presentation by clicking the control keys.

I think that I should disable the keyboard control too. On the other side, if I put the action keys to forward and back the presentation by mouse click, one can click them uninterruptedly and shorten the effects up continousely.

Is there any flag or property in the VBA to check that if any effect is running? or any event associated with the beginning and ending of the effects?
In this way, I can override the events to disable and enable the mouse or check the flag in the function associated with the action key.

Thanks in advance for any help
Reply With Quote
  #5  
Old 09-12-2012, 08:03 AM
JohnWilson JohnWilson is offline Is it possible to disable mouse or keyboard control keys during each effect animation Windows 7 64bit Is it possible to disable mouse or keyboard control keys during each effect animation Office 2010 32bit
Programmer
 
Join Date: Nov 2008
Location: UK
Posts: 1,912
JohnWilson has a spectacular aura aboutJohnWilson has a spectacular aura about
Default

It's a little tedious to set up but if you run in Kiosk Mode with any animations triggered by a button you can make the button only appear when the last animation has finished.

If all the animations are timed then this is much simpler.

have a look at the demo here
__________________
Microsoft PowerPoint MVP 2007-2023
Free Advanced PowerPoint Tips and Tutorials
Reply With Quote
  #6  
Old 09-13-2012, 03:08 AM
mahdi mahdi is offline Is it possible to disable mouse or keyboard control keys during each effect animation Windows XP Is it possible to disable mouse or keyboard control keys during each effect animation Office 2010 32bit
Novice
Is it possible to disable mouse or keyboard control keys during each effect animation
 
Join Date: Sep 2012
Posts: 3
mahdi is on a distinguished road
Thumbs up Thanks John, It has solved

Hi,
Thanks John very very much
It has been solved and I am very glad and so thankful.

It works and completely matches my need. I will apply it to my presentation.

also, thank Jamtart for their kindness.

I hope that I could answer your questions in some other fields. You know, I am a computer windows application programmer with about 10 years working experience.

Contact me whenever needed through fatir7@yahoo.com

Thanks again
Reply With Quote
  #7  
Old 10-14-2020, 01:01 PM
Andro Andro is offline Is it possible to disable mouse or keyboard control keys during each effect animation Windows 10 Is it possible to disable mouse or keyboard control keys during each effect animation Office 2019
Novice
 
Join Date: Oct 2020
Posts: 2
Andro is on a distinguished road
Default

Quote:
Originally Posted by JohnWilson View Post
It's a little tedious to set up but if you run in Kiosk Mode with any animations triggered by a button you can make the button only appear when the last animation has finished.

If all the animations are timed then this is much simpler.

have a look at the demo here

Hi John,
Thanks for your tip about the kiosk mode. it really disable the mouse and keyboard to control the navigation of the slides.

However, I found a little problem.
During transition between each slides, let's say I set up the duration of transition animation to 3secs, then if I click the mouse anywhere on the screen it interrupts the transition animation and it ruins my automatic presentation timings completely.
I am hoping that you still have some idea on how to eliminate this problem.
Many thanks in advance.
Reply With Quote
Reply

Tags
continue annimation, disable mouse click, mouse controllable

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Is it possible to disable mouse or keyboard control keys during each effect animation Is it possible to disable keyboard only during a presentation? ddavis5891 PowerPoint 1 09-06-2012 09:10 AM
Is it possible to disable mouse or keyboard control keys during each effect animation Arrow keys move the caret to opposing direction with the Arabic keyboard. Why ? Belloc Word 4 05-27-2012 07:31 AM
Is it possible to disable mouse or keyboard control keys during each effect animation Mouse Over Animation dslocum PowerPoint 4 03-23-2012 09:20 AM
Is it possible to disable mouse or keyboard control keys during each effect animation without mouse using keyboard gsrikanth Excel 1 01-27-2012 11:28 PM
credits effect furret PowerPoint 1 01-20-2012 06:55 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 04:35 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft