Awesome, I was able to adapt this perfectly! Thanks very much. I'm still cobbling together a lot of my understanding of TW and learning on the fly (as the documentation gets very confusing without any computer science background), which means I get a lot of things slightly wrong.
So, if I understand correctly, what this is doing is the first filter creates the variable "num" and looks in the sequence field of those tagged tiddlers for all values less than or equal to 3, and stores those in "num". And then the second filter, my guess is, looks at the tagged tiddlers which have a value matching the values stored in "num" and returns those? Is that close to what's going on? Oh, that's all that needs to be done to update? I wasn't sure if stuff like TW file locations could carry over. On Sunday, May 24, 2020 at 12:46:18 PM UTC-5, Mark S. wrote: > > > > On Sunday, May 24, 2020 at 9:44:26 AM UTC-7, PS wrote: >> >> Ahh.... Thanks, Mark. So I was using an outdated version of TW, and with >> 5.1.22, the documentation examples and the 4=4 example work for the compare >> operator! That makes sense; couldn't figure out how I was doing it wrong. >> So those are in working order, now. >> >> > Your sequence list filter is kind of wrong. Your probably want something > like: > > <$list filter="[tag<currentTiddler>get[sequence]compare:number:lteq[3]]" > variable="num"> > > However this will always return a series of numbers, probably 0 to 3. > > To get the matching tiddlers, you will probably need to add a "variable" > as above, and create a nested inner list widget, like: > > <$list filter="[tag<currentTiddler>sequence<num>]"> > <li><<currentTiddler>></li> > </$list> > > > As for browser, I use both Chrome (83.0.4103.61), and Tiddly Desktop. I do >> know the latter is out of date (0.0.13) because I'm confused at how to >> update it and not just install again. > > > I suspect there's a subtle bug in the latest Chrome and Tiddly Desktop in > respect to TW. Perhaps Jeremy will be able to comment when he comes back. > In the mean time, there's no reason to upgrade to 0.0.14 unless you need > one of the new features. When you do upgrade, it's pretty much as easy as > unzipping the files and running the new executable. > > > -- 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 view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/b629e549-86ac-404c-91ed-2c69ea5b7593%40googlegroups.com.

