In this tutorial I seek to bring together many of the ideas presented in other “Basic” tutorials. The goal being to show how all of these simple elements can be brought together to create a rich user experience in your Forms.
Category: Videos
Script Editor Basics in Adobe LiveCycle ®
This tutorial covers the basics of the LiveCycle script editor.
Using a Dropdown’s Selection to Affect Other Fields in Adobe LiveCycle ®
This video is a response to a question I received from a YouTube subscriber.
Master Page Basics in Adobe LiveCycle ®
Here is a tutorial on the basics of Master Pages in Adobe LiveCycle, covering how to create and use them as templates in your form.
Form Flow Applied to Radio Buttons in Adobe LiveCycle ®
Here is the latest LiveCycle Tutorial. In it I combine the lessons learned in the Form Flow and Radio Button Introductory videos to give some practical ways to design forms for a better end-user experience. Here is the JavaScript:
JavaScript in the “click” event of the Radio Button List
if (this.rawValue == 1)
{
FORM.Main.Subform2.presence = “visible”;
}
else
{
FORM.Main.Subform2.presence = “hidden”;
}