quote:
Originally posted by Spunky
assuming the scripting engine is the same
It is entirely, for now.
quote:
Originally posted by SmokingCookie
so the rest of the function won't be executed
You can always decide to catch exceptions, like this:
jscript code:
function DoSomething(sNewName) {
[...]
>>> try {<<<
Messenger.MyName = sNewName;
}
>>> catch(e) {<<<
Debug.Trace("Setting MyName is not supported.");
}
[...]
}