Hi Linck > 1) can I have a list that lists tiddlers that contain tag1 OR tag 2? > I have used the && to list only those that contain both, but Or would > be great. Example of 3 different tags: <<forEachTiddler where 'tiddler.tags.containsAny (["systemConfig","transclusion","script"])' see other examples here: http://tiddlywiki.abego-software.de/#%5B%5BList%20all%20Tiddlers%20that%20contain%20either%20a%20'TaskToDo'%20or%20a%20'TaskOpen'%20or%20'TaskDone'%20tag%5D%5D For more intricate expressions Eric (TiddlyTools) explained some possiblities using boolean opreators in this thread: http://groups.google.dk/group/tiddlywiki/browse_thread/thread/ab973c46e827d81/f8a43e3b0180757d?hl=da&q=or+or#f8a43e3b0180757d
> 2) I have used the write action and I have also let it default as the > list action... can I do anything to make different kinds of lists... > or list them automatically in columns? Here's an example of a simple fET wich produces a sortable table with tiddlers tagged with systemConfig or transclusion or script (needs http://tw.lewcid.org/#TableSortingPlugin) <<forEachTiddler where 'tiddler.tags.containsAny (["systemConfig","transclusion","script"])' sortBy 'tiddler.title.toUpperCase()' write '(index < 200)? "|!"+(index+1)+"|[["+tiddler.title+"]]|"+tiddler.tags +"|\n" : ""' begin '"|sortable|k\n" +"| Plugins, transclusions or scripts |c\n" +"|!#| title | tags |h\n"' end 'count+"plugins, transclusions or scripts\n"' none '"no plugins, transclusions or scripts\n"'>> > Thank you in advance for helping a new user... this stuff is great. I > am up til the early morning hours experimenting with new plugins... You'll find that you've got a lot of soulmates here - TW is pretty addictive :-) Welcome and a happy new year.. regards 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.

