Submit Button at Top Right Corber Not Displaying

Hello,
I created a PDF fillable form.  This is a form that will be sent out from our HR department to a variety of people.  We would like the end-user to submit the form via email.  We want the default "Submit" button at the top right corner to display rather than create a custom button.  In other words the submit button that shows up next to "Highlight Fields."
So after I created the form, I clicked on "distribute" and chose the following:
1.  Manually collect responses in my email box
2.  Save a local copy and manually send it later
Our HR person is using Acrobat Reader.  She can see the submit button.  BUT, when she sends the form to someone else (to fill out and email back to her), they cannot see the submit button.  Any ideas why?
Lastly, is going through "Distribute" the only way to get the submit button to display at the top right? 
Thanks for any help!

I think that I may have found my answer from another posting on here.
The submit button in the purple bar will only appear if yo put the form throught the Distribute Form process in Acrobat, and you only need to do this if you want the forms to be submitted to Acrobat.com or one of the other options. SInce you don't want to do this, all you need to do is Reader-enable the form so it can be saved with Reader. To do this, start with a copy of the form as it was before you Distribited it and select one of the following depending in which version of Acrobat you have:
Acrobat 9: Advanced > Extend Features in Adobe Reader
Acrobat 10: File > Save As > Reader Extended PDF > Enable Additional Features
Acrobat 11: File > Save as Other > Reader Extended PDF > Enable More Tools (includes form fill-in & save)
Note that if you only want the form to be printed, you may not need the form to be enabled, which allows Reader to save a filled-in form. You may want this if it is a long form that the user may want to save after partially completing it so they can reopen it later and complete it. You should also advise your users to use Adobe Reader to fill-in the form.

