Drop Down Field issue with Acrobat 8.0 and Acrobat 7.0

Hi All,
     I have a dynamic table with a drop down field  which will be filled from a WD context.The minimum row count for the table is  one.
The problem is i was able to get the Drop down values for all the rows  in Acrobat Reader 8.0 and i was able to get drop down values only for the first row(minimum row count is one) in Acrobat Reader 7.0.
What could be the difference?
Thanks
Gopal

It's a result of Mozilla's annoying rapid-update policy. We can load plugins (i.e. can display a PDF file within the Firefox window) but cannot load extensions (the toolbar) unless they are marked as compatible with the running version of the browser. Not only is that version now changing every 6 weeks, but developers are forbidden to mark an extension as being compatible before the new version is released to market (i.e. we cannot certify against betas). With each major release in the new Mozilla rapid cycle, the type of code Adobe uses (binary XPCOM) has to be recompiled from scratch - so as of right now the Create PDF extension doesn't work in FF7 even if you turn off compatibility checks. It should work, but Firefox won't allow it to execute.
It means that every time Mozilla pushes a new major version to the public, XPCOM extension developers have to push an update as well. Adobe already get hammered for requiring users to update too often! However, each time Acrobat and Adobe Reader push a scheduled patch they should catch up with whatever version of FF exists at that time. The next Acrobat Family patch is due mid-January.
It's not just Adobe who are affected by this - many other vendors include FF extensions with their products (as opposed to having them as standalone items on the Mozilla site) and cannot realistically bring out new versions of their software every time Firefox flips up a digit.

