>  <script>
> window.MyData = {};
> window.MyData.d = store.getTaggedTiddlers("CCF2009");
> window.MyData.e = store.getTaggedTiddlers("CA2009");
> return e;
>  </script>
> which returns the result ReferenceError: e is not defined

The above script doesn't define a *local* variable named 'e'...  thus,
the error.  Maybe you meant to refer to 'window.MyData.e' instead?
Also, in order to display output, the return value from an inline
script has to be a *text string*.  Try writing something like this:

   return window.MyData.e.length.toString();

-e





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