what should i use to make it type some letters or numbers?
what should i use to make it type some letters or numbers?
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![]()
what's difference between those 2?
You can also use this - it has the added bonus of easily toggling "enter" on and off. (Simply change 'true' into false)
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:TypeSendEx(Text, True);
As you see, TypeSend basically calls TypeSendEx without the option of toggling "enter" on and off.Code:{******************************************************************************* procedure TypeSend(Text: string); By: N1ke! Description: Sends human like text. *******************************************************************************} procedure TypeSend(Text: string); begin TypeSendEx(Text, True); end;![]()
I believe in miracl... colour macroing.
RS is a conspiracy to ensure the birth of new programmers!
There are currently 1 users browsing this thread. (0 members and 1 guests)