> Is there scripting that can be used on the Breadcrumbs plugin where > instead of making a long list of breakcrumbs, it will make the list in > a drop down menu that the length/size can be customizable with all the > same functions to list the breadcrumbs from most recent to oldest > tiddler visited? Does anyone have any thoughts?
Import this tiddler http://www.TiddlyTools.com/#BreadcrumbsCommand Usage: <<tiddler BreadcrumbsCommand>> This will embed a 'crumbs' popup command link in your content. Note: the above tiddler is *not* a plugin... it is a "transclusion". Do *not* tag it with "systemConfig" Also, the reverse the order of the crumbs (so that the most recently viewed tiddler is listed first), see http://www.TiddlyTools.com/#BreadcrumbsPluginInfo for Configuration options. Specifically, <<option chkBreadcrumbsReverse>> shows breadcrumbs in reverse order and <<option chkBreadcrumbsLimit>> <<option txtBreadcrumbsLimit>> limits breadcrumbs display to indicated number of items You can interactively set these values using the <<option>> macros shown above, or you can 'hard-code' the values into a 'CookieJar' tiddler, tagged with "systemConfig", containing the following lines of code: config.options.chkBreadcrumbsReverse=true; config.options.chkBreadcrumbsLimit=true; config.options.txtBreadcrumbsLimit=10; (set the limit to any number you like... "10" is just an example). enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios -- 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.

