Reply
Logi Nu
garywood84
Posts: 2
Registered: ‎03-05-2010
0

R400 play button

Is it possible to change the function of the buttons on the R400 wireless presenter?

 

When the play button is pressed by default it plays the PowerPoint show from the first slide, and pressing it again exists the show.  This is "dangerous" because if you inadvertently press it during your show, the show exits back to PowerPoint.  Pressing the play button again starts the show from the beginning again, and there's no way to jump back to where you were without skipping through ever slide (or going to the computer itself).

 

What I'd like to do is make the play button work the option in PowerPoint called "Play from current slide".  That way, if you inadvertently press the button during a presentation, a second press will take you back to exactly where you were.

 

I don't understand why Logitech didn't make it work this way straight out (since it would have started play from the beginning anyway if you'd only just opened up your presentation).  But, since they didn't is there any way to change it?

 

Thanks,

 

Gary

Logi Browser
Chris100
Posts: 11
Registered: ‎03-13-2010
0

Re: R400 play button

[ Edited ]

I posted a solution to this probelm in the old forum (before they rearranged them.)   

 

I will paste the solution here as well because I think it is really useful:

 

- Chris

 

Aovid Problems with Launch Slideshow Button

 

 

The "Launch Slideshow" button on the R800 alternates between F5 and ESC when you press it.

 

This is a disaster in some versions of PowerPoint. If you are mid presentation and you hit the button, it sends ESC which drops you out of presentation mode. Press it again, and it sends F5, which starts PowerPoint AT THE BEGINNING. Then you have to very unprofessionally scramble over to your PC and advance slides to where you were.

What I did is download and install AutoHotKey, which is a utility that intercepts and remaps key strokes. I created a simple script that remaps the F5 key to Shift-F5. (Shift-F5 is "Resume" in powerpoint). The one line script looks like this:

F5::+F5

Now, if I press the "Launch" button mid show, it still drops out of presentation mode, but if I press it again, it resumes where I left off. (I did not want to disable ESC because you need to press ESC when you really do want to get out!)

 

 

Logi Nu
Calife
Posts: 1
Registered: ‎05-16-2011
0

Re: R400 play button

Many thanks for the tip Chris100, indeed the Logitech R400's black screen button does not work on french powerpoint because the french powerpoint (2007, 2010) maps the ";" key or the "b" key to the black screen (and not the "." key). Thanks to your tip I was able to find a solution to this. Here is the AutoHotKey script for the ones looking for a solution to this problem (also includes your suggestion to the F5 problem):


F5::+F5
sc034::b

 

Happy presenting :smileyhappy:

Logi Nu
Coles
Posts: 1
Registered: ‎08-23-2011
0

Re: R400 play button

How can I make the R400 work with Picasa.

I want to move to next slide or back to the last slide

Logi Nu
axelian
Posts: 1
Registered: ‎08-31-2011
0

Re: R400 play button

Hi from France and thanks for the trick with autokey.

 

When i use play button i now have a blanck button (but white screen that may be noisy for the one who's making the show. )

 

Any help to get a black screen ? maybe it's in powerpoint this time ?

 

Thanks !

alex

 

Logi Nu
__fm__
Posts: 2
Registered: ‎05-31-2013
0

Re: R400 play button

[ Edited ]

Hi,

 

Here is my AutoHotKey script, which you can compile as an EXE and run in the background all the times. With the help of the #IfWinActive command, the keystrokes will only be replaced whenever Powerpoint and / or the slideshow are active.

 

SetTitleMatchMode 2
IfWinActive, Diaporama PowerPoint
{
 .::+.
}
#IfWinActive, Microsoft PowerPoint
{
 F5::+F5
}

Depending on the language of your Microsoft Office suite, you will need to adapt the window name ("Diaporama PowerPoint"). You can use AutoHotKey's "Window Spy" to get the correct name.

 

I posted a new topic in this forum to help all people having troubles with their Presenter (not only the R400) and a French Office 2010 : (Finally) Get the "Blank Screen" key to work!!

 

Cheers

Fred