Ok I knocked out something that works. Someone might have a better way to do this.. but it does serve it's purpose.
Hopefully it's useful to someone else with similiar needs.
I like to get books from audible.com where the author reads it to you. Its easier for me, but I like to be able to take notes. so I took what was done with this script and made some changes that make it perfect for that. I close all other hot keys while Im working on this.
with only itunes and word open I can now perform some nice functions with my hands in the neutral position. I hate having to take my hands off and reach for the mouse, etc.:
Flip between docs with Caps
Rewind indefinately with k
Fast Forward Indefinately with l
One 5 second rewind with it starting the playback again with f
Code:
CapsLock::
SendPlay, {Alt Down}{Tab Down}{Tab UP}{Alt UP}
return
#IfWinActive, iTunes
k:: ; FastForward
Run C:\Program Files (x86)\iTunes\Scripts\Rewind.vbs
return
#IfWinActive, iTunes
l:: ; FastForward
Run C:\Program Files (x86)\iTunes\Scripts\FastForward.vbs
return
#IfWinActive, iTunes
f:: ; Rewind
Run C:\Program Files (x86)\iTunes\Scripts\Rewind.vbs
sleep 100
SendPlay, {Space}
SendPlay, {Space}
return