ingame macroing
Moderators: JRL, Dorian (MJT support)
ingame macroing
Hi is there a way to send a keyboard scan code to other program from within macro scheduler? for example sending a "i" to the game to bring up game character's inventory. (sengind a text to the game works all right but activate game's hot keys I need to send it actual key's scan code)
Scan code = ASCII code?
E.g. MSched command ASCII>73 = i
To write the capital letter: I
E.g. MSched command ASCII>73 = i
To write the capital letter: I
Code: Select all
//Shift down
ASCII>16
//character i
ASCII>73
//Shift up
ASCII>160