Olaf,

Another problem related to .jsRun method.

It seems that .jsRun returns the previous result if the current result is undefined?

For example,

.jsRun(js1) returns 'result of js1' if js1 works.
.jsRun(js2) returns also 'result of js1' if js2 failed.
.jsRun(js3) returns 'result of js3' if js3 works.

I was assuming that .jsRun would return something like NULL when the script fails.

Is there any possible mistake on my side? Or is there anything I don't know about .jsRun?

Thanks