Similar Messages

  • How do I reject incoming calls on Ios7 when locked? Power button on top right does not work.

    How do I reject incoming calls on Ios7 when locked? Power button on top right does not work.

    I am also facing the same issues. Sometime i get an option to reject call and sometime i won't .
    Tried all the basic troubleshooting i could from my end but nogo. Also tried complete reset by loosing data still the same results. Any suggestions and fix, Apple ???

  • How can i place button on top right hand corner of the tabbed pane

    Hi all,
    i want to place button on top right hand corner of the tabbed pane, just run the code below, i have add button(it going to insert tab into tabbedpane), i want to place that tab into top right hand corner of the tabbedpane (not inside the tab itself). if i set tab policy setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT), it will give two button at right hand corner along with those buttons i want to and one more add button.
    please suggest so that i can move forward.
    Thanks in advance
    import java.awt.Dimension;
    import java.util.HashMap;
    import javax.swing.JPanel;
    import javax.swing.JTabbedPane;
    * @author  Dayananda.BV
    public class TabpaneDemo extends javax.swing.JFrame {
        /** Creates new form TabpaneDemo */
        HashMap<Integer, tabpanel> panelMap = new HashMap<Integer, tabpanel>();
        public TabpaneDemo() {
            initComponents();
            createFloorPlan();
            getContentPane().setPreferredSize(new Dimension(400,400));
            jTabbedPane1.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {
            jTabbedPane1 = new javax.swing.JTabbedPane();
            add_tab_button = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            add_tab_button.setText("+");
            add_tab_button.setMargin(new java.awt.Insets(0, 0, 0, 0));
            add_tab_button.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    add_tab_buttonActionPerformed(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addComponent(jTabbedPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 400, Short.MAX_VALUE)
                .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                    .addContainerGap(308, Short.MAX_VALUE)
                    .addComponent(add_tab_button, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addGap(67, 67, 67))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addComponent(add_tab_button)
                    .addGap(8, 8, 8)
                    .addComponent(jTabbedPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 292, Short.MAX_VALUE))
            pack();
        }// </editor-fold>                       
        private void createFloorPlan(){
            tabpanel floorplan_Panel = new tabpanel(panelMap.size()+1);
            panelMap.put(floorplan_Panel.getTabIndex(), floorplan_Panel);
            jTabbedPane1.add(floorplan_Panel, floorplan_Panel.getTabName());
            jTabbedPane1.setSelectedIndex(jTabbedPane1.getTabCount()-1);
        private void add_tab_buttonActionPerformed(java.awt.event.ActionEvent evt) {                                              
            createFloorPlan();
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new TabpaneDemo().setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JButton add_tab_button;
        private javax.swing.JTabbedPane jTabbedPane1;
        // End of variables declaration                  
        class tabpanel extends JPanel{
            private int tabIndex = 0;
            private String tabName ;
            public tabpanel(int tabIndex) {
                this.tabIndex = tabIndex;
                if(tabIndex >= 10) {
                    tabName = "Floor Map"+tabIndex;
                } else{
                    tabName = "Floor Map"+tabIndex+"  ";
            public int getTabIndex(){
                return tabIndex;
            public String getTabName(){
                return tabName;
    }Thanks
    Dayananda B V

    This part of tabbed pane is not customizable as it lies in the ComponentUI(TabbedpaneUI) portion of the tabbedpane.
    But I can point out the place u can change to bring the desired feature into effect.
    U can find an Inner class called ScrollableTabSupport
    Look for the methods createButtons where u can create extra buttons and add to the tabbed pane.
    The Inner class also implements actionListener where u can implement the action for the button u added.
    By this method U have to use your own extended TabbedPaneUI which u cant escape from.
    Hope this will help u.

  • Stupid question: my top 'dock' is not displayed on the screen. How do I get it back and what is it called?

    Stupid question: my top 'dock' is not displayed on the screen. How do I get it back and what is it called? It's just annoying that I have to reach high for it!

    Menu bar. Are you in Full Screen Mode?
    OS X Mavericks: Take apps full screen
    In all apps?

  • Help I am trying to update my card info and the submit button on the site is not working

    Help I am trying to update my card info and the submit button on the site is not working

    What does the message say exactly? Are you sure it's not telling you the phone has no more space?

  • Submit button in inserted HTML is not correctly shows

    Submit button in inserted HTML is not correctly shows.
    <input type="submit" name="submit" value="Submit">
    Button doesn't have a round gradient background like in real HTML.  
    Looks like Muse translated it not correctly. Muse doesn't use inserted code directly to the browser.
    The ??? is how to see a real html appearance?

    Dear All
    I feel adobelance is giving us a pretty good answer.
    I tried code in Dreamweaver and got:
    And in Muse I got:
    I did have to change the border from outset to solid grey (to give it the colour) - the main difference seems to be the font.  It was close enough for me, though.
    I am not a Dreamweaver developer and this is the first code I have run in Dreamweaver (successfully, anyway).
    Muse allows Designers to sketch web sites and as such is good - but it is not Dreamweaver.  I admit I subscribe to Creative Cloud - so I can use Dreamweaver or Muse and am using the latest version but I am a fan of Muse so far. 
    My HTML in Muse is
    <form>
    <form method="post" action="senddata.php">
    <label for="lastname" style="color:black; background:light grey">Last Name:</label>
    <input type="password" id="lastname" name="lastname">
    <input type="submit" value=" Submit Form! " style="border:2px solid grey; color:black; background:light grey">
    </form>
    I do hope this assists you all.
    Kind regards

  • I get home after buying my ipad mini play with it for a bit then try to sync my songs, movies and photos on and it syncs fine. I then look back at the ipad and seem to find on the top right saying " not charging "

    I get home after buying my ipad mini play with it for a bit then try to sync my songs, movies and photos on and it syncs fine. I then look back at the ipad and seem to find on the top right saying " not charging ". I read other forms and people also struggeling with the same problem. My computer dose'nt have enough power. There must be another way for me to get to charge my ipad mini from my computer. It works fine charging it in an outlet. any ideas??!

    The quickest way (and really the only way) to charge your iPad is with the included 10W USB Power Adapter. iPad will also charge, although more slowly, when attached to a computer with a high-power USB port (many recent Mac computers) or with an iPhone Power Adapter (5W). When attached to a computer via a standard USB port (most PCs or older Mac computers) iPad will charge very slowly (but iPad indicates not charging). Make sure your computer is on while charging iPad via USB. If iPad is connected to a computer that’s turned off or is in sleep or standby mode, the iPad battery will continue to drain.
    Apple recommends that once a month you let the iPad fully discharge & then recharge to 100%.
    How to Calibrate Your Mac, iPhone, or iPad Battery
    http://www.macblend.com/how-to-calibrate-your-mac-iphone-or-ipad-battery/
    At this link http://www.tomshardware.com/reviews/galaxy-tab-android-tablet,3014-11.html , tests show that the iPad 2 battery (25 watt-hours) will charge to 90% in 3 hours 1 minute. It will charge to 100% in 4 hours 2 minutes. The new iPad has a larger capacity battery (42 watt-hours), so using the 10W charger will obviously take longer. If you are using your iPad while charging, it will take even longer. It's best to turn your new iPad OFF and charge over night. Also look at The iPad's charging challenge explained http://www.macworld.com/article/1150356/ipadcharging.html
    Also, if you have a 3rd generation iPad, look at
    Apple: iPad Battery Nothing to Get Charged Up About
    http://allthingsd.com/20120327/apple-ipad-battery-nothing-to-get-charged-up-abou t/
    Apple Explains New iPad's Continued Charging Beyond 100% Battery Level
    http://www.macrumors.com/2012/03/27/apple-explains-new-ipads-continued-charging- beyond-100-battery-level/
    New iPad Takes Much Longer to Charge Than iPad 2
    http://www.iphonehacks.com/2012/03/new-ipad-takes-much-longer-to-charge-than-ipa d-2.html
    Apple Batteries - iPad http://www.apple.com/batteries/ipad.html
    Extend iPad Battery Life (Look at pjl123 comment)
    https://discussions.apple.com/thread/3921324?tstart=30
    New iPad Slow to Recharge, Barely Charges During Use
    http://www.pcworld.com/article/252326/new_ipad_slow_to_recharge_barely_charges_d uring_use.html
    Tips About Charging for New iPad 3
    http://goodscool-electronics.blogspot.com/2012/04/tips-about-charging-for-new-ip ad-3.html
    How to Save and Prolong the battery life of your new ipad
    https://discussions.apple.com/thread/4480944?tstart=0
    Prolong battery lifespan for iPad / iPad 2 / iPad 3: charging tips
    http://thehowto.wikidot.com/prolong-battery-lifespan-for-ipad
    iPhone, iPod, Using the iPad Charger
    http://support.apple.com/kb/HT4327
    Install and use Battery Doctor HD
    http://itunes.apple.com/tw/app/battery-doctor-hd/id459702901?mt=8
    In rare instances when using the Camera Connection Kit, you may notice that iPad does not charge after using the Camera Connection Kit. Disconnecting and reconnecting the iPad from the charger will resolve this issue.
     Cheers, Tom

  • My computer now has the 'new scan' and 'accept' buttons on top right corner & does not scan

    my computer crashed.  I re-installed my PSC 1510 drivers( updated from the HP web site) and when I hit the scan button, the 'new scan' and 'accept' icon appear in the top right corner of my monitor(they use to be on the bottom right corner) and the scanner does not respond.  Even if I hit the new scan button, nothing happens.  Any ideas what to try next?  Thanks

    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • Submit Button in Interactive form is not Triggering (Webdynpro Java)

    Hi,
    I have developed one application for Online intractive form.I have  created one text box and one submit button in Intractive
    Form.I created a Action method Submit.I have bound the onActionSubmit() method to  onSubmit Event of Intractive Form.
    For testing i am putting some value in text box and Clicking Submit button.I have set the debugger in onActionSubmit()
    method.But when I am Clicking Submit button, onActionSubmit() method is not triggering.I have
    1. I have used Submit to SAP button (Pallet>Library>Web Dynpro).
    2.I have ACF(Active Control Framework) instalation.
    3.I have WAS 6.4 and NWDS 04.
    4.I have SAPForms.api in   Program Files\Adobe\Acrobat 7.0\Reader\plug_ins path.
    One Value Node DataSource (Cardinality 1..1) is binded into dataSource Property.And pdfSource property is binded to one value
    attribute of binary Type.
    I have done one application where i am getting data from R/3 System and displaying in PDF ,It is working fine.
    I got below error in Log File for the above two applications.But geting the data from R/3 and displaying in PDF is working
    fine even if it is giving below Error in Log
    ClientJTSInterceptor.receive_reply
    [EXCEPTION]
    org.omg.CORBA.BAD_PARAM: Not found ServiceContext with id=0  vmcid: OMG  minor code: 1A completed: Maybe
         at com.sap.engine.services.iiop.internal.giop.ClientRequest.get_reply_service_context(ClientRequest.java:284)
         at
    com.sap.engine.services.ts.jts.ots.PortableInterceptor.ClientJTSInterceptor.receive_reply(ClientJTSInterceptor.java:91)
         at com.sap.engine.services.iiop.internal.giop.ClientRequest.dealReceiveReply(ClientRequest.java:133)
         at com.sap.engine.services.iiop.internal.giop.ClientRequest.dealReceiveReply(ClientRequest.java:125)
         at com.sap.engine.services.iiop.server.portable.Delegate.invoke(Delegate.java:282)
         at org.omg.CORBA.portable.ObjectImpl._invoke(ObjectImpl.java:486)
         at com.adobe.service._ControlAgentStub.done(_ControlAgentStub.java:83)
         at com.adobe.service.ProcessResource.onCommit(ProcessResource.java:609)
         at com.adobe.service.ResourcePeer.invokeCommit(ResourcePeer.java:130)
         at com.adobe.service.J2EEResourcePeerImpl.commit(J2EEResourcePeerImpl.java:124)
         at com.sap.engine.services.ts.jta.impl.ResourceList.commitTwoPhase(ResourceList.java:80)
         at com.sap.engine.services.ts.jta.impl.TransactionImpl.commit(TransactionImpl.java:355)
         at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:174)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:85)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:58)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
         at java.lang.reflect.Method.invoke(Method.java:391)
         at
    com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)
         at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)
         at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)
         at SoapServlet.doPost(SoapServlet.java:51)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at
    com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageLis
    tener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:214)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Please Suggest.
    Thanks & Regards
    muna

    Hi Muna,
    May ADS is not configured in server properly.
    Check the below link. I hope it will  help you.
    Re: no action got executed corr to SubmitToSap button of Interactive forms
    Thanks
    Siva Arikatla

  • Why is the left hand window and bar with the buttons for TOC/Search/Glossary not displaying in one client location?

    Greetings all:
    I have more years of experience with RoboHelp than I want to admit, but I have never run into this before. I have a published RoboHelp 9 project for an overseas client that displays exactly as it should when the published version is viewed by myself or another RoboHelp developer (not located where I am). However; the users at 1 of 2 two client sites do not see the left hand TOC window or the bar above the project with the buttons (the other site does see it). The users at both sites are using Internet Explorer 9, and I have been told there is no difference in their security set-up. I suspect that at the site where it is not displaying there is a security setting that is throwing it off, but I am not sure what to have them look for. Anyone have any ideas?
    W. Keith

    Do they not simply see the bar or is it empty? In the first situation, it seems they are opening the topic directly instead of via the start file.
    What is the URL the users are using on both the locations? And do the users have a hyperlink 'Show' at the top of the topics?
    Kind regards,
    Willam

  • Submit button to an email address not working?

    Created a submit button for sending the complete PDF form to an email address, works fine on my computer with the 8.3 Pro version. But when I send it to someone else to use with Adobe reader it won't work, returns an error message. Isn't that the whole idea of a form is to be able to be able to send data? My email address is wron in my profile and it won't let me change it...  [email protected]  Also tried using the FDF and XFDF format as the help suggests, that didn't work either.

    The problem may be on the other machine, one of the major problems with using e-mail submission. E-mail submission requires that the user machine be properly configured. With AA9 (or maybe AA8), additional options were setup that did not require MAPI to be active on the machine, but there are apparently some problems. If the data file is being sent, then there is not a Reader Rights issue. It looks like you are using Acroforms since you mentioned FDF and XFDF (Designer uses XML) data formats. It may be that the client is using an earler version of Reader before AR9 and that is an issue.
    The safest way to send the data is to a web script on a server, not e-mail. Setting this up is not necessarily that easy, but the safest as mentioned.
    I have not answered your problem as such, but given some indication of why you may be having a problem.

  • What's that button on top right corner?

    New to Mac and OSX here, I'm still not sure about some of the most basic things.
    On the top right corner of windows (not on all but most), there's a little button that one can click on, I have the follwing questions:
    1. What is it supposed to do?
    2. On some windows, clicking on it shrinks the window size, whereas on others it enlarges the current window. On some others, it doesn't do anything. And on Firefox, it hides the address bar. Is this normal?
    3. Is there a keyboard shortcut key for that button so I won't have to click on it every time with a mouse?
    Thanks in advance!

    Why reward points?(Quoted from Discussions Terms of Use.)
    The reward system helps to increase community participation. When a community member gives you (or another member) a reward for providing helpful advice or a solution to their question, your accumulated points will increase your status level within the community.
    Members may reward you with 5 points if they deem that your reply is helpful and 10 points if you post a solution to their issue. Likewise, when you mark a reply as Helpful or Solved in your own created topic, you will be awarding the respondent with the same point values.

  • Small black circle top right corner of display

    I purchased a Lenovo IdeaPad S500 for my daughter for xmas.  Its now just starting to show a small black/grey circle up in the top right corner about the size of a penny.  There is no consistancy it goes and comes.  I have checked all application and processes that are running.  Any ideas?
    Solved!
    Go to Solution.

    hi kreeze,
    Thanks for the Video that really helped a lot,
    That small black circle there is a Windows 8 / 8.1 touch input indicator,
        Everytime you touch the screen is shows where you touch by showing that black circle right there.
    See this video as it shows on 00:29 the black circle you are seeing on your screen, only that in this video this is what should happened normally.
    If you are not touching the screen in that posistion and the computer is detecting a continous touch in that position then I believe that there is an issue with the touch screen.
    Can you try Removing the AC adapter and hold down the power button, eventually the computer will turn off  and still hold down the power button for atleast 10 sec after the computer turned off.
    This will clear the hardware of static
    also try resetting the touch calibration and re calibrate it
    http://windows.microsoft.com/en-us/windows-8/touch-pen-settings-faq
     and hopefully will fix the touch issue.
       If not I suggest you call technical support right away and report the touch screen.
    Regards
    Solid Cruver
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Submit Button In Web Dynpro Layout not working.

    Hi All,
             I have integrated an adobe form in my web dynpro application.According to my requirement the view of screen should change when the user clicks on submit button.So I have given the submit button as one of the UI element in my WD object along with the form.But when I click on the submit button the functionality doesnot work.
    The same submit button works when there is no adobe form integrated in my WD application.
    Please let me know what needs tyo be done so make that submit button work.
    Thanks and Regards,
    Sarang

    Sarang,
    Lets go step-by-step.
    1. Create two views in your applications lets say the names are View1 and View2.
    2. Goto Diagram View of the Window in under Windows node in your Web Dynpro Explorer in NWDS.
    3. Create Inbound and Outbound plugs for View1 namely inbView1 and outView1
    4. Repeat the same for View2. So names will be inbView2 and outView2.
    5. Create a navigational link between the Vies by creating a link from outView1 plug to inView2 plug.
    6. Goto Layout tab for the View1. This is where you have embedded the Interactive form element.
    7. Set the displayType property to native.
    8. Under Events there will be onSubmit method, craete a new method called navigateToView2 and click Go. This will take you where you can implement your logic.
    9. Fire the outbound plug of View1. See following code snippet:-
    public void onActiong navigateToView2(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActiongotoView2(ServerEvent)
        wdThis.wdFirePlugOutView1();
        //@@end
    10. Edit the Interactive form, it should open Adove LiveCycle Designer.
    11. Drag-drop Submit button from WD Native library ontot the form.
    11. Don't modify anything and check if you see below code snippet in the Editor.
    // DO NOT MODIFY THE CODE BEYOND THIS POINT - 705.20051114114126.253659.250577 - SubmitToSAP.xfo
                          ContainerFoundation_JS.SendMessageToContainer(event.target, "submit", "", "", "", "");
                          // END OF DO NOT MODIFY
    12. Now whenever you click submit button on the form, what it does is that it makes call to WD framework and the onSubmit action handler is called where you have written the code to navigate to View2.
    Chintan

  • Submit Button Works for Me but Not Client

    I have created an interactive PDF form, using Adobe Acrobat 7, for my client so they can pass it to their clients. It's basically an agreement form where they have to sign and date then press the submit button to email it to my client when finished. I used the combo box tool to create the submt button: Under the Actions Tab I chose mouse up for the Select trigger, Submit a form for the Select Action, selected PDF completed form and the URL as mailto:clients email address.
    I tested it on myslef and saw that it opens Windows Live, which is my main email program, and it successfully opened the email with the attached PDF ready to send. I then sent the file to my client, who uses Adobe Reader 8, and says that when she presses the submit button an error message pops up saying operation not allowed.
    At this point I'm fairly stuck on what I should to to make this work. Any suggestions as to how I can fix this or why it is doing this? Thank you.

    George Johnson wrote:
    As mentioned by others, you can configure the form to submit just the form data, but only if it doesn't included digital signatures. You'll need to send the entire PDF if it does.
    Acrobat 8 is not the latest version, so Adobe no longer sells it. Acrobat 10 (X) is the latest version. Also, why are you using a combo box instead of a button?
    Mostly because I'm very new at interactive PDF's. This isn't my usual job for them, just helping them out. They gave me a link to a tutorial site for interactive PDF's and this is how they showed me to do it. So I really don't know anything about these, that's why I am here.
    If a button is the way to go then I'll try it. I went a ahead and did that and sent a test to my client to see if it works better.

Maybe you are looking for

  • Im trying to publish a web gallery to BC, my settings seem correct but I'm still getting an  error: FTP transfer failed ' unknown error'. Techs on BC, say FTP working fine. Please help!

    Hey peeps, Im trying to publish a web gallery to be hosted on BC. Despite having what seem the correct settings im getting an error: FTP transfer failed ' unknown message'. Have checked with techs on BC. They say FTP working fine that end. Any sugges

  • Recover database until time - doesn't recover as expected

    Hi, We've got an Oracle 9i db (9208) running on AIX. We've had a problem and that has meant restoring all the dbf's and control files from the over night backup onto the server replacing the currently corrupted system. Once this was done we then open

  • Add data folders to idvd

    How do I include data folders on the dvd I've created for a movie? In other words I've completed the idvd project for a movie, but don't know how to add data folders. I want to add all of the pictures I've included in the dvd as seperate files that c

  • Need help with SQLite

    I have a SQLite database from with I want to display my results in a form in a Flash movie. I know how to display these results in a datagrid, but I want to display them in seperate texfields. Can anyone help ? My current code for displaying results

  • ESS MSS docs plz

    Hii SAP GURUS.... Basically I am a PA OM Payroll Consultant... Need some help ESS & MSS Configuration (EP)...in Functional perspective... Any help will be highly appreciated If u have any material kindly send it to [email protected] Thanks [email pro