Skip to main content
Participant
May 10, 2020
Question

I'm in hell and need help.

  • May 10, 2020
  • 1 reply
  • 620 views

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?  

This topic has been closed for replies.

1 reply

Participant
May 10, 2020

Better question:

Is it possible to pass variables from a folder level script into a document level?

For example, I define string1 at folder level.

I need string1 to be available to a document level script.

 

Is this possible?

Participant
May 10, 2020

Nevermind........