Similar Messages

  • I have version 3.6.16 and when I login to my hotmail account, and type the first letter of the email address, a drop down box appears with my hotmail address and I can choose it from that box with a click. How do I get version 4 to do this? Thanks.

    I have version 3.6.16 and when I login to my hotmail account, and type the first letter of the email address, a drop down box appears with my hotmail address and I can choose it from that box with a click.
    How do I get version 4 to do this?
    Thanks.

    The new but not-ready-for-prime-time autocomplete method searches for matches that contain the entered text, not just ones that begin with the string. Your options are:
    1) type in longer strings that narrow the search
    2) use an add-on to search just the beginnings:
    https://support.mozilla.org/en-US/questions/1037469
    3) install an older version of TB:
    http://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/

  • Using JavaScript to auto populate a field based on numeric value of a separate drop down field

    Hello, I am trying to set up a simple, I hope, javascript which will enable to me auto populate one field based on the numberic value of another field using Acrobat Pro XI.
    Essentially I have 2 drop down fields (we'll call them DD1 and DD2).
    DD1 is the sum of 8 preceding drop down values. That sum can be anywhere from 0 - 40. Whatever that sum falls within a range which identifies a rating. The ratings and ranges are below:
    0-8: Non-Performer  
    9-16: Low Performer  
    17-24: Performer  
    25-32: High Performer  
    33-40: Exceptional Performer
    DD2 is where the rating ("non-performer", "low performer", etc.) will be captured. Instead of requiring the user to look at DD1, determine the value, and then identify and input the rating manually, I would like DD2 to auto populate the rating based on the value (sum) in DD1.
    For example, if DD1 shows a value of 27 then DD2 would auto populate "High Performer". So how do I write this code or execute this? In excel I would use an if, then statement. Is there something similar in Acrobat Pro XI.
    Any help is greatly appreciated. Thank you in advance.

    If you use a text field, the custom calculation script could be:
    // Custom calculation script for text field
    (function () {
        var s = getField("DD1").valueAsString;
        // Blank this field if input is blank
        if (!s) {
            event.value = "";
            return;
        // Convert string to number
        var v = +s;
        // Set this field's value based on the input
        if (v <= 40 && v >= 33) {
            event.value = "Exceptional Performer";
            return;
        if (v < 33 && v >= 25) {
            event.value = "High Performer";
            return;
        if (v < 25 && v >= 17) {
            event.value = "Performer";
            return;
        if (v < 17 && v >= 9) {
            event.value = "Low Performer";
            return;
        if (v < 9 && v >= 0) {
            event.value = "Non-Performer";
            return;
        // If none of the above fit, blank this field
        event.value = "";

  • Don't allow to select duplicate entries from drop-down fields, JS pls.?

    Hello
    I have 3 drop down fields in my_sub_form, say, my_country_1, my_country_2 and my_country_3. All drop down field's list boxes are populated with 10 country names, say, US, Canada, Spain, Germany, France...
    Say, user selected US in my_country_1 drop down field, again user is TRYING to select same entry as US in my_country_2 field======> Here at this point, as soon as user selected as US in my_country_2's droppped down list box=====> immediatley, I need to throw warning message to the user and make the my_country_2 as "" BLANK.
    Basically, my form should not allow the user to select the DUPLICATE entries in these 3 drop-down fields, all the 3 should be DISTINCT.
    If i write JS in EXIT event  of my_sub_form, its working fine, but not user friendly, it kind of late.
    Hence we want to have INSTANT alert to user AS SOON AS user selects a duplicate entry in any drop down field
    I tried to put some JS in CHANGE event of my_country_1 and my_country_2, but not working
    Pls. provide me some JS and the event name, object name
    Thank you

    you could put in the exit event of the my_country_1 list:
    if (this.rawValue == my_country_2.rawValue || this.rawValue == my_country_3.rawValue)
    xfa.host.messageBox("You cannot choose the same country");
    this.rawValue = ""
    and then put the same in the other dropdowns but change the names.

  • Acrobat X Pro Drop-down Fields Do Not Appear on Adobe Reader for iPad. Help!

    Hello,
    I am having a problem getting drop-down fields to appear on Adobe Reader for iPad. Basically, I need to create a form that includes drop-down fields, with the end result being a form that can be viewed and completed on an iPad, using the Adobe Reader app. Above all else, the end result needs to be viewable on an iPad.
    I created a form using Acrobat X Pro within which drop-down fields work flawlessly. However, when I try to open this form on an iPad, the drop-down fields do not even appear. I have done some investigating on the Web (including these forums) and come to understand that this has to do with javascript limitations on Apple products, but have yet to discover a solution to my problem.
    To summarize: does anyone know how to make drop-down fields appear in Abobe Reader for iPad app? Or, does anyone know a workaround in which I could have a drop-down menu (or something similar) in my form and have it work on Adobe Reader for iPad?
    Thanks in advance for the help. I took on this project from my boss' boss, so I'd really like to get this done for him.

    Hello GKaiseril,
    Thanks for the reply. I experienced the issue running the most recent version of the Adobe Mobile Reader app. I'm not sure I can convince the client to use anything else, but its worth a shot.
    All I need is a simple drop-down list (multiple fields in the document) with 4 options that the user can select and submit as a form. Is this something EZ Pdf reader can do? Also, is EZ Pdf Reader free? (the reason I ask is I am an Android user and do not readily have access to a iPad).
    Thanks again.

  • I have created a PDF form with multiple drop downs, all with the same drop down values. When I select a value from 1 of the drop down fields, it replicates in all of the others - which I do not want. How can I fix this?

    I have created a PDF form with multiple drop downs, all with the same drop down values. When I select a value from 1 of the drop down fields, it replicates in all of the others - which I do not want. Can I fix this?

    I'm fairly new to this, but I think it has to do with the way you have the drop downs named. Did you copy one then keep pasting it in each field? If so, that is the problem. You should rename each one with a different number: Dropdown1, Dropdown2, etc. I think that might solve the issue.

  • I am currently using FormsCentral to distribute a form created in Acrobat. I need to add an option to one of the drop down fields but do not want to re-distribute the form due to reporting purposes. How can I do this?

       I am currently using FormsCentral to distribute a form created in Acrobat. I need to add an option to one of the drop down fields but do not want to re-distribute the form due to reporting purposes. How can I do this?

    You can open the form in Acrobat, select "File > Save a Copy", open the copy you just saved (it doesn't happen automatically), edit the dropdown to add the new item, save as a new file, and then Reader-enable the file by selecting: File > Save As Other > Reader Extended PDF > Enable More Tools. The resulting PDF should work with FormsCentral just like the original.

  • Microsoft Word for Mac 2011 - Forms with drop down fields providing fill-in options upon hovering

    I have been sent a few form documents created in Microsoft Word which contain drop down fields that provide fill-in options upon hovering over those fields on the form.  These form documents end in ".docx".  I do not own Microsoft
    Word for Mac, but am considering buying it or signing up for the Office 365 service for Mac so that I can fill in these fields using the drop down options.  My question is:
    Will Microsoft Word for Mac or the Office 365 for Mac service allow me to use the drop down fields that provide fill-in options upon hovering?  Or is this feature not available when using either Microsoft Word for Mac or the Office 365 service
    on a Mac?
    Any advice would be appreciated.  Thank you!
    -William

    Hi,
    I'm glad to hear you got the advice here, and we support Office for Windows in the current forum, if you have further question about Office for Mac, I suggest you post the question in Office for Mac forum:
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011?sort=lastreplydate&dir=desc&tab=Threads&status=&mod=&modAge=&advFil=&postedAfter=&postedBefore=&threadType=All&tm=1412299054037
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Infopath 2013 - Values are not appearing in a drop down field referencing site column which uses lookup in custom list

    I have a master custom list that has a set of site columns. For each site column there is a lookup to a custom list with reference data. When I edit the list in data entry view all values in drop down fields work fine, but when I customize the form for
    the master list, no data appears in the drop down fields. I can change the data binding on the form so it references the the correct data and when I preview the form it works. But when I publish it, no data is available in these drop down fields.

    Hi  shakonarson,
    According to your description, I try to reproduce your scenario but the lookup field works fine.
    When we customize the form for the  list  in the InfoPath 2013 , it is by design that the Drop-Down List Box control cannot  display its value.
    For troubleshooting your issue, please take steps as below:
    Go to lookup List Box on your form in  InfoPath 2013 , right click it and choose “Drop-Down List Properties” from the bottom of your field menu.
    Make Sure you select “Get choices from an external data source” and correct Data source.
    Make Sure the Xpath  of Entries is “d:SharePointListItem_RW” under the dataFields.
    Here is a good blog for sorting lookup column DropDown by customizing your list form with InfoPath you can have a  look:
    Sort SharePoint lookup column Dropdown by customizing your list form
    with InfoPath
    Hope this helps!
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Drop down fields on Adobe reader for iPad

    Hello,
    Regarding using an order form in adobe reader for iPad, I am able to check boxes, free form text, etc. but drop down fields are not retaining selection.  I will click drop down, make selection, and field is still blank. If I select the same drop down my choice is checked. When I email form the field remains blank.
    Any help would be appreciated!!

    Hello,
    Thank you for the response.  I am currently using Adobe 11.01.  I believe I have found the problem.  Our company utilizes an app names "Showpad" for our sales teams.  Within Showpad you can open PDF's, however any interactive functionality is not available.  To solve for this, you can open a PDF within Showpad and then "open with" a different app.  In this case, I opened with Adobe Reader.  It looks like all the functionality returns to the document minus that drop down issue I am experiencing.
    I tried to open the same order form from my email using Adobe Reader and all functionality is available (including drop down).
    It looks as though something is getting lost between the Showpad app and Adobe Reader app.

  • Restrict refresh on a drop down field in ADF

    Hi everyone,
    I have a drop down field and others simple text box in a adf form.
    When a particular value is selected from the drop down , all its associated fields from database get copulated in the rest of the text boxes.
    Now, the issue is the dropdown componenet also gets refreshed and fives only one selected value on refreah.
    I want to retain the dropdown with all options even when all other fields refresh, getting values from the database.
    Please help.

    Hi,
    Please see the below link...
    [Create dropdown in selection screen;
    Hope it will help you.
    Regards
    Natasha Garg

  • How do I change the order of a drop down field of an existing form?

    I have added additional responses to a drop down field and I want to reorder with previous response options.  The move up and move down feature does not work.   

    That worked.  Thanks!
    Cheryl Aeling
    [signature removed by forum host]

  • Binding web service to multiple drop-down fields.

    I am getting alogn quite well using Web Services with Adobe XFA Forms. I was able to bind very complex web services results to dynamic PDF Forms.
    I was also able to bind Drop-Down Items to a web service.
    I still need little help though.
    I have 2 Drop-Down Fields:
    Hijri Year
    Hijri Month
    They are retrieved by Web Service developed over SAP Systems.
    The web service will return a nested XML Structure of Hijri Year Array of Items, where each Year Item, will have nested array of months item.
    When I click on the button to execute the Web Service, the Year Drop Down is populated. So now how to populate the Month Drop-Down Items ?
    It is a bit tricky, and I cannot figure out what to do.
    Please help.
    Tarek.

    Well, I was almost about to do that with very little coding, but looks like it is not possible. I seems that I have to bind the XML to the dorp-down manually.
    I am using Stefan Web Service Per-Processor model. I am capturing the web service reulst, and loading the node I want to xfd.datasets.data.
    I am doing something like this:
    Sample XML:
    <?xml version="1.0" encoding="UTF-8"?>
    <root>
    <AttendancePeriod>
       <item>
          <Year>1430</Year>
          <Periods>
             <item>01</item>
             <item>02</item>
             <item>03</item>
             <item>04</item>
             <item>05</item>
             <item>06</item>
             <item>07</item>
             <item>08</item>
             <item>09</item>
             <item>10</item>
             <item>11</item>
             <item>12</item>
          </Periods>
       </item>
       <item>
          <Year>1431</Year>
          <Periods>
             <item>01</item>
             <item>02</item>
             <item>03</item>
             <item>04</item>
             <item>05</item>
             <item>06</item>
             <item>07</item>
             <item>08</item>
             <item>09</item>
          </Periods>
       </item>
    </AttendancePeriod>
    </root>
    DataConnection Post Execute Event:
    var rootXml = null;
    var soapFault = null;
    if (xfa.event.soapFaultCode)
    soapFault = {code:xfa.event.soapFaultCode, message:xfa.event.soapFaultString};
    else
    rootXml = xfa.datasets.connectionData.DataConnection.Body;
    preProcessor.processResponse(rootXml, soapFault);
    The Response Processor function:
    * Called after the web service response has been received.
    * @param rootXml XML node which is the root of the web service response XML data. Null if a fault occurred.
    * @param soapFault Object with 'code' and 'message' properties if a fault occurred; null otherwise.
    function processResponse(rootXml, soapFault)
    console.clear();
    if (rootXml)
      var AttendPeriod = rootXml.GetAttendancePeriodsResponse.AttendancePeriod;
      xfa.datasets.data.root.nodes.append(AttendPeriod);
      xfa.form.remerge();
      console.println(AttendPeriod.saveXML());
    else if (soapFault)
      console.println("Error = ");
      console.println("Fault code: " + soapFault.code);
      console.println("Fault message: " + soapFault.message);
    console.show();
    Then, I will bind the drop-down list to the XML.
    The above code is working fine, but the only problem is xfa.form.remerge(), which will clear all other fields, I am not sure why ?
    Seems I have to use a loop to bind the list items one by one, right ?!!
    Tarek.

  • When I choose a photo to share on face book a drop down box appears with the message, Face book didn't recognise the information you entered for the account this is my Face book login information I use to access my face book page how can I overcome the b

    when I choose a photo to share on face book a drop down box appears with the message, Face book didn't recognise the information you entered for the account this is my Face book login information I use to access my face book page how can I overcome this.

    Delete abd re-enter your Facebook account information jnder the accounts tab in the iPhoto preferences
    You may also want to take a look at the user tip for Facebook problems
    LN

  • Missing Drop Down Fields

    After saving my form as a PDF, the drop down fields are missing upon opening the form from an email attachment.  The form drop downs continue to be present in Forms Central.

    Hi,
    Which application are you using to view the PDF? Please refer to the following document:
    http://forums.adobe.com/docs/DOC-2653
    Regards,
    Brian

Maybe you are looking for

  • Bc4j.xcfg file issues

    Hello, Maybe this question is solved, but i can't find it. I'm developing a very simple project wich consist in an AppModule that implements a custom method that accesses to a view, gets one field of one row in the view and returns it as string. This

  • Nokia 928. Latest win 8.1 software. Can not get MMS / picture / group messages

    MMS on my Nokia 928 use to work. After an upgrade is doesn't work (? - could be a coincidence it happened after an upgrade?). I get the message "Get media content now."  Tapping on the link doesn't do anything.  Doesn't matter whether I'm using wi-fi

  • How to build outbound ACC_GL_POSTING IDOC

    We have a requirement where we need to build ACC_GL_POSTING IDOC's outbound from SAP. These will be sent to a middleware system where it will be translated and then posted in a separate SAP system using the same IDOC. Is there an easy way to build th

  • Impact of a new record on primary on Materiaslised view on replicate

    Hi, We are just refreshing completely the MV on replicate based on primary table at source It is a large table with 54GB of data to be synched. There are more indexes on replicated (used for reporting) thast the source. Data has completed on MV sync

  • L7590

    I recently purchased a Macbook Pro Maverick (10.9.4).  I also have an HP7590 All-in-One Printer.  I tried inserting the original CD that came with the printer to re-install the "HP Officejet Pro L7500" software  and the "HP Utility" software but got