Hi there.OMG I want to do EXACTLY that but i have no idea how to use AHK. I've downloaded it and all the technical mumbojumbo scrambles my brain. Can you tell me how you did it? Changing the Pen's lower button to "Go Back" and the top to "Go Forward" would be absolutely PERFECT! Please help. Thank You
Just to clarify for you, what I have had working is using just the top button, as this is the only button that connects by bluetooth. This means I can be standing away from the device and control powerpoint slides.
(For the side buttons, based on what herrkjeldsen has posted above, it looks like you need to hold a side button while tapping the pen to the screen. This wouldn't work as a remote presenter).
I can understand that AHK will scramble your brain - here's a basic set of instructions that might help:
(these should let you go forward with a single click of the purple button, and go back with a double click of the purple button).
- Download and install Autohotkey
Installer from AutoHotkey
Choose “Express Installation”, and once it's done Choose “Exit” - Create your script
In File Explorer, go to your Documents folder, Right-click and select “New AutoHotkey Script”.
Right-click on this file to edit it in Notepad, then add these four lines to the bottom :
#F20:: Send {Browser_Forward}
return
#F19:: Send {Browser_Back}
return
- Save the file, then double-click it in Explorer to run.
It should now launch desktop Onenote on single-click of the purple pen button, and Snipping Tool on double-click.
- If it's working how you want, the only thing left is to add it to your startup:
Right-click the file in Explorer, and select “Create Shortcut”
Right-click the windows button on your taskbar and select “Run” (near the bottom), then type “shell:startup” and press OK -this should open your startup folder.
Drag the shortcut you created above into your startup folder.
Good luck!