As i see this old plugin doesnt have a post (maybe was posted on the old forum)
USAGE: Put the dll on scripts folder and put on globals
Example of use (on focus of textfield)

DOC: https://msdn.microsoft.com/es-es/librar ... .110).aspx (SEE COMMENTS)
Source code (needs Lua.cs previously posted 1000 times)
USAGE: Put the dll on scripts folder and put on globals
require("SendKeys")
Example of use (on focus of textfield)
SendKeys("KkK ^A^C^V^V^V")

DOC: https://msdn.microsoft.com/es-es/librar ... .110).aspx (SEE COMMENTS)
Source code (needs Lua.cs previously posted 1000 times)
using LuaVM.Utilities.Lua;
using RGiesecke.DllExport;
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
namespace SendKeys
{
public class SendKeysModule
{
[DllExport("luaopen_SendKeys", CallingConvention.Cdecl)]
public static int luaopen_SendKeys(IntPtr L)
{
Lua.lua_register(L, "SendKeys", luaSendKeys);
return 0;
}
public static int luaSendKeys(IntPtr L)
{
System.Windows.Forms.SendKeys.SendWait(Lua.lua_tostring(L, 1));
return 0;
}
}
}