Quote Originally Posted by Owltoid',index.php?page=Thread&postID=177223#post1 77223]


[quote='zutto',index.php?page=Thread&postID=177213# post177213]yeah

<Hotkey ScrollLockOn shift 0-9, A-Z, F1-F12, space, Oem5 except W, A, S, D, Q, E, M, L, P, I>

does work somehow but then again anything else than shift <number> doesnt work >_<

yes i dont get that language.. if it was more c++ like i would get it as of i code myself and that language functions look odd >_< no endfunction makes me cry[/quote]

Can you rephrase your question, please? I don't understand what you're trying to ask.[/quote]by reading topic name you maybe would :P[quote='olipcs',index.php?page=Thread&postID=177225 #post177225]Simplest way to get shift, alt, ctl.. working is defining a [url='http://hotkeynet.com/ref/keylist.html
<KeyList>[/url] first, with all the keys, like:
Code:
<Keylist myList 0-9, A-Z, F1-F12, space, Oem5 except W, A, S, D, Q, E, M, L, P, I>
and then creating a hotkey for them, which incorporates the shift, alt, ctr versions, like:
Code:
<Hotkey MyList; Shift MyList; Alt MyList; Ctrl MyList>
     <SendLabel w1, w2, w3, w4, w5>
                    <Key %Trigger%>
threw ScrollLockOn to <Hotkey MyList; Shift MyList; Alt MyList; Ctrl MyList> and it worked..

thanks..