Interactive pdf form with text fields. Chinese fonts

Hi All
We have designed an interactive pdf with text fields. We need the text fields to be in a Chinese font. I understand that this cant be done in Indesign (change the inputting font to Chinese) I have moved the file over to Acrobat Pro and used the text property to amend the font to Simsun but when we try it out the font is still in English. Any ideas on how to remedy the problem??
Thank you in advance
Paul

Basically, you need to create a pdf form.
Add a text field to your form.
There you can choose which font your want the text to appear in.
The trick is, when you export from InDesign, in the "Advanced Tab" — set "Subset fonts when percentage…" to 0%, so the whole font embeds.'
I believe there's an option in Acrobat to embed the font as well, but I'm not recalling what it it.
But that will ensure the font appears correctly.
d

Similar Messages

  • PDF Form with Text in Particular Font

    I have created a Certificate of Completion in CS4. It is 8.5x11 and, among other things, has a TIFF certificate background and border overlaid with text. My customer wants a PDF in which they can type two pieces of info: the name of the awardee and the date. These go in different places and in different fonts and sizes. How do I create such a PDF so that only this info can be entered, and entered in the correct size, font and area?
    Should I post this in the PDF forums?

    Basically, you need to create a pdf form.
    Add a text field to your form.
    There you can choose which font your want the text to appear in.
    The trick is, when you export from InDesign, in the "Advanced Tab" — set "Subset fonts when percentage…" to 0%, so the whole font embeds.'
    I believe there's an option in Acrobat to embed the font as well, but I'm not recalling what it it.
    But that will ensure the font appears correctly.
    d

  • How to create pdf files with text field data

    how to create pdf files with text field data

    That looks like it should work, but it doesn't.
    I opened the PDF I had created from Word in Acrobat (X Pro). Went to File > Properties. Selected "Change Settings". I then enabled "Restrict editing...", set a password, set "Printing Allowed" to "none", "Changes Allowed" to "none", and ensured that "Enable copying of text..." was disabled.
    I saved the PDF file, closed Acrobat, opened the PDF in Reader, and I was still able to select text and graphical objects.
    I reopened the PDF in Acrobat, and the document summart still shows everything as allowed. When I click on "show details" (from File > Properties) it shows the correct settings.
    Any ideas?

  • Can someone help me in building an interactive PDF form with dynamic bounding box?

    Hi Guys,
    I need to create an interactive PDF form which will contain images, text and fields.
    This is how it would be laid out:
    Header Image at the top.
    Below that a Text Box with a question "Choose the number of licenses" and a drop down option from 1 to 10.
    Depending on what they select, I need the following to be displayed.
    The following should be encapsuled by a bounding box.
    If "1" is selected. "Username: <blank field>    Password: <blank field>
    Then a button which says "Click Here To Login To Your New Account".
    The bounding box should end here.. and I have more text and images below.
    This I could achieve! But now if I select "2" I would need the bounding box to automatically become taller to accommodate two rows with "Username <blank> Password <blank>
    The bounding box needs to expand or contract based on the number selected in the drop down.
    Would love to here your thoughts on this!
    Cheers,
    Rajiv

    If you were to look at the spec for PDF, you'd see that that is probably not possible with a PDF file.
    But, I encourage you to ask this question in the Acrobat PDF Forms forum where the forms experts reside, and perhaps they could suggest an answer. JavaScript can be used, and perhaps that's the answer:
    PDF Forms

  • I have created a .pdf form with text boxes, but the recipients are unable to fill in their answers.

    How can I distribute a form with text boxes so that the recipients are able to type into the boxes?

    This forum is for the Adobe FormsCentral (formscentral.adobe.com) which is a service that allows you to create, collect and analyze data using an online web form. You should ask PDF related form questions in the Acrobat forums: http://forums.adobe.com/community/acrobat/forms
    I'll move your post to that forum so you don't need to retype it. They can help you out...
    Randy

  • Fill in pdf form with text

    recieved a pdf form and need to fill in the lines with text
    using acrobat pro9 mac

    Is it a fill in form (if so, then you should get an i-bar as you move over the fields)? Are you filling it out in Acrobat or the MAC preview? The latter has problems with PDF forms and should not generally be used for this need.
    If there are no form fields (not fillable), then you will either have to add form fields yourself (maybe the MAC version has the recognize fields feature of the PC version -- assuming the form is actually text and not just a picture). The other option is to use the Typewriter tool.

  • Combing PDF forms with identical field names while retaining unique values.

    I have several PDF files of the same form that has been filled out by multiple users. I need to create a combined file of all the responses for reporting purposes. However, the forms (obviously) all have the same field names, and when I combine them the values of the first form autofill the values of the matched fields on the other forms. I need a way to combine the forms while retaining the unique field values. I thought I could write a js to rename the fields, but that isn't possible.
    *EDIT: The fields need to retain editability because some contain long, scrolling text. Flattening or read-only isn't an option, not that either fixes the above problem.
    Suggestions?

    UPDATE:
    I solved this problem, at least for my own needs. Following try67's advice in a related post, I had to delete the existing fields and create new ones with new names. Given my desired outcome, this meant collecting all of the field properties of the fields (with some variation by field type), storing it, erasing the existing fields, and using that stored information to create new, identical fields (again with some variation by field type). Since I didn't want to retain actions or javascript, this was a perfect solution. I also no longer needed the buttons to function (since I wasn't retaining their javascript), so I made them read-only. I'm listing my working code below, in case anyone else could benefit from some or all of it.
    My question to the community is this: Why doesn't Adobe allow for fields to be renamed via javascript? Is it a security issue? My life would have been a lot easier the last few days if I could simply rename existing fields.
    The following script is used in a Combine Files action via the Action Wizard. The PDF optimizer is also used to strip out or flatten additional items.
    //This script is used to rename all the fields in a document while also removing any javascript or actions associated with those fields. Makes buttons read only without renaming.
    //Function to create a random alphanumeric ID.
    function makeid(n) {
        var text = "";
        var possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
        for( var i=1; i <=n; i++ )
            text += possible.charAt(Math.floor(Math.random() * possible.length));
        return text;
    //List variables for collecting arrays of field properties.
    var fieldNum = this.numFields;
    var fieldNameArray = new Array();
    var fieldTypeArray = new Array();
    var pageNumArray = new Array();
    var fieldRectArray = new Array();
    var fieldValueArray = new Array();
    var borderStyleArray = new Array();
    var borderColorArray = new Array();
    var borderThicknessArray = new Array();
    var fillColorArray = new Array();
    var textColorArray = new Array();
    var textFontArray = new Array();
    var textSizeArray = new Array();
    var textAlignmentArray = new Array();
    var textMultilineArray = new Array();
    var checkmarkStyleArray = new Array();
    var radiowidgetNumArray = new Array();
    var radiowidgetRectArray = new Array();
    var radiowidgetPageNumArray = new Array();
    //Get the properties of all the current fields, including widgets.
    for (var i = 0; i < fieldNum; i++) {
        var currentField = this.getNthFieldName(i);
        fieldNameArray[i] = makeid(5);
        fieldTypeArray[i] = this.getField(currentField).type;
        borderStyleArray[i] = this.getField(currentField).borderStyle;
        borderColorArray[i] = this.getField(currentField).strokeColor;
        borderThicknessArray[i] = this.getField(currentField).lineWidth;
        fillColorArray[i] = this.getField(currentField).fillColor;
        textColorArray[i] = this.getField(currentField).textColor;
        textFontArray[i] = this.getField(currentField).textFont;
        textSizeArray[i] = this.getField(currentField).textSize  
        if (this.getField(currentField).type == "text") {
            fieldRectArray[i] = this.getField(currentField).rect;
            pageNumArray[i] = this.getField(currentField).page;
            fieldValueArray[i] = this.getField(currentField).value;
            textAlignmentArray[i] = this.getField(currentField).alignment;
            textMultilineArray[i] = this.getField(currentField).multiline;
        if (this.getField(currentField).type == "checkbox") {
            fieldRectArray[i] = this.getField(currentField).rect;
            pageNumArray[i] = this.getField(currentField).page;
            fieldValueArray[i] = this.getField(currentField).value;
            checkmarkStyleArray[i] = this.getField(currentField).style;
        if (this.getField(currentField).type == "radiobutton") {
            checkmarkStyleArray[i] = this.getField(currentField).style;
            fieldValueArray[i] = this.getField(currentField).value;
            var n = 0;
            while (this.getField(currentField + "." + n) != null) {
                radiowidgetNumArray[n] = this.getField(currentField + "." + n).name;
                n++;
            for (x = 0; x < radiowidgetNumArray.length; x++) {
                radiowidgetRectArray[x] = this.getField(radiowidgetNumArray[x]).rect;
                radiowidgetPageNumArray[x] = this.getField(radiowidgetNumArray[x]).page;
    //Delete all the current fields, except for buttons, which become read-only.
    for (var i = (fieldNum - 1); i > -1; i--) {
        var currentField = this.getNthFieldName(i);
        if (this.getField(currentField).type != "button") {
            this.removeField(currentField);
        } else {
            this.getField(currentField).readonly = true;
    //Using the stored arrays of field properties, generate new, identical fields.
    for (var i = 0; i < fieldNum; i++) {
        if (fieldTypeArray[i] == "text") {
            var newField = this.addField(fieldNameArray[i], fieldTypeArray[i], pageNumArray[i], fieldRectArray[i]);
            newField.value = fieldValueArray[i];
            newField.borderStyle = borderStyleArray[i];
            newField.strokeColor = borderColorArray[i];
            newField.lineWidth = borderThicknessArray[i];
            newField.fillColor = fillColorArray[i];
            newField.textColor = textColorArray[i];
            newField.textFont = textFontArray[i];
            newField.textSize = textSizeArray[i];
            newField.alignment = textAlignmentArray[i];
            newField.multiline = textMultilineArray[i];
            newField.doNotSpellCheck = true;
        if (fieldTypeArray[i] == "checkbox") {
            var newField = this.addField(fieldNameArray[i], fieldTypeArray[i], pageNumArray[i], fieldRectArray[i]); 
            newField.value = fieldValueArray[i];
            newField.borderStyle = borderStyleArray[i];
            newField.strokeColor = borderColorArray[i];
            newField.lineWidth = borderThicknessArray[i];
            newField.fillColor = fillColorArray[i];
            newField.textColor = textColorArray[i];
            newField.textFont = textFontArray[i];
            newField.textSize = textSizeArray[i];
            newField.style = checkmarkStyleArray[i];
            newField.readonly = true;
        if (fieldTypeArray[i] == "radiobutton") {
            for (y = 0; y < radiowidgetNumArray.length; y++) {
                var newField = this.addField(fieldNameArray[i], fieldTypeArray[i], radiowidgetPageNumArray[y], radiowidgetRectArray[y]);
                newField.value = fieldValueArray[i];
                newField.borderStyle = borderStyleArray[i];
                newField.strokeColor = borderColorArray[i];
                newField.lineWidth = borderThicknessArray[i];
                newField.fillColor = fillColorArray[i];
                newField.textColor = textColorArray[i];
                newField.textFont = textFontArray[i];
                newField.textSize = textSizeArray[i];
                newField.style = checkmarkStyleArray[i];
                newField.readonly = true;           
    //End script.

  • How do I create a form with text fields that can continue to multiple pages with out it over lapping

    I have created a form in Livecycle and have made every object a sub field. But I am still having the same probably. The text field only continues on to a second page and overlaps the footer I have created at the bottom of the page. I am new to livecycle and have tried a lot of different things to fix this problem. Help would be greatly appreciated.

    Hi,
    I've found this blog http://blogs.uoregon.edu/developments/2010/12/29/pdf-making-text-fields-grow-to-accommodat e-text/ and this example file : flowableTest.pdf? Is it close to what you search? I cannot go deeper into example now, but will.

  • Generate PDF FORM with editable fields

    Hi,
    my requirement is to create a document wich has a number of fields which users can fill in. By default, these fields need to be filled in with the data from the database, but editable by the user, the rest of the document has to be non-editable. I'm looking to PDF Forms for this, but am open to other suggestions. I can't get the output to show such fields. Is it even possible?
    Spiffo

    HI,
    I have no clear at all how we define a editable field in the template.
    Besides, we need Adobe Writer to see this editable fields from the PDF generated?
    Thanks in advance.
    S.

  • PDF form with body field wrap

    Can we create a form where the body field carries over to a second page if the first page is full?
    gbs

    It's surprisingly difficult to do well. Text fields are not able to do this automatically. You can do some things with JavaScript, but I've not seen a good seamless implementation.
    Dynamic fields created in LiveCycle Designer can be automatically expanding and flow to new pages, but Designer is not available for the Mac.
    George

  • Can I create a PDF form with a field for adding/changing Photos?

    Does anyone have a solution to the following problem?
    I would like to be able to make a PDF form that others in the office can use to fill in a particular inventory and model number.  (Fields, Easy)
    Then have a field where they can replace the PHOTO of the item referred to by the inventory and model number.
    Is this possible using Acrobat professional? Can the document then be saved as, or exported somehow from there?
    I know this is probabably easy to do in Word, but can a photo be changed on a PDF and saved as?
    Thanks for any help or suggestions!
    DaddyOfZed

    It will make it possible for them to select a new photo. Will you ever want to extract the photo from the form to be used elsewhere?
    In order to set this up in Acrobat, you can create a button to display the image, set its layout to something other than "Label only", and add the following JavaScript to the Mouse Up action:
    // Prompt user to select an image
    event.target.buttonImportIcon();
    For the PC users, Acrobat Standard is sufficient for this.

  • Interactive PDF form auto-deleting field entries

    Hello all, so I created (using LiveCycle Designer) an interactive but static three-page form for our providers to complete by computer, then print and return to us by mail/fax. In some spaces, they would type in information and it would immediately delete when they moved to a different space.  They were able to fill out half the form, but the rest would get deleted. Any ideas on why this is happening and what I can do on my end to fix it so this doesn't happen to more people? Any suggestions would be highly appreciated. Thanks!

    Thanks, I'm in the process of getting more info on this, I thank you for your help so far.
    I'll be checking out the LC Designer forum as well.

  • PDF-form looses text style on another computer

    I created a PDF-form with text fields using our corporate font. My colleague has to open it in the Preview and insert text into those fields (she has corporate font installed). But while opening and typing the text, she got my text style lost (corporate font and probably its size). What should I do for she types in my forn and get the same text style as I have? Thank you.
    Arina.

    Do NOT use Apple Preview to open PDF forms. It corrupts them in various ways and is very buggy.
    Stick with Adobe software for best results.

  • End user have ability to change font style in text field of interactive pdf form?

    Does the end user of an interactive pdf form able to change the font style, i.e.: make something bold or underline a word in a text field?
    I am making a form with text fields and the end user would like the ability to make something bold or underline it.. I do not see anywhere in acrobat that allows styles to be changed.
    I have created the form in Indesign > saved it as an interactive pdf and brought it into Acrobat.

    Thank you for the quick response! Do you set this in Indesign before exporting or do you set this in Acrobat? I am in Acrobat 10.1.10 and when I go to properties it doesn't give me  'options' to choose from.

  • Digital Signature Interactive PDF form

    Hi
    I am Trying to make an Interactive PDF form with a functionality to Display and hide Specific Fields Using a Button
    Is It possible to Digitally Sign such a PDF
    If it is
    Will the signature be removed once i Activate the Interactive Functionality from the form of Display\Hide a field  ?

    To further elaborate:
    There is some general Java documentation in the SAP library on digitally signing a document with SSF:-
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/d0201854fb6a4cb9545892b49d4851/content.htm
    Questions though:
    (1) If I sign with the SSF classes will this then prevent the popup "Uncertified document" appearing in ACROBAT reader? The PDFs that the UI interactive form produces are not pure XML streams are they? As far as I can ascertain SSF is not suitable for signing PDFs!
    (2) At which event would one sign the pdfSource context node for an interactive form created in the web dynpro environment? At method WDoInit of the PDF view the pdfSource context node is still null.
    Thanks again,
    Jonathan

Maybe you are looking for

  • I have an old Mac OS X 10.6.8.

    I have an old Mac OS X 10.6.8.  I got an email from my bank saying they no longer supported my browser and I need to update, but I don't know how to do that or what is safe to do without messing up my computer.  Any suggestions would be helpful.  Tha

  • Receicing Point on Inbound Delivery

    Hello Experts ! SAP has config to automatically determine Receiving Point on a Inbound Delivery based on Plant and SLoc. I have two questions: 1. Receiving Point is not a field on PO... and, on the Inbound Delivery it is greyed out. Is there a way to

  • Creating video mpegs for use in a windows based powerpoint presentation

    im putting a few short video clips together for a friend to use as part of a powerpoint presentation for work.. i have tried to send him a quicktime movie before and he hasn't been able to play it back at work so im worried about how to encode these

  • Unable to sign in  - Nextflix Error

    Hello, just got apple TV. Tired to login to nextflix "Unable to sign in" Please relogin to Netflix. If the problem persists please visit the Netflix website (106:200) any suggestions?

  • I know this is sooo basic, but how do I change the owner name?

    Sorry for such a basic question. I just bought this for my daughter and set it up and it has my name at the top toolbar and I want to change it to her name. Thanks.