Need help with tool bar button to clear 10 fields on form

I have 167 forms with 138 fields, I need to blank out or clear just 10 of them or so, can I create a butotn or script that is outside each document so I can open each one, andc lick this button?
I don't want to add a button to all 167 pdf files. Or better yet script to open them all and blanks out the fields, evey form is the same so the field names are the same.

This would be easy to do as a batch process (aka Action). The following JavaScript will do it:
// Create an array with the list of fields to reset
var fa = ["text1", "text2", "text32", "text4", "text5", "text6", "text7", "text8", "text9", "text10"];
// Reset the fields
resetForm(fa);
This will set each of the named fields to its default value. If the default value might be different than blank, replace the last line with:
for (var i = 0; i < fa.length; i++) {
    getField(fa[i]).value = "";
Replace "text1"..."text10" in the first line with the actual names of the fields you want to clear.

Similar Messages

  • Need help with tool bar options..does not show hidden options in PS5 or PS CC trial..

    in both PS% and PS 6 CC the tool bar will not reveal the hidden option when I click on the little arrow...this problem just began as I have used this successfully in the past...probably a simple solutin

    Thank you. After much experimentation I discovered it was a problem with my mouse
    Linda Badgley

  • Need help with Flash CS4 buttons/can't get buttons to control anything

    Hello,
    I need help with Flash CS4. I am making a banner with an animation (Image change into movie clip "3D Spiral") and added buttons but I cannot get the buttons to control the animation. Please help I am frustrated! If someone could help I would be most appreciated.

    Thank you.
    Regards,
    Michael J. Sheehan  allelois
    Date: Mon, 17 Aug 2009 18:48:09 -0600
    From: [email protected]
    To: [email protected]
    Subject: Need help with Flash CS4 buttons/can't get buttons to control anything
    Hi there
    I'm not sure how you wound up where you did. But you wound up in the Adobe Captivate forums. Please stand by as I move your thread to the Flash forums.
    Cheers... Rick
    >

  • Need help with audio on button ASAP THANKS!

    Hi,
    Using CS3 I added via properties audio to the "over" part of a gold button.  The audio I added is 4Mb in size which I had imported to the library.  When I selected "over" on the button and then using properties assigned the audio file .... the wave form appeared ... but not under "over" but over, down and hit.  Thus when I publish what is happening is the page loads fine ... the audio begins to play on roll over as wanted ...
    HERES THE GLITCH:  if you accidently roll over again a new audio begins to play out of sync with the first one ... basically you get the row, row row your boat effect where each roll over audio is delayed.
    MY FAILED SOLUTION:  I tried to move the audio file and assign it via properties under hit. Thus have to have someone click on the sound.  Yet the same outcome happend where the wave form appeared not just under hit but it showed on over, down and hit. The same thing happened when I tried assigning to "down".
    MY QUESTIONS:
    Is this caused by the sound file being too big?  I tried a small audio beed and it would assign directly under the part I assigned but not with the bigger 4MB audio file.
    If it is the size of the sound file, can I link the button to an external audio file. If so, what code would I use if I am using Action Script 2.0. I am very new at action script.
    If it is not the size, could some one please tell me how to fix this glitch.  I would be satisfied with the button working on either over or hit.  If you wish to see what the button is doing, you can see it online at www.signaturehill.com.
    THANKS.

    Hi Erika,
    That might just be what I need ... but I am confused as to where do put the action code.  Can you help me with the following questions:
    1. Did you put it inside the button via actionscript or did you select the button just and ad it there ...  or somewhere else? Since I have several buttons doing the same thing on different pages, I am not sure where to put it.
    2. What was the exact code you used  ie  on (release)  {....   StopAllSounds(); }  .... did you even use "release" or some other mouse event.
    Please include the action script code I might try since I am very new to scripting. THANK YOU>

  • Need help with progress bar !!!!!!!

    Is ther anyway to display the progress of functions, which I created in my application, through a progress bar ... while the results are being computed with my alogs..
    They are quite long and it takes quite sometime for the results to generate and user shud see that something is working ... while he waits and shud feel that nothing is happening ....
    The progress shudnt necessarily be measurable ... a non measurable progress bar will also do .... Jst want to show that some activity is goin on at the back ...
    My algo consist of functions :
    for (i = 0 ; i < = 6 ; i++)
    my function 1 (my parameters) {} - called 10 times each time the i increments with different parameters
    my function 2() {} - called 10 times ....
    my functions 3() {}   - called 10 times IF somebody know how to do it ... please help meee......... its urgent

    Are you posting this on your cell phone? There seems to be something horribly wrong with your keyboard or your auto complete for your words, as it is, I could barely understand what you were asking. If that is the way you actually spell, then I doubt anyone could help you, maybe you should just step away from the keyboard or what ever device it is your are using to input, because it's correct operation seems to escape you--will you actually be able to comprehend a solution if it is presented?
    But on the outside chance that you may be a savant, and just cannot form sentences and words properly, here is an idea...
    Ages ago, long before you were ever an itch in your parents'... you get the picture...
    They used to say: "Hey, I'm going to be doing a lot of processing or repetitive tasks and maybe between each task I should do something to let the user know the process is running and not just locked up."
    Even a status bar needs you to do something between each process, you have to make it do something between executions of tasks.

  • Need help with Motion Tracking-button in After Effects CS6

    Hello I just bought After Effects cs6 and wanted to try ''motion tracking'' but I just can't push the motion tracking button. Is there anyone who can help me with that problem?
    Responses are highly appreciated!

    In order for the motion tracking buttons to become highlighted, you first need to select the clip you'd like to track in the timeline:

  • Need help with Cluster of Buttons displaying a message to which button is being pressed.

    Create a VI with a cluster of six buttons labeled Option1…Option6. When executing, the VI should wait for the user to press one of the buttons. When a button is pressed, use the Display Message To User Express VI to indicate which option was selected. Repeat this process until the user presses the Stop button. The parameters of the problem needs me to use a while loop, case structure, a shift register and search 1d array. I'm just having trouble setting up my case structures and how to get the search 1d array to work with the cluster to find which button was pressed. I've attached a picture of my VI and also a VI I made without the cluster that does what I want the Cluster VI to do which is to recognize the button being pressed and bring up a prompt.
    Solved!
    Go to Solution.
    Attachments:
    Button Pressed.jpg ‏127 KB
    Buttons Pressed No Cluster.jpg ‏189 KB

    Okay so i moved the cluster into the while loop and wired a boolean true constant to the element of the search 1d array and now I can at least get the prompt for button 1 to display, but when I press the other buttons which I have set up the same way as button 1 I get no prompts so how can I get it to recognize the other buttons. Am I implementing the shift register incorrectly? 
    Attachments:
    Button Pressed 2.jpg ‏115 KB

  • Need help with floating div's and clear property

    Link to page
    Link to CSS file
    I have the website currently setup as a 3 column website and everything is working fine.  I need to make some pages as a 2 column page with the left column having several "leftcolumn" div's stacked on top of each other so that there are several rounded box sections in the left column.
    I have the leftcolumn div floated left with a clear left to get the left column div's to stack on top of each other.
    The rightcolumn is floated right.
    How do I get my right column to align with the top of the first leftcolumn div?

    It's not always necessary to float every column.  One float is usually enough for a 2-column layout.
    Where you have this:
    #rightcolumn {
        width: 620px;
        float: right;
        color: #FFFFFF;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        color: #FFFFFF;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        padding: 10px;
        border:3px solid #5f605f;
        -moz-border-radius:20px;
        -webkit-border-radius:20px;
        -opera-border-radius:20px;
        -khtml-border-radius:20px;
        border-radius:20px;
        background-color: #858586;
        font-size: 12px;
        margin: 10px;
    Change it as follows:
    #rightcolumn {
    /**REMOVE ALL THIS**/
        width: 620px; 
        float: right;
        color: #FFFFFF;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        color: #FFFFFF;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        padding: 10px;
        border:3px solid #5f605f;
        -moz-border-radius:20px;
        -webkit-border-radius:20px;
        -opera-border-radius:20px;
        -khtml-border-radius:20px;
        border-radius:20px;
        background-color: #858586;
        font-size: 12px;
    /**REMOVE THIS**/
        margin: 10px;
    /**ADD THIS**/
        margin-left: 350px;  /**adjust as needed**/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    Message was edited by: Nancy O.
    Strikethroughs are not working in the forum.  I edited the code to make more sense.

  • I need help with setting my button to link to my website! URGENT HELP!!!!

    Hello everyone. Lately, I've been trying to link a button to my site with Action Script 3, however, whenever I try to load my movie, I keep getting an error! The error says: Scene 1, Layer 'Button', Frame 1, Line 5 1071: Syntax error: expected a definition keyword (such as function) after attribute fuction, not pes.
    This is what I wrote...
    stop();
    peshp_btn.addEventListener (MouseEvent.CLICK, pes);
    fuction pes(e:MouseEvent):void{
    var pesLink:URLRequest = new URLRequest("http://www.penguinentertainmentstudios.com");
    navigateToURL(pesLink,"_blank");
    PLEASE HELP ME I IVE BEEN TRYING FOR ALMOST 2 HOURS NOW!!!!!

    Use the following:
    peshp_btn.addEventListener(MouseEvent.CLICK, pes);
    function pes(event: MouseEvent) {
    var pesLink:URLRequest = new URLRequest("http://www.penguinentertainmentstudios.com");
    navigateToURL(pesLink, "_blank");

  • Needing help with a simple button

    Hey everyone
    I'm wanting to put a link on my flash banner to an external website. I have followed the example here: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/2/help.html?content=00000 394.html
    but it still doesnt seem to work as when I click the button I get the Adobe Flash Player Security box seen in the screenshot I have attached. I have click settings and added the website as a trusted source but the link still doesnt take me to the website. I'm using actionscript 2 on request.
    Thanks in advance

    You should test using a browser.  I rarely run into that issue but I think you need to specify the location of the local swf file instead of the web url.

  • New to Adobe Forms and need help with Submit Email button

    I am new to Adobe Forms in Windows.  I created a form with a submit email button.  When users try to click the button, the message is operation cannot be completed.  My test user has Adobe Reader 9 installed.  I'm at a loss as to how to resolve the issue.  Please assist.  TIA!

    Three different aspects
    1. Set the form up to submit the data (XML or FDF), not the full PDF. You can import the data to the PDF on your end.
    2. You can turn on Extended Reader Rights, but then limit the use/users to 500 by the EULA. The applicability of this option depends on your intended application. In a small office, it would be fine. For general web use you would likely exceed the limit and be in violation of the EULA.
    3. There may be an e-mail problem, one reason that e-mail is not recommended for form submission (even if the manual discusses it). Again, in a controlled environment like an office it will probably work fine, but in a web setup it is best to use a web script. There are 2 problems with e-mail that both depend on the client system (YOU have no control, but will be blamed in any case). First, the client machine has to be set up as an active MAPI client. Many folks do not have this on. Second, some e-mail clients treat PDFs like text and the result is a corrupt e-mail submission, even if it makes to you.
    If you have the possibility of web submission, do it. I suggest only having the form data submitted and not the form.

  • Need help with dialog option buttons

    I am trying to make a program with a menu displaying several buttons that the user can select. I've been following the "How to Make Dialogs" tutorial but the window becomes extremely long when the buttons are displayed horizontally in the same row and there doesn't seem to be a way to make the option buttons display vertically in a column rather than horizontally in a row with JOptionPane. Is there another way to do it?
    URL for tutorial: http://java.sun.com/docs/books/tutorial/uiswing/components/dialog.html

    Here's a simple example of what I mean. If you go my route, you'll understand how to do this. If on the otherhand you do rgjonathan's suggestion, you'll lose out and be forced into whatever pigeon-hole that NetBeans forces you into:
    DialogExample.java: a class that creates a JPanel with vertically stacked JButtons. This JPanel can easily be placed within a JDialog.
    import java.awt.GridLayout;
    import java.awt.Window;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.BorderFactory;
    import javax.swing.JButton;
    import javax.swing.JPanel;
    * creates a mainPanel that can be used in a JDialog
    * @author Pete
    class DialogExample
        private JPanel mainPanel = new JPanel();
        private String buttonStrings[] =
            "Fubar", "Snafu", "Bohica", "Subar"
        private String actionCommand = "";
        public DialogExample()
            mainPanel.setLayout(new GridLayout(0, 1, 10, 10));
            mainPanel.setBorder(BorderFactory.createEmptyBorder(15, 15, 15, 15));
            for (int i = 0; i < buttonStrings.length; i++)
                JButton btn = new JButton(buttonStrings);
    mainPanel.add(btn);
    btn.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
    actionCommand = e.getActionCommand(); // set actionCommand field
    Window window = (Window)mainPanel.getTopLevelAncestor();
    window.dispose(); // close this window
    * @return a JPanel that can be used in a JDialog
    public JPanel getMainPanel()
    return mainPanel;
    * @return String: actionCommand corresponding to the button pushed
    public String getActionCommand()
    return actionCommand;
    }DialogTest.java:  creates a trivial JFrame with a JButton that when pressed creates a JDialog with the JPanel from the class above.  Gets the name of the button pressed in the dialog and prints to screen.import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    public class DialogTest
    private static void createAndShowGUI()
    final JFrame frame = new JFrame("Test");
    final DialogExample dialogEg = new DialogExample();
    JButton openDialog = new JButton("Open Dialog");
    openDialog.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent arg0)
    boolean modal = true; //modal dialog or not?
    JDialog dialog = new JDialog(frame, "Dialog", modal); // construct dialog
    dialog.getContentPane().add(dialogEg.getMainPanel());
    dialog.pack();
    dialog.setLocationRelativeTo(null);
    dialog.setVisible(true); // show it
    System.out.println(dialogEg.getActionCommand()); // find out which button pressed
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.getContentPane().add(openDialog);
    frame.pack();
    frame.setLocationRelativeTo(null);
    frame.setVisible(true);
    public static void main(String[] args)
    javax.swing.SwingUtilities.invokeLater(new Runnable()
    public void run()
    createAndShowGUI();

  • Need Help With Tool Tips

    I have tool tips on fast, I have Show Thumbnails on place Show Transformation values & Enable Multi Touch Gestures. I still dont have view of my tool tips when I hover my curser over anything, (i.e. rectangle tool, rotate).

    Try restoring your preferences. Here's how:
    http://pfl.com/trb

  • Help with cfinput radio button and text fields

    I have a series of radio buttons that allow a user to select
    monetary values but I also want them to be able to define an amount
    if they choose so. I was planning on doing this by providing a
    radio button with the value of other and then using a text field to
    allow the user to enter the monetary value. The problem with this
    is that they might enter a user defined monetary value but forget
    to set the radio button to "other".
    I was hoping that I could set the "other" text input field to
    read only until the point that the user selects the "other" radio
    button. Is there a way to do this using onSelect or another method.
    Or is there a better way to approach this problem? Thanks for any
    help or advice in advance.

    Hi,
    You could call a js function which will select the radio
    button "other " when the user types something in(there are various
    events on cfinput). This way the user will not have to worry about
    selecting the radio button and your requirement will be satisfied.
    Hope this Helps.
    Thanks,
    Bhakti

  • Need help with BARS 4.0.12 - 4.0.13 upgrade

    Hello,
    I'm a VoIP noob and need help with a BARS upgrade. To resolve a known problem (Bug #CSCsi32637) we need to upgrade BARS from 4.0.12 to 4.0.13. This is per TAC. However, no one in our company has done this before. I've reviewed the 4.0.12 Admin Guide since I was unable to find any admin docs for 4.0.13. However, I have several questions about this upgrade that hopefully someone here can help with:
    1) The install for 4.0.12 requires a reboot of the server. Is this the same for 4.0.13?
    2) CCM version is 4.1(3)sr6; any problems known with BARS 4.0.13 and this version of CCM? I didn't see
    anything in the Rel Notes or via the Bug Toolkit (figure it never hurts to ask).
    3) Will the previously input configuration settings (i.e., Data Source Servers, Storage Location, Schedule) be preserved or will I have to reinput these settings?
    4) Any known issues with performing this upgrade while controlling the server via VNC?
    5) The 4.0.12 docs state that "To successfully back up the Cisco Unified CallManager database, the backup server and backup targets must exist in the same cluster and have the same version of BARS installed". So BARS must be installed on my publisher (the Backup Server) AND my three subscribers? I'm not finding BARS on these subscribers now.
    Many Thanks for any input,
    Brian Read

    1) Yes, any version requires reboot after install
    2) not that i'm aware of
    4) you'll need to reconfigure it
    5) no
    6) although it's recommended there is no real need to backup any other server than the PUB which contains the master DB, any SUB only needs to pull the info from PUB in case of crash and reinstall
    HTH
    java
    if this helps, please rate

