AutoHotkey Community

It is currently May 26th, 2012, 11:24 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 1 post ] 
Author Message
 Post subject: My Notes 1.0
PostPosted: November 8th, 2008, 6:48 pm 
Offline

Joined: November 29th, 2007, 2:36 pm
Posts: 43
Location: Romania
My Notes 1.0

Image

Create text documents with your notes

Code:
#SingleInstance Force
#Persistent



ProgramName = My Notes
Version = 1.0
Copyright = Created By Cristi
Description = Put the clipboard content to file
xTrayIcon = C:\Program Files\Windows NT\Accessories\WORDPAD.EXE

SetWorkingDir %A_ScriptDir%


Menu, Tray, Tip, %ProgramName% - %Version%
Menu, Tray, Icon, %xTrayIcon%
Menu, Tray, Add, &About..., About
Menu, Tray, Default, &About...
Menu, Tray, Add, E&xit, Quit
Menu, Tray, NoStandard
Menu, Tray, Add, &Notes, Notes


FormatTime, Data, ddMMyy, dd-MM-yyyy



+S::
clipboard =
Send ^c
ClipWait, 0.5
if ErrorLevel
{

TrayTip, My Notes, Clipboard is Empty..`n%Clipboard%, , 16
Sleep, 1200
TrayTip
return

}
FileCreateDir, Notes
FileAppend, %Clipboard%`n, %A_ScriptDir%\Notes\%Data%.txt

TrayTip, My Notes, Content Added`n%Clipboard%, , 16
Sleep, 1200
TrayTip

return
FileCreateDir, Notes
FileAppend, %Clipboard%`n, Note.txt
Send, {enter}

TrayTip, My Notes, Content Added`n%Clipboard%, , 16
Sleep, 1200
TrayTip

return

Notes:
Run ,%A_ScriptDir%\Notes\%Data%.txt
return

!F8::
FileRecycle, %A_ScriptDir%\Notes\*.txt
MsgBox, 8192,  , Notes Deleted..
return


About:

   MsgBox, 8192, About ..., %ProgramName% v%Version%`n`n%Description%`n`n%Copyright%
   return

   
Quit:
ExitApp
return

_________________
Image


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1 post ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: Bing [Bot] and 11 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group