I was trying to run a program, or even a "txt" from my script, using os.excute
, but would there be any method for me to specify the coordinates where the screen will open?
More specifically I want to open a virtual keyboard that I made in C#, but it always comes in the same position, I wanted to execute it and choose its opening position. Code:
local path_virtual_keyboard = 'C:\\Users\\Public\\Documents\\HIKeyboard.exe'
RunProgram(open, path_virtual_keyboard)
OR
local path_virtual_keyboard = 'C:/Users/Public/Documents/HIKeyboard.exe'
os.execute(path_virtual_keyboard)
If anyone can help, I am grateful