AutoHotKey: Can I asign shift + number the way so it work like usual -


a few days ago coca cola bottle decided accidently hit keyboard. after dried off it's working fine. however, there strange problem.

the shift key working numbers 1 2 3 4 5 6 7 8 9 , 0, however, when try use standard windows combination for

shift+1  shift+2  shift+3  

it doesn't work. again shift key , numbers working fine, hitted nothing. found autohotkey program , thinking asign

shift+1 = !  shift+2 = @  shift+3 = #  shift+4 = $  shift+5 = %  shift+6 = ^  shift+7 = &  shift+8 = *  shift+9 = (  shift+0 = )  

as meant be

all other shift + key combinations working fine shift + r = r

i have browsed tutorial, however, not being programmer understood close nothing. can me here?

my keyboard gaming cyborg keyboard shine in different colors , have paid €80 it, wish keep on using it...

big thanks, guys!!!

normally have used +nr, sure used send, {sign} method here. also, since define hotkey sane output, need $ sign in front of every hotkey prevent each key looping self.

#singleinstance force #installkeybdhook #persistent appname=keymod menu, tray, tip, %appname% menu, tray, icon , shell32.dll, 45, 1 traytip, %appname%, started, 1 soundbeep, 300, 150 settitlematchmode, 2 setworkingdir %a_scriptdir% $+1::send, {!} $+2::send, {@} $+3::send, {#} $+4::send, {$} $+5::send, {`%} $+6::send, {^} $+7::send, {&} $+8::send, {*} $+9::send, {(} $+0::send, {)} 

Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -