Beispiel #1
0
 public FunctionCall type(string arg_txt)
 {
     return(delegate()
     {
         KeyboardActionPerformer.Type(arg_txt, script.TypingSpeed.GetDouble());
         return FunctionResult.Continue;
     });
 }
Beispiel #2
0
        public FunctionCall keyup(string arg_txt)
        {
            Keys key = ParseKey(arg_txt);

            return(delegate()
            {
                KeyboardActionPerformer.KeyUp(key);
                return FunctionResult.Continue;
            });
        }