11101
General Software Discussion / Re: General brainstorming for Note-taking software
« Last post by tomos on February 01, 2007, 04:11 AM »I didnt know you could change the context menu there! (I knew you could do it somewhere
)
or you can make a toolbar/menu button with the advantage of being able to create a keyboard shortcut - or better again do both
from the above thread:
again: right click a menu/toolbar> customise.
then right click toolbar where you want the button & select paste (paste the above)
That will give you a button which creates text file with title:
Notes_yyyy.MM.dd.txt (i.e. with todays date)
- you can change this to whatever you want on this line
there's tutorials at that forum as well for creating menus, toolbars, etc
)from this point you can edit it how you like. just make sure you put the command in the "function" field bit.
or you can make a toolbar/menu button with the advantage of being able to create a keyboard shortcut - or better again do both

from the above thread:
<?xml version="1.0"?>
<button display="both" effect="gray">
<guid>{8AA48DFB-7BA1-48DA-A412-3ACFFC2BEFA1}</guid>
<label>Create text file (no rename mode)</label>
<icon1>162</icon1>
<function type="batch">
<instruction>runmode hide</instruction>
<instruction>echo.>"Notes {DATE|yyyy.MM.dd}.txt"</instruction>
<instruction>dopusrt /cmd Select MAKEVISIBLE "Notes {DATE|yyyy.MM.dd}.txt"</instruction>
</function>
</button>
<button display="both" effect="gray">
<guid>{8AA48DFB-7BA1-48DA-A412-3ACFFC2BEFA1}</guid>
<label>Create text file (no rename mode)</label>
<icon1>162</icon1>
<function type="batch">
<instruction>runmode hide</instruction>
<instruction>echo.>"Notes {DATE|yyyy.MM.dd}.txt"</instruction>
<instruction>dopusrt /cmd Select MAKEVISIBLE "Notes {DATE|yyyy.MM.dd}.txt"</instruction>
</function>
</button>
again: right click a menu/toolbar> customise.
then right click toolbar where you want the button & select paste (paste the above)
That will give you a button which creates text file with title:
Notes_yyyy.MM.dd.txt (i.e. with todays date)
- you can change this to whatever you want on this line
<instruction>echo.>"Notes {DATE|yyyy.MM.dd}.txt"</instruction>
there's tutorials at that forum as well for creating menus, toolbars, etc

Recent Posts

)