cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X

Why is AutoIt script toggling caps lock on and off when it runs

SYNDAKIT
14-Alexandrite

Why is AutoIt script toggling caps lock on and off when it runs

Could anyone tell me why this script toggles caps lock on and off? 

 

 


Send("{ALTDOWN}{ALTUP}tel")
Sleep(800)
Send("{ALTDOWN}{ALTUP}{RIGHT}{RIGHT}{RIGHT}{RIGHT}{DOWN}{ENTER}")
Sleep(800)
Send("rel{SHIFTDOWN}-{SHIFTUP}model{SHIFTDOWN}-{SHIFTUP}name{ENTER}{TAB}{TAB}{TAB}{SHIFTDOWN}{HOME}{SHIFTUP}{CTRLDOWN}c{CTRLUP}{TAB}{SPACE}")
Sleep(800)
Send("{SHIFTDOWN}{TAB}{SHIFTUP}{SPACE}")
Sleep(800)
Send("{CTRLDOWN}o{CTRLUP}")
Sleep(800)
Send("{TAB}{TAB}{TAB}{CTRLDOWN}v{CTRLUP}.drw")

1 ACCEPTED SOLUTION

Accepted Solutions

Try the following:

 

Opt("SendCapslockMode", 0)

Send("{CapsLock off}")

View solution in original post

1 REPLY 1

Try the following:

 

Opt("SendCapslockMode", 0)

Send("{CapsLock off}")

Top Tags