tempman Posted March 2, 2011 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...
wakillon Posted March 2, 2011 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.18.0 X86 - SciTE 4.4.6.0 - WIN 11 24H2 X64 - Other Examples Scripts
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