tempman 0 Posted March 2, 2011 Hi, I have this: $ctrlc = ClipGet() $file = FileOpen("ctrl+c.txt", 1) If $file = -1 Then Exit FileWrite($file, "Clipboard contains: " & $ctrlc & @CRLF) FileClose($file) I want to make that each time ClipGet() been changed, to write content in txt file... Share this post Link to post Share on other sites
wakillon 403 Posted March 2, 2011 Try this : #include <file.au3> Global $ctrlcOld While 1 $ctrlc = ClipGet ( ) If $ctrlc <> $ctrlcOld Then _FileWriteLog ( @ScriptDir & "\ctrl+c.txt", "Clipboard contains: " & $ctrlc & @CRLF ) $ctrlcOld = $ctrlc EndIf Sleep ( 1000 ) WEnd AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Share this post Link to post Share on other sites