View Single Post
Old 03-13-2012, 07:55 AM   #3538
kartu
PRS+ author
kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.kartu ought to be getting tired of karma fortunes by now.
 
Posts: 1,637
Karma: 2446233
Join Date: Dec 2007
Device: Sony PRS-300, 505, 600, 650, 950
Quote:
Originally Posted by TJ27 View Post
kartuМне, что скопировать prsp.js в папку Beta из каталога с исходниками?
Yep. This is what startup script is doing (prspBetaStartupFile is set to /Data/Beta/prsp.js):

Code:
if (FileSystem.getFileInfo(System.applyEnvironment('[prspSafeModeFile]')) === undefined) {
	betaPath = System.applyEnvironment('[prspBetaStartupFile]');
	if (FileSystem.getFileInfo(betaPath)) {
		path = betaPath;
	} else {
		path = System.applyEnvironment('[prspStartupFile]');
	}
	if (FileSystem.getFileInfo(path)) {
		file = new Stream.File(path);
		code = file.toString();
		file.close();
		f = new Function("", code);				
		f();
		delete f;
	}	
}
} catch (ignore) {
}
kartu is offline   Reply With Quote