Jump to content

Any proper note taker / clip writer scripts?


iamtheky
 Share

Recommended Posts

Here is my offering, it works, but there has to be better (or that accept and output more than text).  whatever i copy, write to this file.

include <Misc.au3>

$hfile = fileopen("notes.txt" , 1)
$lastclip = ""

while 1

If _ispressed("1B") Then
    fileclose($hfile)
    Exit
EndIf

$clip2 = ClipGet()

If $clip2 = $lastclip Then
    sleep(100)
    Else
    filewrite($hfile , $clip2 & @CRLF & @CRLF)
    sleep(100)
Endif

$lastclip = $clip2

wend
Edited by boththose

,-. .--. ________ .-. .-. ,---. ,-. .-. .-. .-.
|(| / /\ \ |\ /| |__ __||| | | || .-' | |/ / \ \_/ )/
(_) / /__\ \ |(\ / | )| | | `-' | | `-. | | / __ \ (_)
| | | __ | (_)\/ | (_) | | .-. | | .-' | | \ |__| ) (
| | | | |)| | \ / | | | | | |)| | `--. | |) \ | |
`-' |_| (_) | |\/| | `-' /( (_)/( __.' |((_)-' /(_|
'-' '-' (__) (__) (_) (__)

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...