> tiddler macro to evaluate the contents of a separate tiddler in order
> to determine what tiddler will be imported
> <<tiddler {{"store.getTiddlerSlice('PagePick','page')+'#3' ; "}} >>
You were very close!
The use of the trailing '' in the above code snippet forces the result
to be a blank string so that the computed parameter can evaluated
*without* producing any macro output, as a way to invoke tiny bits of
javascript without using InlineJavascriptPlugin. However, for your
purposes, you *do* want to produce output from the <<tiddler>> macro,
so you need to get rid of the trailing '' in order for the correct
param value to be applied. Thus:
<<tiddler {{"store.getTiddlerSlice('PagePick','page')+'#3'}} >>
enjoy,
-e