Maybe you are looking for

  • Calling a web-service from extended controller

    Hello, We are tying to consume a web-service in extended controller of a page. We created stub files using */oracle/d01/oracle/VIS/db/tech_st/11.1.0/jlib/axis.jar* and related jar files found on the E-BS Server. We are using our stub classes in the e

  • Billing document to Sales order No / Shipment No

    Hi all, I would like to seek help on building up a customized program to retrieve information of Sales Order No and Shipment No from Billing document which has been released to accounting document (VBRK- RFBSK=C). Could anyone advise on how to do thi

  • How to set a checkbox to call javascript for calling package procedure?

    Hi folks, I have a report where each row includes a dynamically created checkbox: Step 1: define report in APEX based on this test query select object_id,        txt,        htmldb_item.checkbox           1,           data.object_id,           'oncli

  • That pesky Full Screen alert dialog in recent versions of Reader

    When I set the preferences within Acrobat to disable that horrible, pesky Full Screen alert dialog, it still appears on the end-user's Reader software, even though I turned it OFF from within Acrobat [slaps forehead]. Is there any way, by hook or by

  • ABAP Webdynpro Initial setup

    HI, I am doing an ABAP Webdynpro application. Everything is doing fine but not able to see the output. I think some initial setup is required to connect the server or to see the output. Can anybody tell me the setup details. plz help...............