> One thing I need is to have the TW automatically open a new tiddler,
> in edit mode, with an automatically generated heading (something like
> "UserName-YYYYMMDDHHMM). When that tiddler is saved...a new tiddler is
> automatically opened using the same format.......so that there is
> always a ready tobe edited (written) tiddler open at all times.....
Try this instead:
In PageTemplate, add a special 'quickInput' DIV inside the
'displayArea', and above the 'tiddlerDisplay', like this:
----------------------------
<div id='displayArea'>
<div id='messageArea'></div>
<div id='QuickInput' refresh='content' tiddler='QuickInput'></div>
<div id='tiddlerDisplay'></div>
</div>
----------------------------
Then, in QuickInput, write:
----------------------------
<html><nowiki><form>
<textarea name="txt" rows="5" cols="60" style="width:100%"></
textarea><br>
<input type='button' value="save" onclick="
var who=config.options.txtUserName;
var when=new Date();
var title=who+when.formatString('-YYYY0MM0DD0hh0mm');
var msg=config.messages.overwriteWarning.format([title]);
if (store.tiddlerExists(title) && !confirm(msg)) return;
store.saveTiddler(title,title,this.form.txt.value,who,when,[],{});
story.displayTiddler(null,title);
"></form></html>
----------------------------
That's it... without any plugins...
enjoy,
-e