Amit Agarwal 利用 Autohotkey 編寫了一個非常好用的記事本。
要利用這個記事本,你的電腦必須要安裝 Autohotkey ,以下是我作了一些更改的版本,因為我的電腦不懂怎么的,ctrl+alt+a 不能啟動記事本,所以我把它改去 alt+a。
1. 開啟你的notepad, 輸入以下程式碼。
!A:: ; Show the Input Box to the user. inputbox, text, Diary,,,300,100 ; Format the time-stamp. current=%A_DD%/%A_MM%/%A_YYYY%, %A_Hour%:%A_Min% ; Write this data to the diary.txt file. fileappend, %current% - %text%`n, diary.txt
return
2. 點按『File』-》『Save as』,『File name』輸入"diary.ahk",記得把引號一并輸入,不然notepad會把文件名稱儲存為 diary.ahk.txt,然后點按『Save』.
3. 現在點按『diary.ahk』,Autohotkey 就會制造一個記事本,點按『alt+a』即可啟動記事本的輸入視窗。
4. 輸入你的事項,然后點按『OK』,記事本就會把你的事項儲存到『diary.txt』的檔案內。
相關文章:
如何讓Windows的notepad記事本變成日記簿
感謝!!
回覆刪除