Jump to content

Not sending special characters like "!" why?


Recommended Posts

I am currently working on a auto typer for a small project im working on and its printing our letter fine but when it comes to printing out special characters like !@/: its not working, it doesnt type any of the characters at all

 

#cs ----------------------------------------------------------------------------

 AutoIt Version: 3.3.14.2
 Author:  User

 Script Function:
    Auto Type

#ce ----------------------------------------------------------------------------

HotKeySet("{ESC}","Quit")
$msg = InputBox("Please Enter The Message", "Please enter the message that you want the auto typer to type.","","",300,150)
MsgBox(0,"The Bot Has Started!", "The bot has started. Press [ESC] to stop it!")
$x = WinActivate("text - Notepad")
WinMove("text - Notepad", "", 0, 0)
Sleep(2000)



While(1)

Send($msg)
Sleep(2000)
Send("{ENTER}")




Func Quit()
    MsgBox(0, "Notification", "Bot has quit")
    Exit
EndFunc

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...