Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
Hello Brock. I know this is an old post but I am trying to do this in adobe acrobat pro dc. The basic idea of what I am trying to do is this:
I have a form where I input artist names in a text field. From there I want to have those names be added to a dropdown list from there I can select which artist I want assigned to a project. I am new to java in acrobat and hope this is still possible. Any help would be great. I have been trying to put in the above info but with no luck.
Views
Replies
Total Likes
Create a text field and name it Artist1
Create a second text field and name it Artist2
etc.
create a drop down list and name it artists
add the following java script to your droplist using the preOpen event:
this.rawValue = null;
this.clearItems();
this.addItem(Artist1.rawValue);
this.addItem(Artist2.rawValue);
Copy the droplist for each instance where you want to use it
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies