0
Explorer
,
/t5/acrobat-discussions/loop-script-help/td-p/11905097
Mar 17, 2021
Mar 17, 2021
Copy link to clipboard
Copied
Is it possible to set i to affect fields between 2 numbers, for example lets say I have 10 fields how to set i to be 5-7 something like this. for (var i=1; i<=10; i>=5&& i<=7; i++) is there a way to do it?
TOPICS
JavaScript
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 ACCEPTED SOLUTION
Community Expert
,
/t5/acrobat-discussions/loop-script-help/m-p/11905154#M303434
Mar 17, 2021
Mar 17, 2021
Copy link to clipboard
Copied
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
/t5/acrobat-discussions/loop-script-help/m-p/11905154#M303434
Mar 17, 2021
Mar 17, 2021
Copy link to clipboard
Copied
You can use:
for (var i=5; i<=7; i++)
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Marietaa
AUTHOR
Explorer
,
LATEST
/t5/acrobat-discussions/loop-script-help/m-p/11905313#M303449
Mar 17, 2021
Mar 17, 2021
Copy link to clipboard
Copied
Thank you.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

