Jump to content

Recommended Posts

Posted (edited)

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

  Reveal hidden contents

Posted

You can support images by saving them to files and using html to display them along with the text.

Using html you could also make separated sections, with anchors.

Though I can't think of any other way of getting data than from the clipboard.

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
  • Recently Browsing   0 members

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