I have the ExternalTiddlerPlugin installed. I'm trying to get the
tiddler macro to evaluate the contents of a separate tiddler in order
to determine what tiddler will be imported. Here's what I have tried
so far:

 <<tiddler    {{"return store.getTiddlerSlice('PagePick','page')+'#3'
"}} >>
 <<tiddler  {{"store.getTiddlerSlice('PagePick','page')+'#3' ; "}} >>
 <<tiddler  [[PagePick::page]]#3  >>

I've tried other versions. None of these have worked so far. As a
check, I ran the script:

<script>
return store.getTiddlerSlice('PagePick','page')+'#3'  ;
</script>

and it returns the correct response:
  killthis.html#3

And yes, "killthis.html" exists in the same directory, and has a
tiddler called "3".

In fact, I can do exactly what I want if I construct the macro on the
fly like:

<script>
return "<<tiddler " + store.getTiddlerSlice('PagePick','page')+'#3'  +
" >>" ;
</script>

But somehow that seems clumsier than it ought to be.

Thanks in advance,
Mark


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to