mamamamamamama Posted April 25, 2009 Share Posted April 25, 2009 Hey guys, I just wrote this nifty ahk script. What it does is, it monitors for changes in the clipboard, and dumps them to a txt file (well, any kind of file really). It also features note prompt, which is fired up using a global shortcut, and appends the entry to a file. Small, unobtrusive, and fast. Here's a screencast : http://www.screentoaster.com/watch/stUktdS...aker_ahk_script Try it out: #Persistent ;#NoTrayIcon filepath = e:\desktop\clipboard dump.txt notepath = e:\desktop\notes.txt #n::gosub, takenote Critical OnClipboardChange: if A_EventInfo = 1 { WinGetActiveTitle, Titlevar FormatTime, Datevar, ,dd.MM.yyyy FormatTime, Timevar, ,HH:mm:ss FileAppend, ( [%Timevar%] [%Datevar%] [%Titlevar%] %clipboard% ), %filepath% return } return takenote: InputBox, notevar, Enter a note,,,200,100 FileAppend, ( [%Timevar%] [%Datevar%] %notevar% ), %notepath% return Link to comment https://www.neowin.net/forum/topic/763668-clipboard-dumper-unobtrusive-note-taker/ Share on other sites More sharing options...
Recommended Posts