PDF form field rectangle out of page coordinates

Hi,
recently i came across a PDF file which had a (text) form field with the following rectangle coordinates:
LowerLeft:  170;850
UpperRight: 475;862
The page itself had: 595;841 whereas MediaBox=CropBox=BleedBox=TrimBox.
Thus the y coordinate is out of the page so to speak.
The adobe reader displays the field at the upper top of the page but within the boundaries of the page.
Maybe it does correct/fix it?
My question is:
1.) Is that pdf spec compliant? (I did a quick search however couldn't find anything about it)
2.) Is that PDF/A-1 compliant (if that makes a difference)?
Thanks,
ToM

No, I think this is incorrect - all page coordinates are relative to the coordinate system:
From ISO 32000-1, Table 164:
Rect
rectangle
(Required) The annotation rectangle, defining the location of the annotation on the page in default user space units.
Default user space is not relative to MediaBox or any other box.
From ISO 32000-1, Table 30:
MediaBox
rectangle
(Required; inheritable) A rectangle (see 7.9.5, "Rectangles"), expressed in default user space units, that shall define the boundaries of the physical medium on which the page shall be displayed or printed (see 14.11.2, "Page Boundaries").
From ISO 32000-1, 8.3.2.3, User Space:
The CropBox entry in the page dictionary shall specify the rectangle of user space corresponding to the visible area of the intended output medium (display window or printed page).
Otherwise annotations and form fields would move just because someone is changing the MediaBox or CropBox values...
Olaf

