[tw] Re: Using nested forEachTiddler loops

2008-12-07 Thread commodore69
Thanks cmari, but I think in that case context.inTiddler.title is the same as tiddler.title isn't it? Still trying to find a one stop shop for all tiddlywiki object properties and methods to explain context to me. In the mean time I think I have found a much simpler solution; by nesting a list

[tw] Re: Using nested forEachTiddler loops

2008-12-05 Thread commodore69
Have achieved temporary solution using TagsTreePlugin: http://visualtw.ouvaton.org/VisualTW.html#TagsTreePlugin On Dec 6, 10:39 am, commodore69 [EMAIL PROTECTED] wrote: I am using tiddlywiki as a song book and I want to create an index of all songs sorted by key. Each song is tagged with the

[tw] Re: Using nested forEachTiddler loops

2008-12-05 Thread cmari
Alternatively, you can get all tiddlers tagged with the current tiddler's title by using context.inTiddler.title. For example: forEachTiddler where 'tiddler.tags.contains(context.inTiddler.title) tiddler.tags.contains(Key)' cmari Something like: For each tiddler whose tags contain Key,