Hi!
I did -some time ago- try to get "readline" to jump to a specific line - w/o success.
If anyone finds a working way, THAT would be the most elegant solution IMHO...
In order to make search faster anyway, I looked into some general javascript docu and found/tested "match"; that works a lot faster but did not "like" larger dictionary files (that ran with the original "readline" w/o problems). Hmmmm.
So here's the altered code from my function "getDict":
Code:
{try {var stream = new Stream.File(dPath);
var binSea = String(stream);
var aaa = eval("/\\n"+this.cNum+".*/");
var Ergebnis = binSea.match(aaa)+"";
if (Ergebnis != null) found=1; [...]
If anybody is experienced or has time on his hands the "readline" jumping certainly would be a

"major breakthrough"

in relation to larger files...
Thanks for any help / proactive development!