i need for utility, which will monitor for changes in clipboard and then clipboard will changed (for example, i copy text from browser Opera), information (text, formatted text, images, etc) automatically copy in opened document Microsoft Word in background and also add linefeed character.
help me?
-laburj
If items you were interested in only showed up in the clipboard because you copied them with a hotkey (default Ctrl-C), then it would be easy to write a script that:
1. copies the selected text to the clipboard
2. remembers the current window and activates the open Word window
3. pastes the text
4. adds a linefeed
5. returns to the original window
Say you assigned the script to Shift-Ctrl-C. Then anytime you hit the hotkey when text was selected, it would be automatic.
Monitoring the clipboard for text that showed up there automatically, or via a mouse-click (right-click,copy), would make this more complicated. But if you were always going to use the keyboard, this would be easy.