>
> I am looking for an easy way to hide the "GettingStarted" tiddler, when my 
> TW in online (access via a WEB-server).
> But this tiddler should be visible, when the TW is offline opened (via 
> locally editing the file).
>

If you have Eric's Inline Javascript 
Plugin<http://www.tiddlytools.com#InlineJavascriptPlugin>, 
then it would be very easy. Assuming your TW is read only when accessed via 
http, you could just put this script as the text of your DefaultTiddlers:

<script>
if (!readOnly)
  wikify("[[GettingStarted]]",place);
else
  wikify("[[OnlineHomeTiddler]]",place);
endif
</script>

-- 
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 post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to