SCAR Code:
program Autotalker;
Const
F1 = 'Hello';//What to type F1
F2 = 'Hello';//What to type F2
F3 = 'Hello';//What to type F3
F4 = 'Hello';//What to type F4
F5 = 'Hello';//What to type F5
F6 = 'Hello';//What to type F6
F7 = 'Hello';//What to type F7
F8 = 'Hello';//What to type F8
F9 = 'Hello';//What to type F9
F10 = 'Hello';//What to type F10
procedure F1Talk;
begin
if(IsFKeyDown(1))then
begin
sendkeys(F1);
SendKeysVb('{ENTER}',false);
end;
until(false)
end.
That's what I have.
How can I make it so, if I press F1 once, it displays F1's message, F2 displays F2 Message and so on?