Question
I'm in hell and need help.
Designing a program to slim down paperwork.
Dynamically creating a form to select which paperwork to combine.
FROM FOLDER LEVEL SCRIPT:
function addGenerateButton()
{
var g = myDoc.addField("Generate", ....);
g.setAction("MouseUp", "myButtonAction();");
}
function myButtonAction()
{
....
}How do I do this? Should I do this? Is there a better way to do this?
