text-capture

How To Capture Text Using Mouse Pointer And Keyboard Shortcuts?

只愿长相守 提交于 2019-12-05 21:24:10
问题 i want to capture text from opened windows using mouse pointer and keyboard shortcut using C# or java ( like babylon ) , so what i need to know and how to implement it ? what are the libraries i need to use ? or can i use winapi ? 回答1: Use a scripting language to create a draft of what you want to do. You can use programs like AutoHotKey or AutoIt . Note, that thy include auto recorder, that gives you a basic draft. You can compile those scripts to executables, and call them from C# or Java

How To Capture Text Using Mouse Pointer And Keyboard Shortcuts?

余生颓废 提交于 2019-12-04 03:25:46
i want to capture text from opened windows using mouse pointer and keyboard shortcut using C# or java ( like babylon ) , so what i need to know and how to implement it ? what are the libraries i need to use ? or can i use winapi ? Use a scripting language to create a draft of what you want to do. You can use programs like AutoHotKey or AutoIt . Note, that thy include auto recorder, that gives you a basic draft. You can compile those scripts to executables, and call them from C# or Java using Shell Execute ( c# ; java (exec) ) or run as new Process ( c# ; java (process builder) ). Latter is