What new plugins would you like?
Moderators: Hacker, petermad, Stefan2, white
PLS...Alextp wrote:2eugensyl
I remember Dos Navigator very good. I used it in DOS times, in 94-96...
Well AHK script will help. There are gurus here like SanskritFritz, majkinetor etc.
I want to put into external command for use in menu.
Can somebody do that?
It would be great.
Thank you in advance!
Best wishes,
My Best Wishes,
Eugen
Eugen
Code: Select all
$^q::
Run, notepad.exe c:\notebook.txt
WinWaitActive, ahk_class Notepad
SendInput, ^{End}`n`n----------------`n%A_YYYY%-%A_MM%-%A_DD% %A_Hour%:%A_Min%`n`n
Return
#IfWinActive, notebook.txt - Notepad ahk_class Notepad
Esc::Send, ^s!{F4}
Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.
- fenix_productions
- Power Member
- Posts: 1979
- Joined: 2005-08-07, 13:23 UTC
- Location: Poland
- Contact:
Sorry! It doesn't work.Hacker wrote:HTHCode: Select all
$^q:: Run, notepad.exe c:\notebook.txt WinWaitActive, ahk_class Notepad SendInput, ^{End}`n`n----------------`n%A_YYYY%-%A_MM%-%A_DD% %A_Hour%:%A_Min%`n`n Return #IfWinActive, notebook.txt - Notepad ahk_class Notepad Esc::Send, ^s!{F4}
Roman
The file AHK was compiled with last AutoHotkey and it stay in tray.
Unfortunately, CTRL-Q is in use by default in TC ( Quick View) and I don't want to change this.
Maybe CTRL-ALT-Q or SHIFT-ALT-Q it will be better.
Thanks again.
Best wishes,
My Best Wishes,
Eugen
Eugen
WORKS WELL! EXCELENT!fenix_productions wrote:Or use it:
http://fenixproductions.republika.pl/tc/notebook.zip
And looks also so good.
But...
Now I have need two tools for same aim:
- one for writing (notebook)
- one for viewing (notepad or something else)
Please open file and let me navigate inside.
I know it's more comfortable to open in editor, with button bar, but I think it is more intuitive to use same application.
It's no need to use two. Or maybe a check box SHOW/HIDE previous message.
About shortcuts see above.
Thank you too!

Best wishes,
My Best Wishes,
Eugen
Eugen
eugensyl,

Ctrl-Alt-Q - replace first line with:
Alt-Shift-Q - replace first line with:
HTH
Roman
What exactly does not work?Sorry! It doesn't work.
Well, you said Ctrl-Q.Unfortunately, CTRL-Q is in use by default in TC ( Quick View) and I don't want to change this.
Maybe CTRL-ALT-Q or SHIFT-ALT-Q it will be better.

Ctrl-Alt-Q - replace first line with:
Code: Select all
$^!q::
Code: Select all
$!+q::
HTH
Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.
Now it's work. Nice!Hacker wrote:eugensyl,What exactly does not work?Sorry! It doesn't work.
HTH
Roman
Let's doing better:
- Program is stand alone and stay in tray - no so bad - but must be started before first use
Question: how can I use in language.ini like external command even in menu even with shortcuts?
- Notepad don't exit with ESC with save default
- Sometimes window still minimized on start and I must found mouse and pointer and so on.
But the job is well. Thanks! I try to improve my self this.
Please don't be angry with me...

Best wishes,
My Best Wishes,
Eugen
Eugen
- fenix_productions
- Power Member
- Posts: 1979
- Joined: 2005-08-07, 13:23 UTC
- Location: Poland
- Contact:
Metapad does.eugensyl wrote: - Notepad don't exit with ESC with save default
"When we created the poke, we thought it would be cool to have a feature without any specific purpose." Facebook...
#128099
#128099
Now it' work fine. Everybody can test thisCtrl-Alt-Q - replace first line with:Alt-Shift-Q - replace first line with:Code: Select all
$^!q::
Code: Select all
$!+q::
$^!q::
Run, Notepad.exe c:\notebook.txt
WinWaitActive, ahk_class Notepad
SendInput, ^{End}`n`n%A_YYYY%-%A_MM%-%A_DD% %A_Hour%:%A_Min%`n----------------`n`n
Return
#IfWinActive, notebook - Notepad ahk_class Notepad
Esc::Send, ^s!{F4}
Compile first! If remake keep attention to case sensitive of windows title.
Work with any Notepad !!!
And, after the program it's start it's AVAILABLE WIDELY!
In this variant shortcuts is CTRL-ALT-Q.
Compiled variant can be external command for TC.
AHK - Is a good job!
Thank you to all who was involved.
Best wishes,
My Best Wishes,
Eugen
Eugen
Good tips! Very good. But not enough for that purpose, because ESC not save default file. Neither Metapad.ZoSTeR wrote:Internal command:
For Save on ESC you need something like NotePad2 or NotePad++Code: Select all
cmd /c echo %date% %time% >> c:\Notebook.txt && Notepad2.exe c:\Notebook.txt
Thanks!
Best wishes,
My Best Wishes,
Eugen
Eugen
eugensyl,

to
with
HTH
Roman
Well, run at startup.- Program is stand alone and stay in tray - no so bad - but must be started before first use

I am sorry, I do not understand the question.how can I use in language.ini like external command even in menu even with shortcuts?
I don't understand - are you saying that notepad when opened with another file than notebook.txt does not save and close with Esc? In that case, change the line- Notepad don't exit with ESC with save default
Code: Select all
#IfWinActive, notebook.txt - Notepad ahk_class Notepad
Code: Select all
#IfWinActive, ahk_class Notepad
Strange. Replace- Sometimes window still minimized on start and I must found mouse and pointer and so on.
Code: Select all
WinWaitActive, ahk_class Notepad
Code: Select all
WinWait, ahk_class Notepad
WinActivate, ahk_class Notepad
WinWaitActive, ahk_class Notepad
Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.
Thanks a lot!Hacker wrote:eugensyl,Well, run at startup.- Program is stand alone and stay in tray - no so bad - but must be started before first use
I am sorry, I do not understand the question.how can I use in language.ini like external command even in menu even with shortcuts?
I don't understand - are you saying that notepad when opened with another file than notebook.txt does not save and close with Esc? In that case, change the line- Notepad don't exit with ESC with save defaulttoCode: Select all
#IfWinActive, notebook.txt - Notepad ahk_class Notepad
Code: Select all
#IfWinActive, ahk_class Notepad
Strange. Replace- Sometimes window still minimized on start and I must found mouse and pointer and so on.withCode: Select all
WinWaitActive, ahk_class Notepad
HTHCode: Select all
WinWait, ahk_class Notepad WinActivate, ahk_class Notepad WinWaitActive, ahk_class Notepad
Roman
Best wishes,
My Best Wishes,
Eugen
Eugen
HTHHacker wrote:eugensyl,
Roman[/quote]
Watch what is done:
http://www.cjbihor.ro/tc/notebook.rar
DESCRIPTION:
===================================================
[English]
The agenda is available from anywhere in Windows.
Run Notebook.exe / Put shortcut in StartUp - first!
Start it with: Ctrl-Q
Quick Save and Exit: ESCAPE
-------------
Note:
- You can save file any time anywhere
- You can delete anything in file
- You can delete file. A new one will be created.
- File is stored in personal TEMP directory
==================================================
Thanks Hacker!
Well done, more than I expect.
Script is above, made by Hacker.
Best wishes,
My Best Wishes,
Eugen
Eugen