Results 1 to 4 of 4

Thread: how can i make it type something

  1. #1
    Join Date
    Nov 2011
    Posts
    45
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default how can i make it type something

    what should i use to make it type some letters or numbers?

  2. #2
    Join Date
    Feb 2006
    Posts
    3,044
    Mentioned
    4 Post(s)
    Quoted
    21 Post(s)

    Default

    Simba Code:
    TypeSend('I Am A Letter, And I Am A Number 1')
    Sendkeys('I Am A Letter, And I Am A Number 1')


    Your should check out Simba / SRL functions out.


    ~Home

  3. #3
    Join Date
    Nov 2011
    Posts
    45
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    what's difference between those 2?

  4. #4
    Join Date
    May 2006
    Posts
    241
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You can also use this - it has the added bonus of easily toggling "enter" on and off. (Simply change 'true' into false)
    Code:
    TypeSendEx(Text, True);
    TypeSend is included in SRL. SendKeys seems to be buildt into Scar/Simba itself (I may be mistaken). I dont know if they are different; I could not find the code for SendKeys.

    Code:
    {*******************************************************************************
    procedure TypeSend(Text: string);
    By: N1ke!
    Description: Sends human like text.
    *******************************************************************************}
    procedure TypeSend(Text: string);
    begin
      TypeSendEx(Text, True);
    end;
    As you see, TypeSend basically calls TypeSendEx without the option of toggling "enter" on and off.
    I believe in miracl... colour macroing.
    RS is a conspiracy to ensure the birth of new programmers!

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
  •