Please Help--Can't fill out or submit/save .PDF forms

Hi-
Running Safari 5.1.2 on Mac OS 10.6.8 (the latest updates according to software update) and using the Schubert PDF browser plugin. http://www.schubert-it.com/pluginpdf/
Before updating from Safari 5.0.xxxx I could fill out and submit .PDF forms in Safari without any issues. Now, I cannot. The form comes up but I cannot enter any text into the text fields.
About a month ago I went through this and had to revert back from a time machine back up because the ability to fill out forms in browser is an everyday necessity for me.
Does anyone know how to fix this issue?? Please help...

Ok.. I still cannot get this figured out. I'm baffled and frustrated!!
I did a deep cache cleaning using Snow Leopard Cash Cleaner, all of your reccomendations, and about an hours worth of reading. I had the schubert-it plug in uninstalled and have gone back to reinstalling it with no luck. I was thinking after all the cache cleaning it might work. Nope..
I can't beleive this is an issue after an update.. Apple is normally so great with this stuff.
The com.adobe.reader folder does not exist on my computer.
This problem occurs with any online form, not just the ones I need to access and submit, and it occurs with the native PDF support in Safari as well as the schubert app.
Any other ideas? I read on one post where someone fixed it with quicktime, but the video he put up to show how he fixed it was no longer available.
Carolyn, or anyone else, .. any ideas??

