Adobe Forms and Javascript
I need some help with using JavaScript to automate setting options of interactive form fields
JavaScript & Adobe Forms & If/Then Function
I think you forgot to include your screenshot.
Edit:
If I had to guess assuming that the summary box will show a number 0 through 3 based on one radio button being selected from a single radio group, then I would put this:
const result = this.getField("Task.09").value;
let cnt = 0;
if (result == "Always") {
cnt = 3;
} else if (result == "All") {
cnt = 2;
} else if (result == "Much") {
cnt = 1;
} else {
cnt = 0;
}
event.value = cnt; More on reddit.com Javascript help within Adobe Acrobat Form
Videos
Just trying to get a read on if this is typically in a technical writer’s job scope: does anyone create Adobe fillable forms with javascript to give additional functionality?
There was someone at our company who used to do all forms but left abruptly. Now their job is being put on the technical writers (specifically, me). This feels out of scope for tech writers and should almost be a software developer job since it’s heavy on the javascript. Is it out of line to suggest this to my boss?