;================================ ;inbox capturing ;================================ ScratchFile = C:\thoughts.txt #/:: FormatTime, RightNow InputBox, OutputVar, Thinkpad, Type your thought,,375,135 if ErrorLevel = 1 return if OutputVar = OutputVar = %clipboard% FileAppend, %OutputVar%`n, %ScratchFile% return #j:: FormatTime, RightNow FileAppend, %clipboard%`n, %ScratchFile% return #k:: Run, %ScratchFile% #d:: MsgBox, 36,Deleting textfile..., Do you want to delete your thoughtsfile? (Press YES or NO) IfMsgBox No return FileDelete, %ScratchFile% exit