Similar Messages

  • What do I need to fill out and print a PDF form?

    I need to type on this form save and print it, how do I do that?

    Hi nette7,
    To fill in, save, and print your form, you can use the free Adobe Reader. You can download the free Reader from here: PDF reader, PDF viewer | Adobe Reader XI.
    Of course, if you have a full version of Acrobat, you can use that as well. But Reader will definitely give you the tools you need to get the job done.
    Best,
    Sara

  • Issue with being able to fill in data and save pdf forms in adobe reader

    Hi All,
    This is my first time posting on this forum so not sure what way to go about it so i'll just start by explaining my problem.
    I purchased adobe acrobat xi standard to create pdf forms(fillable forms) so that the receipents of these forms can open them in adobe reader, save them on their local drive and fill them in.
    However, when I uploaded them online(as they will be downloaded from an internal website) - when the forms are opened in the browser this error appears
    Currently when this error appears the client canno fill in their data or save it.
    Any help on this issue would be appreciated!
    Noel

    Thanks for replying pat - that was another question I have. Is there a way I can get a dialog box to pop up when they click on the forms button?
    Like the following;
    As at the moment, they would have to click the actual "save" icon - and the same error will appear on their local disk?

  • How to fill out and submit a web form using LabVIEW

    Almighty Forum,
    This question will require knowledge not only of LabVIEW, but also of HTML, JavaScripting, and possibly more.  I don't know about you, but I have an on-line account for pretty much everything: Bank, Credit Card, Savings, ETrade, 401K, Roth IRA, etc.  About once a day I want to go and check on everything (because I'm an anal engineer), but it takes so freaking long to navigate and login to each site.  Even after favoriting all the links and using cookies to save my "username", I still have to type in my password, hit enter, and wait for each site.  This takes time, time is money, and money is why I'm doing this in the first place; so, I need a better solution.  And since I stand by LabVIEW, I want a LabVIEW solution. 
    The solution in my head is something like this.  I have one front panel with an embedded IE browser (in an ActiveX container).  On the side of the browser I have my "favorite" toolbar.  When I click on a button in the toolbar, it takes me to the site and automatically logs me in.  Simple.  Now once that is working I could make a single app with no browser interface that simply went out and queried all my sites for the important values and displayed them on the front panel.  But not to get ahead of myself, I'll stick with my first goal for now.  Baby steps.
    So here is what I have now.  I can load www.bankofamerica.com into my browser and automatically enter my "online ID" and "passcode".  I just can't seem to figure out how to submit the form.  I realize that I could just simulate a mouse click on the coordinates of the Sign In button, but that would not be nearly elegant enough for me to have pride in this application. 
    If you run the VI that I'm posting, and click Submit Info, you are taken to a error page saying something along the lines of "We're temporarily unable to process this request.  Please try again."  Now this would probably make sense with the "dummy" ID and passcode that is being used in this VI, but I get the same thing when I use my real information.  I'm beginning to think that this is something BOA has done to prevent people from logging in programmatically.  That would probably make sense to deter potential hackers.
    There's got to be a way...  can you help?  This might take some time, but think how it could help streamline you in the long-run
    PS:  I down-converted the VI to 7.0 format for anybody stuck in 2003
    Thanks,
    Travis H.
    Travis H.
    LabVIEW R&D
    National Instruments
    Attachments:
    Bank of America Login - test.vi ‏179 KB

    Otman wrote:
    Simply stated, you want to hit some button on your app and instantly see all your accounts no matter where from, is that correct?
    Hi Otman,
    Actually, my first goal is to be able to hit a single button that automatically logs into a single account.  For example, when Bank of America Login - test.vi (attached above) is run, it should automatically:
    1) Navigate to www.bankofamerica.com
    2) Programmatically enter the "Online ID" and "Passcode"
    3) Submit the form and log in
    Its step 3 that I'm having trouble with.  Again, see the VI attached to my first post for a good example of what I'm talking about.
    Thanks,
    Message Edited by Travis H. on 11-16-2005 10:27 PM
    Travis H.
    LabVIEW R&D
    National Instruments

  • Java program to automatically fill out and submit a Web form

    I need to write a program to set the fields of a Web form and submit it automatically.
    Can anyone help?
    Thanks in advance!

    heres some code I have been messing about with
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.security.*;
    import java.net.*;
    /** Author :James Charles 20/03/2004
    This module handles the customer booking screen **/
    public class Bookings extends Applet implements ActionListener,   // sets up the initial display screen
    ItemListener
         Choice details;
         TextField name;
         TextField telephone;
         TextField email;
         TextField address;
         TextField postCode;
         Color webPage = new Color(0,128,255);
         Button btnClick;
         String nameOutput =" ",telephoneOutput=" ",emailOutput=" ",addressOutput=" ",postCodeOutput=" ";
         int jobNumber;
         int authorisationCode ;
         Font formEntry = new Font("SanSerif",Font.BOLD,15);
         Font dataDisplay = new Font("SanSerif",Font.PLAIN,16);
         boolean dataEntry = false;
         int position = 2;
         String[] detailsOutput = { "Choose a Subcontractor","Painter & Decorator","Electrician" };
         public void init(){
              readJobNumber(jobNumber);  // reads the las job number from file jobNumber.dat
              Button btnClick = new Button("Submit Details");
              setBackground(webPage);
              add(new Label("                           Name"));
              name = new TextField(30);
              add(name);
              add(new Label("                           Telephone"));
              telephone = new TextField(25);
              add(telephone);
              add(new Label("House No"));
              address = new TextField(3);
              add(address);
              add(new Label("Post Code"));
              postCode = new TextField(8);
              add(postCode);
              add(new Label("E-Mail address"));
              email = new TextField(35);
              add(email);
         public void start(){
              add(new Label("                                                                       Please choice the appropriate Tradesman that you require"));
                        // choice code set up
              details = new Choice() ;
              details.addItemListener(this);
              details.add("Choose a Sub Contractor");
              details.add("Painter & Decorator");
              details.add("Electrician");
              details.select(0);
              add(details);
              btnClick = new Button("Submit Details");
              btnClick.addActionListener(this);
              add(btnClick);
              btnClick.setEnabled(false);
         public void actionPerformed(ActionEvent e) {
              System.out.println("Was in action performed event =" + e);
              dataEntry = true;
              nameOutput = name.getText();
              telephoneOutput = telephone.getText();
              emailOutput = email.getText();
              authorisationCode = (int)(java.lang.Math.random() * 100000);
              if (dataEntry == true){
                   btnClick.setEnabled(false);
                   repaint();
                   System.out.println("In between paint and write");
                   WriteBookings(nameOutput,telephoneOutput,emailOutput);
         public void itemStateChanged(ItemEvent e) {
              position = details.getSelectedIndex();
              System.out.println("Position in itemStateChanged after getSeletedIndex = " + position);
              btnClick.setEnabled(true);
              repaint();
         public void WriteBookings(String nameOutput,String telephoneOutput,String emailOutput)   {               
                       writeJobNumber(jobNumber);
              try{     
                   DataInputStream in = new DataInputStream(new      FileInputStream("CustomerDetails.txt"));
                   char singleChar;          
                   DataOutputStream out = new DataOutputStream(new FileOutputStream("CustomerDetailsNew.txt"));
              /**     try {
                        jobNumber =in.readInt();            // this code reads last job number and increments it
                        singleChar = in.readChar();
                        jobNumber ++;
                        out.writeInt(jobNumber);
                        out.write('\n');
                        while (true){                           // this code
                             singleChar = in.readChar();
                             out.writeChar(singleChar);
                   catch (EOFException e) { }
              out.writeChars(nameOutput);
                    out.writeChar('\t');
              out.writeChars(telephoneOutput);
                    out.writeChar('\t');
              out.writeChars(emailOutput);
              out.writeChar('\t');
              out.writeInt(jobNumber);
              out.writeChar('\t');
              out.writeInt(authorisationCode);
              out.writeChar('\t');
              out.writeChars(detailsOutput[position]);
                    out.writeChar('\n');
              out.close();             
           catch (IOException e){
              System.out.println("Error: " + e);
              System.out.println("Close File"); //*********** End of read/write process, code below renames the new file to the input file
              File fileDelete = new File("CustomerDetails.txt");
              fileDelete.delete();
              try{     
                   DataInputStream in = new DataInputStream(new      FileInputStream("CustomerDetailsNew.txt"));
                   char singleChar;          
                   DataOutputStream out = new DataOutputStream(new FileOutputStream("CustomerDetails.txt"));
                   try {
                        while (true){
                             singleChar = in.readChar();
                             out.writeChar(singleChar);
                   catch (EOFException e) { }
               catch (IOException e){
              System.out.println("Error: " + e);
         public void readJobNumber(int JobNumber) {
                       StringWriter sw = new StringWriter();
                       PrintWriter  pw = new PrintWriter(sw);
              try {
                   //URL ftpUrl = new URL("ftp://j-charles:[email protected]/jobNumber.dat");
                            //InputStream inFile = ftpUrl.openStream();
                   URL ftpUrl = new URL("ftp://jim:evvcece@/jobNumber.dat");
                           InputStream inFile = ftpUrl.openStream();
                   BufferedReader in   =  new BufferedReader (new InputStreamReader (inFile));
                   String line = null;
                   while ((line = in.readLine()) != null) {
                   System.out.println(line);         }
                   in.close();     
                   catch (IOException e) {
                         System.out.println("Reading Job number error " + e);} // catches IO exception
         public void writeJobNumber(int JobNumber) {
              try {
                   URL ftpUrl = new URL("ftp://j-charles:[email protected]/jobNumber.dat");
                           URLConnection conn = ftpUrl.openConnection();
                   conn.setDoOutput(true);
                           OutputStream out = conn.getOutputStream();
                   System.out.println("writing job number" + jobNumber);
                           PrintWriter writer = new PrintWriter(out);
                           System.out.println("Writing to ftp");
                   writer.print(jobNumber);
                   writer.print('\n');
                           writer.close();
                   out.close();
                   catch (IOException e) {
                         System.out.println("Job number error " + e);} // catches IO exception
         public void paint(Graphics g){
              if (dataEntry == true){
                   System.out.println("Calling paint");
                   g.setFont(dataDisplay);
                   g.drawString("Our allocated " +  detailsOutput[position] + " will contact you within 24 hrs", 10,200);
                   g.drawRect(0,260,650,50);
                   g.drawString("Your details are as follows:", 10,280);
                   g.drawString(nameOutput, 10,300);
                   g.drawString(telephoneOutput, 200,300);
                   g.drawString(emailOutput, 400,300);
                   g.drawString( "Job#" + jobNumber, 10,400);
                   g.drawString("Authorisation Code:- " + authorisationCode, 200,400);
                   g.setFont(formEntry);
                   g.drawString("Please keep note of the job number and authorisation code to enable you to use the job tracker screen.",10,450);
              dataEntry = false;
    }

  • Can anybody please help me to find out the link where small co.

    can anybody please help me to find out the link where small companies implementing saps.

    Hi,
         SAP is providing a solution to Small Scale Industries with SMB (Small and Midsize Business) Product for various industries. It's a Pre configured SAP Solution pertaining to a specific industry(like Pharma, Oil..etc) with which the implementation as well as the cost will also decreases.
    Regards,
      Jayaram...

  • Create a Form in Acrobat Standard that can be filled out AND SIGNED using Free Reader

    I am tasked with creating forms that can be read, filled out and signed and submitted electronically by users that have only the reader software. I am using Acrobat 5 standard. I have not yet found a way to successfully create a form field that would allow users to insert a signature of some sort. This signature does not have to be encrypted, or use the digital signature system Adobe Acrobat has where you create a profile, log in, etc. It could be as simple as the ability to insert a jpeg or other image of their handwritten signature. This is to avoid having to have them fill it out, and then print it and fax or scan it in. It would be great if they could fill it out and then just save it and email it. How would I do this, or is it even possible?
    Thanks,
    JOhn

    With AA5, there is no capability to submit a signature - even electronic. You can create a form that can be filled out, signed in the sense of adding a name and date, and submit to a web site.
    Insertion of images is not part of forms with AA5, but I think has become possible recently. Even so, they reader would also have to be compatible with the feature to be able to use it. If the typing of the name and the date would do, then you can add those fields - sort of the limit with AA5.
    With AA5, they can not save the form with the data. They can submit the data as an FDF file to a web site. If you have control of the client machines, then you can consider e-mail since those issues can be worked out locally. Without control of the clients (like a general form on the web), don't bother with e-mail since there will always be some that have problems.

  • I have purchased Adobe XI Pro and created a form for entering bowling scores to submit to newspaper for my high school team.  I can not figure out how to get pdf's into my documents folder on my iPad so that I can access the files in bowling alleys where

    I have purchased Adobe XI Pro and created a form for entering bowling scores to submit to newspaper for my high school team.  I can not figure out how to get pdf's into my documents folder on my iPad so that I can access the files in bowling alleys where I do not have a Wi-Fi connections.  I need to be able access files without going to acrobat.com.  Help!!!@

    Post the PDF files to a web site. The browse to them in Safari on the iPad.  When you Open the files specify the Open to occur in Adobe Reader.  Then you can have/Save them in your Documents folder on the iPad.   An iPad has limited access to files otherwise.

  • Please help me to come out of this dilemma.

    Hi
    I am in dilemma.
    Recently i have joined a new organization which is a world leader in its field . The company name is very popular around the globe. But the thing is its almost 4 months , and as an Oracle DBA , i am not getting chance to work on something interesting / challenging . The thing is , i studied the environment here and i think most of my work involves only preparing DB docs , attending meeting and raising support tickets once a while. So very minimal technical work.
    To be honest, in last 4 years of my career i haven't worked in such a large organization before so during interview i didn't ask for type of work ,and i just wanted to join this organization as it will have a dramatic impact when i mention the name in my resume . I do not want to quit this organization so early because it will have a bad impression . Also , i think speaking to my bosses will not work because they cant help it in any way .
    I am happy with every thing else here , but i want to leave this company for doing something challenging as an Oracle DBA , but want to stay here because every thing else is damn good and also when i switch to a new company after 2 years , people will be dying to hire me ;) , am i contradicting ?
    Please help me to come out of this dilemma.
    Thanks

    Well, joining a big company from a small company and then leaving it just in few days would actually backfire. Next hiring people would think that since you were in capable to handle the workload in a big company(because you never worked in such environment before), you were thrown out. You won't be able to justify your reason that you left because you didnt' find enough challenge there because it can be completely blown away by a simple counter that how did you know that there was no challenging work there as you never stayed there even for a year too! So IMO, you would do more harm for you than anything good be quitting now. Its a mistake not to ask about the work but you have committed it already . What you should n't do is to do add another one and that is to leave the company now.
    Since you are not having much work, why don't you use it learn more about the company, its various works, other divisons and above all, to learn oracle database in your spare time. There is no place where you would be given challenges for your sake. If there is work it would come to you else you would be remaining free. You are working as a normal dba I believe not in support or something like that for you, every time, a new issue ticket is ready. If you have spare time with you, use it wisely to understand how things are working , both in your organization and with oralce db. Spend time doing trainings and learn more about the product, complete at least and then leave.
    Just my 2 cents.
    Aman....

  • How do I create an online PDF form that can be filled out by recipient?

    I have Create PDF Online and am wondering how I go about creating a document that can be filled out by a recipient.  This would be regarding a questionaire type form where I would ask questions and the recipient fills in the answers.  I know I have received these in the past from other people, but do not know how to do this myself.  I don't know if this is even possible with CREATE PDF ONLINE or if I need to purchase a special Adobe software package in order to do this.
    Thank you in advance for any information that any of you can give me.

    i'm afraid i can't help you. i've never tried to create a document that can
    be filled out. hopefully, someone else can help you.

  • The enter key is not working in firefox but it has working fine in chrome and IE so please help me to rid out from this.

    The enter key is not working in firefox but it has working fine in chrome and IE so please help me to rid out from this.

    Hello gokulaan, '''try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • In my mac i dont create icloud keychain but it is asking password please help me to get out of this problem

    In my mac book pro i don't create icloud keychain. But it is asking password.Please help me to get out of this problem.In OS X Mavericks

    Hi, nportillo,
    The next time you attempt to reach Skype Customer Service, try again using a different web browser and choosing a different path through the various drop-down menu options presented.  Do not choose the obvious - you have already established that path is not working.  Also, look to approve a pop-up dialogue box which would connect you to start an instant message chat with a customer service agent. If you have pop-ups blocked in your browser settings, this will also impede reaching an agent.
    Skype is aware of problems reaching their customer service unit via the website, however people are getting through.  I have flagged your report for follow-up by those to whom I report.
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • We have a form that we want to make into a form that can be filled out electronically. Can I do this?

    We have a form that we want to make into a form that can be filled out electronically. Can I do this?

    If you mean a PDF document and want to separate it into several parts, there is no way of doing it with just the free Reader, buy it can be done with Acrobat. If you are talking of another type of document, please post full details.

  • I am asking this for my friend, who was using iphone 4. He lost it one week back and couldnt find it so far. He is having his IMEA number of the phone. Could you please help me in tracing out this?

    I am asking this for my friend, who was using iphone 4. He lost it one week back and couldnt find it so far. He is having his IMEA number of the phone. Could you please help me in tracing out this?

    If he has not previously set up Find My iPhone, there is no way to
    track the iPhone. Apple does not and will not track phones.
    Immediately change all passwords. Hopefully he was using a passcode
    to get by the lock screen. If he was, his data is protected; if not, anyone
    who finds the iPhone can access anything that was on it.

  • HT202159 I am unable to download and always asking password after entering the password  also asking same question please help  me to sort out  this problem.

    I am unable to download and always asking the password it's ok for the once and it's asking more and no results only repeating the same so I am unable to download please help me to sort out this problem and my request please sort out from your side  or let me guide .

    Thanks Eric for responding.
    I checked and it does not appear in the Applications folder.
    I tried yesterday on an ethernet connection with a download speed of 2 Mbps but, unfortunately the connection died(It happened from the ISP end, which is out of my control) in between after which there was no trace of the download that happened for so long(till the internet connection death). 
    One more serious query which I am unable to understand. If the internet connection, dies in the midst of the download is in progress why is it so that the state does not persist and one has to restart the entire process again. Is there no solution for this?
    I tried so many times and its the same case after some amount of download it vanishes. So many unsuccessful attempts. I am ****** off now. Is it not possible to see Mavericks? Why does different machines of Apple behave differently? Somewhere it goes smoothly and somewhere like my mine. Why did not Apple release a non apple store version? Is this not a bad sign of letting the users struggle when something is being offered for free?
    The reason I asked as whether we can download the .app of Mavericks is that, there are so many applications that I have downloaded web and have installed. All that works fine. Can't we do the same here? You download a copy of Mavericks installer application and upload it for me in Google drive or like online storage places which can be downloaded and used by me? Help me understand.
    Thanks again.

Maybe you are looking for

  • Heating battery issues in 4s

    iphone 4s is getting very heated and loses battery very quickly despite practically no usage. Are others facing similar issues and any suggestions / solutions that can be shared.

  • Using a Global as a value change in an Event Structure

    I have many events I want to react to based on Global buttons.  How do I get the Event Structure to recognize a global button value change?  This screen shot is one of my many attempts.  So far my events only change with a real button on the FP. Than

  • Upgrading Phone to 6 (returned 6 plus)

    I have a plan under someone I do consulting work for. Their offices are in Pasadena and I am in South Orange County. They ordered my phone which was ignoble for an upgrade and I decided to try iPhone 6 plus. I drove up to Oadadena to pick it up and r

  • 6163 pro & 950 Celeron

    I wander if my 6163 Pro is going to work with a new CPU that I intend to get from a friend of mine: A 950 Mhz Celeron (it has 126 Kb of L2 cache so I think it's Coppermine based - I don't have a clue on the FSB though). I use the board with a 566 Cel

  • How to change database in crystal report design

    Hi experts                      I have created a report in crystal addon using demo database, now I want to change the database to see the actual testing of report. I tried by Set Location option in Database expert I log off the current server then L