Is there a way to limit or hide the box outline in the fillable form process, as far is the box being hidden from the form itself? I would rather have the fillable fields stand on their own or even be a different color from the background without the box to make it more "professional"
This tip may be able to do what you need. If not, please re-post this question.
Create a button field and click the Actions tab and add a JavaScript.
In the JavaScript Editor, type the following code:
1. var f = this.getField("myField");//parent name
2. f.hidden=true;//hides all fields with the same parent name
To show hidden fields use the following script in line 2:
f.hidden=false;
You can change the appearance of the field properties as you like.
My favorite quote - "Success is the ability to go from one failure to another with no loss of enthusiasm.