Hi,
I have one List box on my pdf file I want to add dynamically Items in that List Box. Can any body can explain with small example how to do it?
Thanks,
George Kaiser
var l = this.getField("myList");
l.insertItemAt("sam", "s", 0); /* inserts sam to top of list l */
Inserts an item labeled 'sam' with an export value of 's' at the top of the list box.
George Kaiser