Author Topic: Anyone got ahk volume script for tenkeypad  (Read 3156 times)

0 Members and 1 Guest are viewing this topic.

Offline msimon

  • Thread Starter
  • Posts: 38
Anyone got ahk volume script for tenkeypad
« on: Sun, 02 October 2011, 09:53:25 »
Does anyone know how to create a script to use the - and + on the tenkeypad with the alt or win key as a the activating key for volume control.

I have a simple one on my tenkeyless keybaord now but when my tenkeypad arrives it will be in full use for such things.

Much appreciated.

Offline pyro

  • Posts: 177
Anyone got ahk volume script for tenkeypad
« Reply #1 on: Sun, 02 October 2011, 14:18:08 »
Code: [Select]

NumpadAdd::Send {Volume_Up 5}
NumpadSub::Send {Volume_Down 5}


Everything you need is here http://www.autohotkey.com/docs/KeyList.htm

Offline msimon

  • Thread Starter
  • Posts: 38
Anyone got ahk volume script for tenkeypad
« Reply #2 on: Sun, 02 October 2011, 14:38:57 »
Quote from: pyro;425135
Code: [Select]
NumpadAdd::Send {Volume_Up 5}
NumpadSub::Send {Volume_Down 5}

Everything you need is here http://www.autohotkey.com/docs/KeyList.htm

Thankyou, +rep for you if it existed so this will have to suffice :kiss:

Offline msimon

  • Thread Starter
  • Posts: 38
Anyone got ahk volume script for tenkeypad
« Reply #3 on: Sun, 02 October 2011, 15:37:09 »
Im having another problem.

I need the NumpadEnter to be my activate button for the NumpadAdd and Sub so NumpadEnter+NumpadAdd.

How do i go by adding that in, the help stuff is nice just doesnt get to the stuff i realy need to learn.
I did one back ago with !PgUp::Send (Win+Page Up) and that worked perfectly just this wont do what i want.

What am i missing?

Offline pyro

  • Posts: 177
Anyone got ahk volume script for tenkeypad
« Reply #4 on: Sun, 02 October 2011, 16:35:35 »
try
Code: [Select]

NumpadEnter & NumpadAdd::Send {Volume_Up 5}

Offline msimon

  • Thread Starter
  • Posts: 38
Anyone got ahk volume script for tenkeypad
« Reply #5 on: Sun, 02 October 2011, 16:45:41 »
Quote from: pyro;425168
try
Code: [Select]

NumpadEnter & NumpadAdd::Send {Volume_Up 5}

 
Success, Thankyou.

Offline slueth

  • Posts: 577
Anyone got ahk volume script for tenkeypad
« Reply #6 on: Sun, 02 October 2011, 20:34:15 »
Quote
Alt & NumpadAdd::
Send {Volume_Up}
return

Alt & NumpadSub::
Send {Volume_Down}
return

Alt & NumpadUp::
Send {Volume_Mute}
return

Alt & NumpadClear::
Send {Media_Play_Pause}
return

Alt & NumpadLeft::
Send {Media_Prev}
return

Alt & NumpadRight::
Send {Media_Next}
return

This one uses alt and the numpad, pause/play,mute, next song, previous song, volup, voldown.

Offline msimon

  • Thread Starter
  • Posts: 38
Anyone got ahk volume script for tenkeypad
« Reply #7 on: Tue, 04 October 2011, 09:43:14 »
Quote from: slueth;425250
This one uses alt and the numpad, pause/play,mute, next song, previous song, volup, voldown.

Thankyou for this.