Similar Messages

  • How do I lock a PDF form field after it has been completed by a user?

    We have a problem with privacy on our downloadable Pdf Forms for customers, they are required to complete personal details within the Pdf Form Fields and then must be processed by our account team.
    But we would require customer completed forms to be disabled from any third party or employee tampering with the entered details.
    Once the data has been input into the form provided online and saved and sent-on it needs to be read ONLY from then on!
    Help please, Chris.

    It depends how secure they need to be. You could include a script in the form which sets the fields to be read-only when the form is submitted, but that can easily be bypassed (and may not be respected by third party PDF applications). Search this forum topic for examples, it's been asked many times before.
    If you have Acrobat you can flatten a form, turning the fields into regular page content, but that's not possible in Adobe Reader X. While the flattened page can no longer be edited in Reader, it can still be edited in Acrobat via the touchup tools, so for complete security you would need to apply encryption to the flattened PDF (via a certifying signature or DRM).

  • Exporting one specific pdf form field data to a specific webpage field

    Hello there.
    I am currently creating a form in which I need to export one specific pdf form field data to a specific webpage field to avoid typing it again or hitting ctrl+c and then ctrl+v to the webpage, as there are several records that need to be copied and pasted.
    I read that there is no access to the clipboard within pdf therefore, would like to know if there is any way to do that without accessing the clipboard.
    I am a newbie and have been learning by searching the forums and Google, therefore, would appreciate any insight on whether or not this is possible using javascript or the "submit form" funcion.
    Any help is greatly appreciated!

    Hi George, thanks for your response!
    The main issue I have is that this web page is in fact a government page in which I have to manually copy and paste information.
    I have no idea how to automate this process - I have access to the scripts on the page to see what I am able to do, but since I do not have much experience (only very basic javascripting), any other insight would be great!

  • Is there a way to submit a pdf form without redirecting my web page?

    I have a fillable pdf form inside of a web page.  When a user clicks on a submit button I have the pdf calling the submitform method.  This redirects the web page to the url I specified inside of my pdf document.  I don't want the web page to be redirected.  I would like to have the pdf submitted to the server and know when I have handled the submission.  Is there a way to do this? 

    Normally you'd return an (X)FDF in this situation. It can contain content that causes an informative popup dialog to be displayed to the user, fill in form fields, and some other things. Are you able to reprogram the server to return an FDF instead of HTML?

  • PDF Form Field calculates AVERAGE incorrectly

    I have a PDF Form field that is set to calculate the AVERAGE of 4 other fields. Each of those other fields has its validation set to allow only the values 1 through 3.
    The Average field is dividing the total by 4 even if a person only fills out 2 of the fields. I thought AVERAGE would only count the fields that have a value in them. But it's seeing the ones that are blank as containing a 0, even though that is an invalid value for that field.
    How can I fix this? The customer really wants the option of having up to 4 fields and wants an average of just the ones that are filled in. I thought that was what Average was supposed to do.
    Is there a way to tell Acrobat to ignore the fields if their value is less than 1?

    I responded to this question here: http://answers.acrobatusers.com/PDF-Form-Field-calculates-AVERAGE-incorrectly-q13211.aspx

  • Word form  to pdf form fields conversion

    Does anyone have any expereince with converting form Word
    form with active
    x controls to pdf form fields - any help would be appreciated
    Ann Steer

    No. What you can do, though, is after you edit your file create a new static PDF from it, open your old PDF and then use the Replace Pages command, selecting the new PDF file as the one to insert. This will replace the underlying PDF content while keeping all the form fields in tact. You then might need to adjust them a bit, but it's much less work then re-doing the entire form.

  • Is it possible to have a PDF form flow to a second page IF the user needs to type in a lot of information? ( Like a Word Doc would)

    Is it possible to have a PDF form flow to a second page IF the user needs to type in a lot of information? ( Like a Word Doc would)
    An automated second page.

    There are two approaches.
    If you wish to use AcroForm technology, then you would need to write a bunch of JavaScript to enable this.  It has been done, but it’s not trivial.
    If you wish to use XFA technology, then it can be setup to happen automatically.
    Be aware that in both cases, even though both technologies are part of the PDF standard, that the forms will only be usable in this manner in Adobe’s viewers as many others don’t support JavaScript or XFA.

  • PDF form field validation - 2 criterias?

    Does anyone know how can I get a numerical pdf form field to validate within a range as well as validate that the value is equal to or less than the value of another numerical field?
    Thanks!

    I think the following custom Validate script will do what you want:
    function range_validate1() {
        // Do nothing if field is blank
        if (!event.value) {
            return;
        // Initialize some variables
        var sError = "";
        var nMin = 0;
        var nMax2 = 2e6;
        var nVal = +event.value;  // Value user entered, converted to a number
        // Get the other field value, converted to a number
        var nMax1 = +getField("Text1").value;
        // If the value is less than the minimum
        if (nVal < nMin) {
            sError = "Please enter a value greater than or equal to: " + nMin;
        // If value exceeds the other field value...
        if (nVal > nMax1) {
            sError = "Please enter a value less than or equal to: " + nMax1;
        // If value exceeds the max. possible value   
        if (nVal > nMax2) {
            sError = "Please enter a value less than or equal to: " + nMax2;
        // Alert the user and reject the value
        if (sError) {
            app.alert(sError, 0);
            event.rc = false;
    // Call the function
    range_validate1();
    The function can be placed in a document-level JavaScript, but the last line should be the custom Validate script for the field. Replace "Text1" in the line containing the getField statement to the actual name of the other field.

  • CF8 and PDF Form field Info

    Do you know of any way to get the type of field in a PDF form
    as opposed to just its value? What about getting the options from a
    drop down menu in select? Are these things possible with
    CF8?

    I responded to this question here: http://answers.acrobatusers.com/PDF-Form-Field-calculates-AVERAGE-incorrectly-q13211.aspx

  • Submit pdf form fields data as customized template

    Hi
    Is it possible to submit pdf form fields as a customized template?
    when the form is submited, I want it to be emailed to me as text form and the form field data would be autopopulated into the text template.
    Im not sure but is this how fdf works?
    if so, how do i get my form to be submitted as fdf?
    please help.
    thanks.

    Here you go .....the 3 fields at the top are where you enter data. The allfields field is the field that creates your special format and teh submitted data field is what you woudl recieve in the email. Note that i changed th ebinding for the first three fields so that they are not included as separate items in the data file. This shoudl simplify what you recieve. I cam change the format of what is written to the allfields if you need a different distinction. In this example I hardcoded everything ....depending how many fields there are on yours i woudl use a different approach (using some complicated code) but the concept woudl be the same. I woudl find all of the fields on your form and loop through all of these objects in a for loop construct this will reduce th eamount of code dramatically and also allow you to modify the form to add or remove fields as you see fit without having to change the code.
    Make sense?
    Paul

  • Merge pdf form data to an ASP page via HTTP

    I am using Adobe LiveCycle.
    Using LiveCycle has anyone been able to collect data from a PDF form posted on their web page, submit via submit button, that data to an ASP page and use the ASP page to do record manipulation.
    I have successfully created a PDF page and collected the data with JavaScript and updated the database. I'm looking for an alternative solution.

    Hi Robert,
    I am trying to design form to interact with an ODBC.
    Do you have any working example that uses following methods?
    xfa.sourceSet.DataConnection1.addNew();
    xfa.sourceSet.DataConnection1.update();
    xfa.sourceSet.DataConnection1.delete();

  • PDF- paex page data to pdf form fields

    Just want to find out if anybody can help me out with this -- without using BI Publisher:
    I have several pdf letters that are pdf fillable. What needs to be done is from an APEX page:
    1. user search for client id
    2. find and selects the client id. Hidden fields for this would be the client's fullname, address, citystatezip, workername, workerphone, workerlocation, workersupervisor, workersupervisorphone, clientid.
    3. select the letter category: CAT1, CAT2, CAT3, CAT4 . I have a letters_table in oracle and have a category field in there. Will create an LOV for this category as a radiobutton. User will select the letter category.
    4. Based on the letter category selected, a list of letters will appear or posted in the page.
    5. User will then select the letter or (letters) by checkbox from the report listing of letters.
    6. Letters in PDF template format will print with the hidden fields printed on them.
    Any idea how to do this? Already created a page for the user to search the client id. So steps 1 and 2 is done.
    Need ideas and help with the rest....
    Can you link the fields in a page into a PDF fillable form? The PDF forms reside in our intranet server.
    I do not have BI Publisher and the deadline for me for this project is Friday April 24.... so appreciate ideas!
    Thanks! ?:|

    There was/is a sample application for html-db 1.5/6 that was called mailmerge.. It allowed you to do a mailmerge document in WOrdpad with Oracle data.. The rtf file would be stored in a table in your schema and you would run code against it to look for filler characters that would be replaced with your data..
    It has limitations, you might want to go and download it and see what you think..
    http://htmldb.oracle.com/pls/otn/f?p=18326:44:338076716200094::::P44_ID:1682
    Thank you,
    Tony Miller
    Webster, TX

  • Why don't my pdf forms import into Word or Pages properly?

    Why is it that when I create a form in Acrobat Pro, fill it out and save it as a pdf file, and then import or place the saved file in either a Word or Pages document that ONLY the form fields are visible and not the filled in data?  I've tried everything I know and it happens each time.  Thanks.

    Have you actually tried to do it in a PC Version.  Usually it’s the other way round. Usually something can be done with little effort in PC Version, and not in Mac version. Or is PIA to do in the Mac version. Adobe takes as little effort as possibly with the Mac version of any of their products. They and many companies still have  the notion for anyone that wants to do serious work, you use a PC. Mac's are considered play toys.
    If given the proper software with equal features a Mac is more than capable of handling any job a PC can.

  • PDF forms "print" as totally blank pages

    I am using a Mac running Mavericks. I have created a layout in InDesign, exported a PDF, then made form fields using Acrobat Pro XI. I then save the form using the "Enable More Tools" option so that people using Reader can save and print. The problem is that when people open, fill out and save the form using Acrobat Standard X, they cannot print the file. Pages do come out of the printer, but they are totally blank. No field data, no background form layout. Nothing. Right now, we are working around it by using the advanced > print as image setting out of Acrobat X, or by installing Reader XI. While these solutions work for our internal people, these files need to be sent outside of our company where we don't know what software will be used to fill them out.  As a side note, forms originally created in Acrobat Pro X print fine. This problem has appeared after I updated to Pro XI and other users ar still on Standard X.
    Has anyone else experienced this issue? Are there any solutions that can be applied to the form PDF file itself, so we don't have to deal with software compatibility issues for outside users?
    Thanks to anyone who may be able to provide insight on this issue.

    I am having this same issue. I used photoshop to create my form layout, exported as pdf and imported into acrobat. I have tried a variety of different things (color modes, optimizing the pdf, different save modes, etc), none of them have worked. The only way to get the form to not print blank pages is setting to print in grayscale or print as image. You can't simply download the form, fill it out and press print. This solution is not viable for external people who use these forms.
    I should note I have adobe acrobat 10 and the issue of printing blank pages only occurs in adobe reader 11. All other PDF reading programs (reader 10 and below and acrobat) work fine. I never had this issue before, only recently but my process for building forms hasn't changed.

  • My submit button on my PDF form is greyed out (will not work) after posting link to PDF on my WordPress website. It works in Acrobat Reader just fine.

    This is where you can see the form as clicked through to from the WordPress website page:
    http://pinetreeplayers.com/ptp_new/wp-content/uploads/2014/12/submit-a-play.pdf
    The PDF file was created in Acrobat 11, with a submit button. The submit button is actioned to send the form via email. It works perfectly by itself if the form is opened in Acrobat Reader, but once I upload the PDF to my WordPress site the submit button is greyed out, and will not complete the action to send on-click.
    How can I fix this please - can anyone offer advice?

    Yes. They need to download Reader and then disable Google Chrome's internal PDF viewer and enable Adobe Reader.
    FireFox should also be configured to use Adobe Reader and not the internal PDF viewer.
    The internal viewers are created to process PDF documents by not including the features and code to process PDF forms.

Maybe you are looking for

  • Does Robohelp HTML V 7.02.001 support Arabic language to generate context sensitive help

    Kindly let us know URGENTLY if RoboHelp 7.02.001 supports Arabic language to generate context sensitive help in Arabic. If RoboHelp does not support, let us know if there is any other workaround solution or third party integration tool that may help

  • Dynamic Object Selection

    Lets say I have buttons named btn1...btn50. Without requiring 50 if statements, how would you go about retrieving (for example) button 33 given some input of 33. I have done this in (very ugly) javascript code using the eval method, but I'm wondering

  • ITunes closed and I lost my video download!

    Hi everyone! I am new to using iTunes and I just bought the new scrubs episode. So iTunes was about half way done downloading when the program closed for no reason. When I opened iTunes again, my download vanished and I have no record that I purchase

  • Live type render movie issue

    This goes out to you Live type gurus.  I have a 6 second animation with video.  It renders in the timeline fine but when I "render movie" the finished product only shows about half of the total project. eg it stops half way through the entire clip. 

  • Table field validation in table maintenance

    Hi all, I have the following requirement. I created a Z table with 3 fields Zfield1, Zfield2, Zfield3 and key as Zfield1 and Zfield3. If Zfield1 is filled, then I need to make the rest of the fields as mandatory. How to do this?  Can we use the table