Jump to content

RHK AHK Topic Thread

Ryouichi Kiriyami

Ive already created 4 posts on Auto hot key. so im going to make a combination thread and just bump/update the first post when i have a new question and link the answer to it. so heres the links to the others for anyone wondering as well.

 

http://linustechtips.com/main/topic/359467-ahk-script-password-protection/#entry4882915

 

http://linustechtips.com/main/topic/358387-auto-hot-key-cat-problem/

 

http://linustechtips.com/main/topic/353523-auto-hot-key-script-internet/

 

http://linustechtips.com/main/topic/347525-creating-a-script/

 

Question 1:

i have no idea how to make scroll lock work on AHK. what im trying to acomplish is. whenever the scroll lock key is ON. the a key will send the d key. and the s key will send the f key. but only when the scroll lock key is on.  i dont know how to set the scroll lock key to on in any script

 

Answer 1 ....got a script running how i want c:

$a::
   GetKeyState, state, ScrollLock, T ; state will be 'D' if ScrollLock is on or 'U' if it is off

   if ( state = "D" )
      send d
   Else
      send a
return


$s::
   GetKeyState, state, ScrollLock, T ; state will be 'D' if ScrollLock is on or 'U' if it is off

   if ( state = "D" )
      send f
   Else
      send s
return

Basically it makes the a send d when scroll locl is on and send f on s when its on but  a and s regularly when its off.

 

 

the guides arent very helpful to me. so help would be greatly appreciated. thank you for your time

"1 shot 1 kill. or in my case 500 shots and a questionable death" ~ Carlos Hathcock + Ryouichi

"Because its windows... it just happens..." ~ G33k 4 L1F3

My Build....sorta. close enough http://pcpartpicker.com/p/YMG4mG

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×