apologies ahead of time if this is more of a TiddlywikiDev type problem...
I'm making a TW5 for a presenation, kind of like a TW5 version of powerpoint (which I'll share here once I'm done)
I have this in a viewtemplate for tiddlers with the tag "slide"
<$list filter="[all[current]has[next]]"><div style="float:right;">
<$link to={{!!next}}>next</$link></div>
</$list>
What it does is grab the content of the "next" field (which is the name of another tiddler) and when you click "next" it opens whatever tiddler is named in that field
- Instead, what I'd like to do is have a field called "page" and have a number in it, and when you click "next" it will open whatever tiddler has the next biggest number in the "page" field, whether its 1 digit bigger than that of the current tiddler or 10 digits or whatever. This way I can reorder my slide presentation by simply changing the page field in any slide tiddler
Is this possible using the existing tiddlywiki 5 structure, or would it require special coding of some sort?
Thanks,
Dave