Create command

Discussion, questions and support.
Post Reply
david
Posts: 21
Joined: Jun 1st, ’17, 20:08

Post by david » Jun 14th, ’18, 00:38

Hello,

I am trying to make a command that inputs end, space, delete and then wait for 150ms so that I can repeat and give a small time in between.

I tried this command:

Send {End}
Send {Space}
Send {Del}
Sleep 150

But it throws an error saying

Error at line 16.
Line Text: %
Error: This parameter contains a variable name missing its ending percent sign.

The program will exit.


Can you kindly help me see what is missing?

Thanks a lot for the help! :)
User avatar
Marko
Posts: 1718
Joined: Mar 2nd, ’13, 21:02

Post by Marko » Jun 14th, ’18, 06:45

It should work. This is even simpler:

Type: Send

Code: Select all

{End}{Space}{Del}{150}
Post Reply