How to use Cyrillic in your code
Is it possible to use Cyrillic characters in the Javascript code, for example:
app.addMenuItem({ cName: "test", cUser: "test", cParent: "Help", nPos: -1,
cExec: "test()", cEnable: "event.rc = (event.target != null);"});
function test() {
app.alert("Привет!", 3);
}Instead of Cyrillic characters, the function "app.alert" displays a set of characters corresponding to the CP1361 encoding (according to the online encoder).
Does anyone have any experience with this issue?
