Category: Videos
Radio Buttons in Adobe LiveCycle ®
Adobe LiveCycle ® Tutorial for the beginner level developer. This video shows how to use radio buttons in pdf forms. It also introduces simple event driven JavaScript to create user friendly effects.
Consuming Web Services in Adobe LiveCycle ®
A tutorial on understanding and consuming Web Services in Adobe LiveCycle ®. Highlighting the use of data bound objects to create rich end user experiences.
Date Fields in Adobe LiveCycle
This tutorial covers the basics of using Date Fields. Specifically, how to format, auto-populate, and use field events to make date appear and function in powerful ways.
Here is the code:
var currentTime = new Date();
var months=new Array(13);
months[1]=”January”;
months[2]=”February”;
months[3]=”March”;
months[4]=”April”;
months[5]=”May”;
months[6]=”June”;
months[7]=”July”;
months[8]=”August”;
months[9]=”September”;
months[10]=”October”;
months[11]=”November”;
months[12]=”December”;
var v_month = months[currentTime.getMonth() +1];
var v_day = currentTime.getDate();
var v_year = currentTime.getFullYear();
var fullDate = v_month + ” ” + v_day + “, ” + v_year;
var newText = oldText.replace(“[Enter Date]”, this.formattedValue);
this.parent.txtParagraph.rawValue = newText;
this.presence = “hidden”;
Form Flow with Expanding Tables in Adobe LiveCycle ©
Here is a follow-up to the Form Flow and Expanding Tables tutorials that applies both lessons to a single form to create a table that can expand indefinitely without negatively affecting other objects.