Welcome Alan,
Settings get saved in browser cookies, so depending on your browser
settings those wont survive till the next session. A simple solution
is to hard code your settings in a tiddler tagged 'systemConfig' and
named zconfig (so it overrides all other hard coded settings), for
example:
//{{{
config.options.txtUserName="";
config.options.txtBackupFolder="backup";
config.options.txtMaxEditRows="20";
config.options.chkAnimate=false;
config.options.chkSaveBackups=false;
config.options.chkForceMinorUpdate=true;
config.options.chkInsertTabs=true;
config.options.chkHttpReadOnly=false;
readOnly=false;
showBackstage=true;
config.views.wikified.defaultText="";
config.views.editor.defaultText="";
config.macros.search.label="";
merge(config.views.wikified.tag,{labelNoTags:"",labelTags:""});
merge(config.macros.tagging,{labelNotTag:"",label:""});
//}}}
Regards,
W.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---