dallasgfx Posted March 14, 2009 Posted March 14, 2009 hi every buddy How can I register all words wich i entered to the clipboard and put the word in a text file thanks you
Andreik Posted March 14, 2009 Posted March 14, 2009 hi every buddy How can I register all words wich i entered to the clipboard and put the word in a text file thanks youSomething like this? $LAST = "" While 1 $DATA = ClipGet() TrayTip("Clipboard",$DATA,1) If $DATA <> "" And $DATA <> $LAST Then $FILE = FileOpen("log.txt",1) FileWriteLine($FILE,$DATA) $LAST = $DATA FileClose($FILE) EndIf WEnd
dallasgfx Posted March 14, 2009 Author Posted March 14, 2009 Something like this? $LAST = "" While 1 $DATA = ClipGet() TrayTip("Clipboard",$DATA,1) If $DATA <> "" And $DATA <> $LAST Then $FILE = FileOpen("log.txt",1) FileWriteLine($FILE,$DATA) $LAST = $DATA FileClose($FILE) EndIf WEnd no my friend for exemple the code work and he registre every word i enter from the clip board and when i end the code all the word put in a texte file thanks you
Andreik Posted March 14, 2009 Posted March 14, 2009 no my friend for exemple the code work and he registre every word i enter from the clip board and when i end the code all the word put in a texte filethanks youDon't be trick by there TrayTip, check your script dir for log.txt
dallasgfx Posted March 14, 2009 Author Posted March 14, 2009 Don't be trick by there TrayTip, check your script dir for log.txtno ,i see log.txt but i don 't want the code in log.txt i want every word i enter in the computer when the code works
Developers Jos Posted March 14, 2009 Developers Posted March 14, 2009 (edited) no ,i see log.txt but i don 't want the code in log.txt i want every word i enter in the computer when the code worksAs in: everything you type ?Also referred to as keylogger? Edited March 14, 2009 by Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
dallasgfx Posted March 14, 2009 Author Posted March 14, 2009 As in: everything you type ?Also referred to as keylogger?yes , everything i type when the code works
Developers Jos Posted March 14, 2009 Developers Posted March 14, 2009 Lets not go there... click SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Recommended Posts