Hi TwWizards

I have what I believe is a very basic question for someone who knows
TW syntax "inside-out":

In my defaulttiddlers I would like to show a tiddler with todays date.
I have this script - but it overwrites DefaultTiddlers..:
var title = new Date( );
title = title.formatString("[[DD MMM YYYY]]");
store.saveTiddler( "DefaultTiddlers", "DefaultTiddlers", title );

Therefore I changed it to:
var title = new Date( );
title = title.formatString("[[DD MMM YYYY]]");
store.saveTiddler( "DD", "DD", title );

I put the DDTiddler in the DefaultTiddlers like this:
[[DD]]

What I really want is to open the tiddler titled with todays date
alongside with other tiddlers.
TiddlerTitle "DD": text: <<tiddler [[DD MMM YYYY]]>>
And open it together with other tiddlers tagged with todays title.
Like this:
DefaultTiddlers: text:
[[DD]]
[tag[DD MMM YYYY]]
[[SomeOtherTiddlerName]]

Could you please tell me how to accomplish this?

YS Måns Mårtensson


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to