> I see the same errors in IE, Chrome and Firefox.
> Would the be a browser version or java version thing?
TW is all *Javascript* - with the exception of tiddlysaver.jar, which
is only used to provide external file I/O functions in Chrome (IE and
FireFox have built-in file I/O functions).
It *could* be a browser version issue. However, given that the same
errors are occurring in completely different browsers, this doesn't
seem likely.
Can you describe *exactly*, step-by-step, how you copied the plugins
from TiddlyTools? One possible common mistake that people make is to
copy the *rendered* plugin content, rather than first editing and then
copying/pasting the tiddler *source* into your document.
> Also noted that in advanced options(show other options) chkbox,
> some acutally show up in the older Firefox browser, but
> don't show up in IE or Chrome. What do you think is going on there?
Here's some clues to consider:
TW options are stored as cookies, where the name of the cookie begins
with "chk" for checkboxes, or "txt" for text inputs (e.g.,
"chkAutoSave" and "txtUserName").
IE, Chrome, and Firefox all maintain their own separate sets of
cookies, so the cookies for a given TW document can be different for
each browser.
Some browsers do not permit cookies to be saved when they are created
from local "file:" URLs. Although the option values are applied
during the current browser session, they do not get stored, and do not
persist across sessions.
Typically, plugin-defined "chk" options are given initial true/false
default values when the plugin is loaded during startup. However, an
undefined "chk" option has a implicit value of false. This means that
the plugin doesn't have to initialize the option value during startup,
and can simply wait for the user to interactively set it by clicking
on a <<option chkSomething>> checkbox control. In this case, the
option won't appear in the Advanced Options until it has actually been
used for that document.
hope this helps,