Results 1 to 2 of 2

Thread: Is it possible to copy and paste a variable?

  1. #1
    Join Date
    May 2018
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default Is it possible to copy and paste a variable?

    I'm creating a non-runescape bot. The bot needs to input information into a html form box in a web browser.

    At the moment the bot is using TypeSend to enter information from a string.

    Code:
    TypeSend(input_information);
    Instead of the bot typing out the string. Is it possible to have the bot paste it in the input box instead?

    Would anybody know how to do this?

  2. #2
    Join Date
    Sep 2018
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Maybe this would work better?
    Code:
    procedure SendKeys(const s: string; keywait, keymodwait: integer);
    SendKeys('Hello, World', 100, 30);

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
  •