Hi magev958, That's entirely possible, especially with the new action-listops widget. You could have a *Favorites* tiddler with a list field in which you store all the titles of the tids that you want to be favorites.
For that you could use a toolbar b <http://tobibeer.github.io/tb5/#Conditional%20ViewTemplate%20Section>utton like so: title: $://ui/Buttons/favorite tags: [[$:/tags/ViewToolbar]] \define add() [[$(currentTiddler)$]] \define remove() -[[$(currentTiddler)$]] <$list filter="[list[Favorites]is[current]]"> <$button class=<<tv-config-toolbar-class>>> <$action-listops $tiddler="Favorites" $field="list" $subfilter=<<remove>>/> <span style="color:orange;">★</span> </$button> </$list> <$list filter="[all[current]!list[Favorites]]"> <$button class=<<tv-config-toolbar-class>>> <$action-listops $tiddler="Favorites" $field="list" $subfilter=<<add>>/> <span style="color:#ccc;">★</span> </$button> </$list> And then the Favorites tiddler simply being: title: Favorites {{{ [list[]] }}} Best wishes, Tobias. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/tiddlywiki. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/e06618f9-fac1-4ac3-980a-0e9f3ba35456%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

