Hey I'm new to this and kind of stuck, I'm trying to make a script that appends the clipboard on change to a text file.
I'm doing it with this:
Code:
OnClipboardChange:
FileAppend, %clipboard%, C:\Documents and Settings\username\Desktop\dump.txt
return
Now it works the first time it is run, placing the clipboard in the text file. But when the clipboard is changed it doesn't work and I'm at a loss for why. When I read the help page on "onclipboardchange" it seems like it should be appending whenever I change the clipboard, but it isn't.
And kind of unrelated but I haven't figured it out, how do you just print characters/start a new line? Ideally I'd want after it prints the new clipboard to put on a new line "-----------" and then put the next clipboard after that as a means of separating the clipboards for easier reading.
Thanks for the help.