tempman Posted March 2, 2011 Share 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... Link to comment Share on other sites More sharing options...
wakillon Posted March 2, 2011 Share 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 Link to comment Share on other sites More sharing options...
tempman Posted March 2, 2011 Author Share Posted March 2, 2011 thankS!!! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now