Хочу создать условие для формы JavaScript в Acrobat Pro:
Cоздал форму Text1
Зашел Tools - Forms - Edit - правая клавиша мыши по форме Text1 - Properties - Calculate - Custom calculation script - Edit
Как обратиться к этой форме в окне Create and Edit JavaScripts?
Как получить доступ к ячейке?
К примеру в html:
var i= document.getElementById("Text1").text;
if (i>50) {
document.getElementById("Text2").text= i+"руб";
}
Cоздал форму Text1
Зашел Tools - Forms - Edit - правая клавиша мыши по форме Text1 - Properties - Calculate - Custom calculation script - Edit
Как обратиться к этой форме в окне Create and Edit JavaScripts?
Как получить доступ к ячейке?
К примеру в html:
var i= document.getElementById("Text1").text;
if (i>50) {
document.getElementById("Text2").text= i+"руб";
}