I have created an editable PDF via Adobe Indesign. When I open the PDF in Adobe Acrobat Pro DC, is there a way to specify a font style? Or is there a way in InDesign to make sure when someone type in that text field it is a certain font?

I need to make sure the text that is entered is a certain font to keep it continuous with the rest of the document. Thank you!

To go into form editing mode, select "Prepare Form" in the right hand pane. You'll then get a toolbar along the top that contains the various form-related tools. The first thing to do is add a temporary button. You'll use this to determine the name of the font for use with the script as well as place the script that will change the font properties of the text fields. So create a button anywhere, double-click it to bring up the field properties dialog, and on the Actions tab add a JavaScript action to the Mouse Up event that is:
// Mouse Up script for temporary button
app.alert(event.target.textFont);
On the Appearance tab, select the font that you want to use for the text fields. Once you've done that, close form editing mode and click the button. It will display a popup that will list the font name. This may be different than the name that appeared in the dropdown on the appearance tab, so write it down. For example, when I chose "Minion Pro" from the dropdown, the popup showed "MinionPro-Regular".
The next step is to replace that Mouse Up script with the following:
// Mouse Up script for temporary button
// Change the font and font size for all text field in this document
for (var i = 0; i < numFields; i++) {
    var f = getField(getNthFieldName(i));
    if (f.type === "text") {
        f.textFont = "MinionPro-Regular";
        f.textSize = 9;
Replace "MinionPro-Regular" with the font name that you wrote down before and set the font size to whatever you want. Use 0 to specify a font size of "Auto".
This script will change the font of all text fields to whatever you specify. When you've confirmed that the text fields are set up as you want, you can go ahead and delete or hide the button. If you think you'll be doing a lot of forms work, you can create custom tools in Acrobat to speed up this process, but this should get you started. InDesign won't let you specify a lot of field properties and actions, so you have to work this way, and using automation scripts is an accessible way to significantly speed up the process and avoid mistakes.

Similar Messages

  • How can I get my instructional text to display when I open the pdf?

    I have some fields which I have set up which have help/instructions for completing the information required.  This is a questionnaire.  When I save it as a pdf, the instsructional text does not display.  I would really appreciate if someone can tell me how to fix this.

    Thanks for taking the time to respond to my query.  The text does not display when I hover my mouse over it.
    cheers    Deborah Frow
          From: Ajlan huda <[email protected]>
    To: Deborah Frow <[email protected]>
    Sent: Monday, 12 January 2015, 5:24
    Subject: Reply marked as helpful on How can I get my instructional text to display when I open the pdf?
    |
    How can I get my instructional text to display when I open the pdf?
    Ajlan huda marked SumitV's reply on How can I get my instructional text to display when I open the pdf? as helpful. View the full replyMarked as helpful:Hi Pacific Immigration, In Adobe Acrobat/ Adobe Reader there is no “?” shown for help, but if you mouse over the field for 1-2 seconds the Help text is shown.
    Following How can I get my instructional text to display when I open the pdf? in these streams: Inbox
    |

  • I just updated Adobe but I continue to get the message that I need to update Adobe in order to open the PDF

    I just updated to the latest version of Adobe but I still unable to open the PDF

    When you open the PDF document in Adobe Reader for iOS, do you see a message like this?
    (Tap/click the image above to enlarge)
    Your PDF document is a special type of form called a "dynamic XFA form".
    Currently, Adobe Reader mobile products (Reader for iOS, Android, Windows Phone) do not support static or dynamic XFA forms created with Adobe LiveCycle Designer.
    The message "Please wait..." is displayed when a dynamic content is not supported by a PDF viewer.
    The following blog post by Jeff Stanier (Adobe LiveCycle Designer Product Manager) explains the reason why XFA forms are not supported on mobile.
    Adobe Reader Mobile and XFA forms from LiveCycle Designer
    You can use the desktop version of Adobe Reader on a Windows or Mac computer to fill out XFA forms.
    Sorry for the inconvenience.

  • I have created an editable form which cannot be saved as a completed copy by adobe reader users.

    I have a created an editable form in indesign and acrobat, however when other users open up the form and fill it in they cannot save the completed copy. It comes up with that the user needs to click done signing, however there is no done signing button in adobe reader.

    Unless they're using Reader XI then you have to first apply a special right in Acrobat that allows them to save the filled-in form in Reader.
    The exact location of this command depends on your version of Acrobat.

  • Cannot open the pdf when using the xml publisher to generate rtf report

    Hello Everyone,
    I followed the below link to generate a pdf using xml publisher in OAF.
    http://apps2fusion.com/at/ps/260-integrating-xml-publisher-and-oa-framework
    When i try to save the pdf and open it, i get the below error:
    Adobe Reader could not open the pdf because it is either not a supported file type or because the file has been damaged(for example, it was sent as an email attachment and wasn't correctly decoded).
    Below is the code in CO.
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am= (OAApplicationModule)pageContext.getApplicationModule(webBean);
    String event = pageContext.getParameter("event");
    if("GenerateReport".equals(event))
    // Get the HttpServletResponse object from the PageContext. The report output is written to HttpServletResponse.
    DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
    try {
    ServletOutputStream os = response.getOutputStream();
    // Set the Output Report File Name and Content Type
    String contentDisposition = "attachment;filename=EmpReport.pdf";
    response.setHeader("Content-Disposition",contentDisposition);
    response.setContentType("application/pdf");
    // Get the Data XML File as the XMLNode
    XMLNode xmlNode = (XMLNode) am.invokeMethod("getEmpDataXML");
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    xmlNode.print(outputStream);
    // System.out.println(outputStream.toString());//Testing the output by printing the contents in the outputstream.
    ByteArrayInputStream inputStream = new ByteArrayInputStream(outputStream.toByteArray());
    ByteArrayOutputStream pdfFile = new ByteArrayOutputStream();
    // System.out.println("language is "+pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage());
    // System.out.println("country is "+pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().geCountry());
    //Generate the PDF Report.
    TemplateHelper.processTemplate(
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getAppsContext(),
    // APP_NAME,
    "PER",
    // TEMPLATE_CODE,
    "Emp_Template",
    // ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage(),
    "English",
    // ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getCountry(),
    "United States",
    inputStream,
    TemplateHelper.OUTPUT_TYPE_PDF,
    null,
    pdfFile);
    // Write the PDF Report to the HttpServletResponse object and flush.
    byte[] b = pdfFile.toByteArray();
    response.setContentLength(b.length);
    os.write(b, 0, b.length);
    os.flush();
    os.close();
    pdfFile.flush();
    pdfFile.close();
    catch(Exception e)
    response.setContentType("application/pdf");
    throw new OAException(e.getMessage(), OAException.ERROR);
    pageContext.setDocumentRendered(false);
    Any suggestions on this would be great!
    Thanks
    Kumar

    Below is the code. Can you change so that that the output can be seen in HTML? I checked the language, country etc and they are fine.
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am= (OAApplicationModule)pageContext.getApplicationModule(webBean);
    String event = pageContext.getParameter("event");
    if("GenerateReport".equals(event))
    // Get the HttpServletResponse object from the PageContext. The report output is written to HttpServletResponse.
    DataObject sessionDictionary = (DataObject)pageContext.getNamedDataObject("_SessionParameters");
    HttpServletResponse response = (HttpServletResponse)sessionDictionary.selectValue(null,"HttpServletResponse");
    try {
    ServletOutputStream os = response.getOutputStream();
    // Set the Output Report File Name and Content Type
    String contentDisposition = "attachment;filename=PrintPage.pdf";
    response.setHeader("Content-Disposition",contentDisposition);
    response.setContentType("application/pdf");
    // Get the Data XML File as the XMLNode
    XMLNode xmlNode = (XMLNode) am.invokeMethod("getEmpDataXML");
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    // xmlNode.print(outputStream);
    // System.out.println(outputStream.toString());//Testing the output by printing the contents in the outputstream.
    ByteArrayInputStream inputStream = new ByteArrayInputStream(outputStream.toByteArray());
    ByteArrayOutputStream pdfFile = new ByteArrayOutputStream();
    // System.out.println("language is "+pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage());
    // System.out.println("country is "+pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().geCountry());
    //Generate the PDF Report.
    TemplateHelper.processTemplate(
    ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getAppsContext(),
    // APP_NAME,
    "PER",
    // TEMPLATE_CODE,
    "Emp_Template",
    // ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getLanguage(),
    "en",
    // ((OADBTransactionImpl)pageContext.getApplicationModule(webBean).getOADBTransaction()).getUserLocale().getCountry(),
    "US",
    inputStream,
    TemplateHelper.OUTPUT_TYPE_PDF,
    null,
    pdfFile);
    // Write the PDF Report to the HttpServletResponse object and flush.
    byte[] b = pdfFile.toByteArray();
    response.setContentLength(b.length);
    os.write(b, 0, b.length);
    os.flush();
    os.close();
    pdfFile.flush();
    pdfFile.close();
    catch(Exception e)
    response.setContentType("text/html");
    throw new OAException(e.getMessage(), OAException.ERROR);
    pageContext.setDocumentRendered(true);
    Thanks

  • HT2486 I am sending an email to a group which I have created in my contacts.  I would like to hide the list of people's emails but cannot see how I can do that.  Can anyone help please?

    I am trying to send an email to a group which I have created in my contacts.  I would like to hide the list of email addresses but cannot see how to do this.  Can anyone help please?

    Thank you for your message.  
    I can see how you do that when using the 'normal' emailing system from my mailing box, but not when working from the contact application (the 'book' on the bottom icon bar with the @ on it)....

  • Adobe Reader could not open a pdf file - either not supported file type or file damaged

    On March 5th, I started getting the Adobe Reader error message "Adobe Reader could not open a pdf file because it is either not supported file type or the file has been damaged.
    I get this when I try to open the pdf file as an attachment in Outlook 2013 from my G-Mail account.  If I save the attachment and then try to open the pdf document, I get the same error4.
    I get this error message with every pdf file that now comes to me in Outlook.
    If I log on to my G-Mail I am able to open the pdf document.  If I also save the attachment to my computer, I do not get the error message when I open the pdf file. This would suggest the file is okay
    This would lead me to believe the problem maybe with Outlook.
    I'm using Adobe Reader XI v11.0.10
    I'm using Windows 8.1
    Is anyone encountering this same issue with outlook?

    I copied it again.  Do you see it?  BTW, how do I set privacy?  (I'm new at this)
    I opened with two different notepads and got different information.here it is from Windows Notepad.  First few lines are:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
    >
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style type="text/css">td img {display: block;}</style>
    </head>
    Here it is from MS Notepad:
    <HTML><HEAD><style>.ending {font-family: Calibri; font-size: 18px;}</style><BODY><TABLE><TR><TD colspan=100%><a href="http://www.trulynolen.com/questionnaire?l=14115468&o=141050070&z=85087-7515"><img src=http://newsletter.tnolen.com/email/service.png border=no></a></TD></TR><TR><TD align=center class="ending">If you would not like to receive email communication from Truly Nolen in the future, please <a href="http://newsletter.tnolen.com/unsubstart.asp?b=14115468&z=85087-7515&e=[email protected]/unsubstart.asp?b=14115468&z=85087-7515&e=[email protected]">click here</a></TD></TR></TABLE></BODY></HTML>

  • Problem while opening the PDF File in Enterprise Protal

    Dear All,
    I have uploaded a PDF Document of around 30 pages in KM and made an iview to view that document but when i click on the iview the document is not opening properly and after sometime the Portal/system is getting hanged.But when i open the pdf document with less number of pages it is working fine.
    I am using EP 7.0  and Adobe Reader 8.1.
    Any help or suggestions will be highly appreciated.
    Regards
    Shareef

    Doesnt seem to appear as a portal issue neither it is a reader issue. Might be some issues with the network which isnt allowing the entire file to get downloaded and hence causing the browser to hang.
    Thanks,
    GLM

  • I have uninstalled and reinstalled the most current edition of Adobe Reader, including the patch. When I open a PDF file, the screen is first grey, then viewable, but the message "Adobe Reader has stopped working" comes up. How do I remedy this?

    I have uninstalled and reinstalled the most current edition of Adobe Reader (11.9), including the patch. When I open a PDF file, the screen is first grey, then viewable, but then the message "Adobe Reader has stopped working" comes up. How do I remedy this?

    RR,
    One thing often tried first is to create a new document and File>Place the corrupted one to see how much may be rescued that way (remember to tick Paste remembers Layers in the Layer palette flyout/dropdown first, and to untick it afterwards).
    Here is a website where you can see whether it can rescue the file, and if it can, you may pay for a subscription to have it done,
    http://www.recoverytoolbox.com/buy_illustrator.html
    and another similar website,
    http://markzware.com/adobe-software/fix-illustrator-file-unknown-error-occurred-pdf2dtp-fi le-recovery/
    As far as I remember, the former is for Win and the latter for Mac.
    Here are a few pages about struggling with it yourself:
    http://daxxter.wordpress.com/2009/04/16/how-to-recover-a-corrupted-illustrator-ai-file/
    http://helpx.adobe.com/illustrator/kb/troubleshoot-damaged-illustrator-files.html
    http://kb2.adobe.com/cps/500/cpsid_50032.html
    http://kb2.adobe.com/cps/500/cpsid_50031.html
    http://helpx.adobe.com/illustrator/kb/enable-content-recovery-mode-illustrator.html
    Failing a full recovery, hopefully you have one or more earlier versions and/or bits of artwork saved before it happened.

  • I have created a form in InDesign, exported to a pdf, created an editable form and saved.  When I open the form and make changes and save, the reopen the changes are there.  If try to email this form as an attachment after editing, the attachment is alway

    I have created a form in InDesign, exported to a pdf, then created an editable form and saved.  When I open the form and make changes and save, then reopen the changes are there.  If try to email this form as an attachment after editing, the attachment is always minus the edits.   ????

    Hi chuck,
    If you ave created the form and then filling it yourself and saving the form, the filled data should be there when you reopen the same form.
    Can you please send the form to me at [email protected]  so that I can have a look.
    Regards,
    Rave

  • When I open a PDF the Computer is acting as if I haven't purchased the Acrobat Adobe XI when in fact I have.

    When I open a PDF the Computer is acting as if I haven't purchased the Acrobat Adobe XI when in fact I have.

    It what way is it acting? For example do you mean that you get messages suggesting you are running a trial? If so you need to license the software. For a subscription, sign in to Acrobat. For a purchased copy, enter the serial number.

  • I have Adobe Reader XI with the package that allows me to send pdfs and convert pdfs to Word. When I open a pdf and try to search the search shows no matches even though the word I am searching for is in the document. Any suggestions how to search?

    I have Adobe Reader XI with the package that allows me to send pdfs and convert pdfs to Word. When I open a pdf and try to search the search shows no matches even though the word I am searching for is in the document. Any suggestions how to search?

    Once again, my thanks for your assistance. If I may impose on your generosity one more time, if I understand you correctly if I create a document on Word or WordPerfect, print it and scan it to create a pdf, the search function will not work. But, if I create the pdf document in Word the search function will work. Unfortunately, I am not sure how I create a pdf document in Word other than by printing it and scanning it. Could you please explain.
    William B. Kohn, Esq.
    General Counsel
    Paul V. Profeta & Associates, Inc.
    769 Northfield Avenue
    Suite 250
    West Orange, New Jersey 07052
    (973) 325 - 1300
    (973) 325 - 0376 (Facsimile)
    [email protected]<mailto:[email protected]>

  • Color issue with pdf from Indesign. I have a special cmyk mix for a bcard in Indesign. When I export the pdf the cmyk mix has changed Just started today 1.13.15 Running Yosemite 10.10.1 Any help on what to look for would be greatly appreciated.

    I have a special cmyk mix for a bcard in Indesign. When I export the pdf the cmyk mix has changed Just started today 1.13.15 Running Yosemite 10.10.1 Any help on what to look for would be greatly appreciated.

    Thank you Peter. Someone else must have been on my computer because I do not change the settings. You pointed me in the right direction.
    Thanks again.
    Patrick

  • I have created a movie of vacation pictures on my windows movie maker (vista op system). When I open the timeline, select audio, and drag a tune from i-tunes, windows movie maker shuts down and no song is transferred. Are these systems incompatible

    I have created a movie of vacation pictures on my windows movie maker. ( Windows vista) When I open the timeline, click on audio, and drag a song from itunes, windows movie maker shuts down, and the song is not transferred. Are these systems incompatible? Can I upload the movie to I tunes somehow and then add the music tracks? Thank you...

    You may need to convert the file to mp3
    iTunes: How to convert a song to a different file format
    http://support.apple.com/kb/HT1550
    Correction, I was able to add m4a files to Windows Live movie maker in windows 7, but not sure about your version
    Message was edited by: polydorus

  • I have an iPad 2, and I am sending PDF file to my iPad, via a Hotmail email. But, the PDF arrives to the iPad in Mail already opended, as a picture on the bottom of the email. Is there a way to prevent it from auto open, so I can open with iBooks instead?

    I have an iPad 2, and I am sending PDF files to my iPad, via a Hotmail account. But, the PDF arrives to the iPad Mail account already opened at the bottom of the email. Is there a way to prevent this auto-opening of the PDF. I've seen screen shots with the box, and PDF listed inside the box, but mine open automatically. I want to get them into iBooks...?

    I am having the same problem and it is even bigger.
    When opening a 1-page PDF in iBooks and sending it via mail it is sent inline as preview, but the recipient cannot open the file anymore. Also on iPad and iPhone there is no "open in" possible.
    Somehow the mail app does destroy the file. What is going wrong?

Maybe you are looking for

  • All sound randomly dissapearing after use of about 2 hours or so

    My sound randomly stops working after a few hours of use. I need help because I tend to be in long-term Skype calls and when I'm editing or watching over a video for business purposes my audio randomly cuts out. I have found a way to fix it and one w

  • Why does my idletime/display so short

    Why is it if my laptop is idle for a short time i have to log back in to windows

  • Financial Reporting Functionality

    Hi guys, I'm hoping some one may be able to help me with (maybe only some) of the following. I'm creating reports with HFR using an Essbase cube. There are some requirements for the reports that I'm finding difficult to satisfy. Can anyone suggest an

  • Create file original and doc in DMS

    Hello External aplication (C#) must access DMS and create one document? Program in C# is OK. But what customizing I must have in DMS to do work? This web service http://abc02/ws123/DocumentDownloadService.asmx must create the file original http://abc

  • Ann: 1-hr webinars (free): Better PDFs / PDF Forms (with FM-Acro TimeSavers/Assts)

    Wednesdays, starting 10am PT: * Better PDFs with FM-to-Acrobat TimeSavers, Nov 28        Description/registration: https://attendee.gotowebinar.com/register/7685348030448593664 * Creating PDF Forms with FM-to-Acrobat TimeSavers + Form Assistant, Dec