Results 1 to 3 of 3

Thread: Form Help

  1. #1
    Join Date
    Oct 2006
    Posts
    517
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Form Help

    I tried creating a form, but it kinda failed.

    I want to make an auto talker, and use the check boxes to enable the talking for each F button; this is the first time I've EVER tried making a form, heres what I had:



    I don't really know how to work it, so can anyone help?

  2. #2
    Join Date
    Jul 2006
    Posts
    152
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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.

  3. #3
    Join Date
    Oct 2006
    Posts
    517
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I was only mucking around with forms, it has no script. I can easily make a talker though. I just want it so you can edit what you say in the form.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •