You need to tell SCAR that what you put in Edit10 is what you are going to say. Have you done that?
The second step would be that you say if when the F Button is down. Have you done that?
The THIRD would be is it enabled? Have you done that?
For step one, (I'm not good at forms) but I think you would say something like edit1:=say[1], with an array of "say"'s. then have typesend(say1);
For step two, you would simply say if FKeyDown(FKey...) then TypeSend(say1)
For step three, you would add another If statement, which could be combined with Fkey.
SCAR Code:
function DoType:boolean;
begin
if EnableF1 then
begin
if FKeyDown(1) then typesend(say1)
end;
Posting the script would help, but I hope that helps too.