Using the PrePrint and PostPrint events to create dynamic changes in your form that only display in a printed version.
Category: Tutorials
Nested Tables in Adobe LiveCycle Designer
This video is a how to on creating nested tables or, an expandable table within an expandable table.
Mobile Dynamic Forms Using Windows 8.1® Tablet (Dell Venue 8 Pro®) and Adobe LiveCycle Designer ES4®
Demonstration video of a fully functional Dynamic PDF on a mobile device. This will only work on a mobile device that runs a full version of Windows 8.1, like the Dell Venue 8 Pro seen in the video. This will not work on iOS, Android, Windows CE or Windows RT.
Radio Button Calculations in Adobe LiveCyle Designer ES 4®
This tutorial shows how to leverage radio button values to make forms that can calculate based on user input. Simple JavaScript concepts like parsing string to numeric values is also covered.
Scripts used in this tutorial:
this.rawValue = parseInt(Question1.rawValue) + parseInt(Question2.rawValue) + parseInt(Question3.rawValue) + parseInt(Question4.rawValue);
Basic JavaScript Looping in Adobe LiveCycle Designer®
A HowTo video on using a JavaScript “for” loop to test and remove instances of repeatable table rows, based on user input.
For a basic understanding of “For” loop syntax, checkout w3schools reference page: http://www.w3schools.com/js/js_loop_for.asp
Delete Button Code:
var vRows = Table1._Row1.count-1;
if(vRows==0){
Table1._Row1.removeInstance(0);
}
for(var i=vRows;i>=-1;i–){
if(Table1.resolveNode(“Row1[” + i + “]”).Cell1.rawValue!==1){
Table1._Row1.removeInstance(i);
}
}
Add Button Code:
Table1._Row1.addInstance();