Setting font face, size and color of Typewriter text

...when pdf is a single-page, typewriter-enabled form?  I've skimmed though a couple pdf files on Acrobat javascript trying to figure out what events I need to trigger a function and the proper syntax to use, but I'm coming up empty.  I don't know if this is doc level or page level or how to get a function to trigger when the document opens or the typewriter button is clicked.
The problem is that for my Windows computer when I open the document, the default font is Courier 12pt and black.  A co-worker's Mac computer (and Foxit PDF Reader) the default is Helvetica 11pt and blue.  Another co-worker's Mac (with Adobe Reader) defaults to a cursive font, 11pt and blue.  I really need to standardize this and particularly change the color to black.
I am at a complete loss and out of my depth on where to start and how to find the info I need.  Any help would be greatly appreciated.
Thanks.
Dami

George, you have been extremely helpful.  You don't know how much I appreciate your knowledge and patience.
1. Seems like going this option, we would be better served just making a web-based form.  I'll pass that on to the Powers-That-Be.
2. Not to imply these folks are computer-illiterate, but the users completing the forms are plumbers, electricians, locksmiths, carpenters, etc.  In fact, they get a good number of printed, hand-written, snail-mailed forms submitted.   I really don't know the likelihood of getting these users to download and install Reader 11.
Again, thanks so much for your time and expertise.
Dami

Similar Messages

  • How do I add text boxes that people can edit font type, size, and color in Adobe Reader

    How do I add text boxes that people can edit font type, size, and color in Adobe Reader? I am using Acrobat Pro XI.

    It is possible. Add your text fields and in their Properties set them to have Rich Text Contents (under Options). This will allow the users to specify all kinds of formatting settings for those fields (by pressing Ctrl+E and using the Properties bar).

  • How do I change the font size and color in a text box?

    How do I change the font size and color in a text box?

    Really frustrating to find the first time but simple once you figure it out. I think I spent hours trying to find this. Simply right click on a blank spot in the toolbar up top and select Properties Bar. There it is! The available properties will change depending on whether you have the content (text) selected or the box itself.
    I haven't found a way yet to make it show up as a regular part of the toolbar. It floats around and gets in the way so I don't leave it on and then have to open it again when I need it. Again - frustrating; but at least it's there!

  • How do I save a font and it's size and color in a text box as a default

    I am using Adobe Acrobat XI for Mac and can't figure out how to set a default font for text boxes. I don't seem to be able to access the properties to set the default by highlighting a properly formatted text box and pressing ctrl-e. Is there another key combination for Mac? Or another method for setting defaults? I'm finding I have to set the font, size and color every time I open a new Acrobat doc and want to add a text box. Also, the choices are not even saving with the document. The fonts already typed save correctly, but on reopening, I have to reset if I want to add more text.
    Thanks in advance for any help,
    Tom Carlson

    Thanks for the suggestions. I've got a Logitech G700S Mouse with a right click button, so right-clicking isn't an issue. Unfortunately, the I can't seem to find the menu to "Use Current Properties as New Defaults." I may not have described the problem correctly.
    I am adding text to a pre-existing pdf document, not creating a form. I would like to be able to set a default font, size and color for text, so that when I enter text in a text box onto the pdf document, it has those properties. If I select the text box that is properly formatted (not the text, but the box) and right click, the only choices I get are:
    Cut
    Copy
    Delete
    Select All
    Deselect All
    Arrange>
    Edit Using>
    So I gues my question is if one can even format a text box as a default or a "style" or the like. I tried setting a default font, size and color for "comments" also in the Acrobat preferences, but even that didn't seem to stick when I opened a new doc. This all may just be a Mac / Mavericks interaction flaw. Anybody have any other ideas?
    Tom

  • How do I change the font size and color in a text box in Adobe Acrobat 9 Pro (ctrl e does not work)?

    I need to mark up scanned pdf documents with text box comments. I can insert the text box and type text but I cannot change the font or color. When I press Crtl E, no tool bar appears in the menu bar. What does appear in the menu bar is "No current selection". Please advise.

    I am already doing that: creating the text box, typing the text, selecting the text i.e. highlighting the text. This morning, for a scant minute, the properties tool bar appeared and I was able to refine the text in a text box. Then it disappeared never to be activated again this morning.
    I work half of my weekly hours at this client office and I only have this problem on their pc and adobe software (version 9 pro). When I am home, my laptop and the adobe software (version 10 pro) is fine. I can create the text boxes and refine the format at will with no issues. Could it be a software version and/or update issue? Thanks for any assistance.

  • Adding text to indesign pages with specific font ,size,and color using javascript

    Hello,
    Using javascript i am able to add some text to each page of an indesign file.
    myNewText = "SOME TEXT"
    myTextFrame = myPage.textFrames.item(0);
    tempframe = myTextFrame.contents;
    myTextFrame.contents =  myNewText + tempframe ;
    But i want to specify the font used,size and color for that text.
    When i try the code mentioned in indesign javascript scripting guide
    myNewText .appliedFont = app.fonts.item("Times New Roman");
    myNewText .fontStyle = "Bold";
    nothing gets changed and font family already used stays the same.
    How can i do that only for the added text and not for the whole content?I dont want to add the text to a new text frame I want to append it to the existing text frame.
    And is there a way to specify font size too?
    thank you

    There's a mixup going on here. Let's see if we can sort out some of it
    at least.
    If you just want to add new text to an already existing text frame,
    that's easy:
    myTextFrame.contents += "Hello";
    But if you want the new text to have unique formatting, it's a little
    more complicated.
    There are two simple ways to do it, I think:
    1. Create a temporary text frame, as you have done, and add the text,
    and format everything in there. Then move() that formatted text to the
    end of myTextFrame and delete the temporary frame:
    tempFrame = app.activeDocument.textFrames.add();
    tempFrame.contents = "New Text";
    tempFrame.paragraphs[0].appliedFont = app.fonts.itemByName("Times New
    Roman"); // etc...
    tempFrame.paragraphs[0].move(myTextFrame.insertionPoints[-1],
    LocationOptions.AFTER);
    tempFrame.remove();
    2. The other option, is to add the text directly to your textFrame. But
    if you want to format only that text, you have to store where the text
    started:
    myTextFrame = app.selection[0];
    firstInsertionPoint = myTextFrame.insertionPoints[-1].index;
    myTextFrame.contents += "New Text";
    myAddedText =
    myTextFrame.characters.itemByRange(myTextFrame.insertionPoints[firstInsertionPoint],
    myTextFrame.insertionPoints[-1]);
    myAddedText.appliedFont = app.fonts.itemByName("Trajan Pro"); // etc.
    What you've done in your sample script, however, is to try to apply a
    font to a simple JavaScript string. It won't work, but the way you did
    it, it won't throw an error either, because in fact you've created a new
    property of your string. (myString = "Hello"; myString.appliedFont =
    "Times"; // myString now has a Javascript property called appliedFont --
    but that's nothing to do with InDesign!)
    HTH,
    Ariel

  • Set-up custom font, font size, and color for writing new and reply e-mails in Thunderbird

    I know that I can select the font, size, and color for writing each new and reply e-mails in Thunderbird, but I don't want to have to do this each time. I want to set-up the default font, size, and color for all new and reply e-mails. It already comes up with a default one, but I want to change it, but can't figure out how to do this. I'm sure it is quite simple, but I don't know how to do this. Thank you in advance for help.

    Tools > Options > Display > Formatting tab
    Default font: select font
    Select size : eg; 14
    Click on 'Advanced' button and set all the sizes to 14
    Select : 'allow messages to use other fonts'
    click on OK
    Click on 'Composition'
    Under the 'General' tab
    Suggest you set HTML font to 'Variable width' and Size : 'Medium'
    Select the 'Text colour' you would like to compose email using
    Select the 'Background colour' you would like to use when composing emails.
    click on OK to save all changes.
    This will set the display email list to the selected font.
    It will allow received emails to use the font the sender used.
    When you compose an email it will also use the same font settings.
    The message 'Display' settings in the above section also apply to messages that you compose. The settings are not sent, so they do not affect how your messages appear to recipients.
    The settings in the ''Composition' section can affect how messages are sent. If you make unusual choices, then people who receive messages from you might find them difficult or impossible to read. Hence, why I suggest you leave it as 'Variable width' and allow the 'Display' settings to set the default used for composing emails.
    More info:
    * http://kb.mozillazine.org/Font_settings_in_Thunderbird

  • Is there a way to change the font size and color of text in the calendar app?

    Does anyone know a way of changing the font size and color of text in the calendar app that comes with the iPad 2?  It is very hard to see the small gray numbers on the calendar.  Thanks

    Looks like you didn't get a reply on your post, but it is still a problem.  Font size is supposedly changeable via "Accessibility" in Settings, but it doesn't work.  You can turn on "Zoom".

  • Font size and color

    can I change the font size and color of the items in a list?Font size can be changed and it is working in emulator but not in phones.I am using Nokia 6630 for testing purpose. I can't find any options to change color.

    graphics can change color ( in later versions off wtk)

  • How do I change the font size and color in my e-mail?

    I'm using the regular MAIL application on my Macbook (OSX 10.5.5) and I'm wondering how to change the font size and color of my incoming and outgoing mail.
    Any suggestions?
    thanks!

    I'm using the regular MAIL application on my Macbook (OSX 10.5.5) and I'm wondering how to change the font size and color of my incoming and outgoing mail.
    For outgoing email you the Fonts and Colors buttons found in the New Message pane (note that settings you make in Mail > Preferences do not affect outgoing messages).

  • How do i change font sizes and colors in ical in OS Lion.  Everything is greyed and too small.   And how do I changed the color of the scroll bars, which are now invisible?

    how do i change font sizes and colors in ical in OS Lion. Since upgrading,  all fonts are grey, instead of black,  and too small.   And how do I changed the color of the scroll bars, which also are grey and almost invisible?  And if you can asnwer this, can you tell me how to get back the email format I had before the upgrade?  I no longer have column headings and I'd like them.  Thank you. 

    Do you know about changing the font colors for ical, and the color of the scroll bars?
    No, I don't. I don't use that program; I fiddled with it just now, and could not find a way to do that.
    Perhaps someone else will have an idea.

  • The tool bar is missing for font,size and color for lettering in elements 9

    Iam missing tool bar for font, style and size and color. where is it?

    Are you sure you have the regular horizontal or vertical type tool and not one of the type masks selected? If you choose the type mask tools you see a dotted outline around the T icon instead of a solid T.

  • Access image size and color profile

    Hi all,
    Is it possible to access image size and color profile ? If not, will it be possible in CS6 ?
    Thanks.

    Load the external XMP library and get it from that?

  • Error in Portal Navigation - Font Type, Size and formatting.

    We carry through all the tips postadas in the SDN to solve this problem, however we the same have some different stations with problem.
    We are using the Bi 7,0 Portal, and we are with problems in the layout: <b>Font Type, Size and formatting</b>, and WEB.
    Somebody has some specific tip for this problem?
    Regards,
    Sbrissa.

    Hi Biroj, thanks, I´m check the error continues...
    Thanks,
    Sbrissa.

  • I want to change the size and color of text in call out boxes and text boxes. How can I do this? Jack

    I want to change the size and color of text in call out boxes and text boxes. How can I do this? Jack

    Highlite the text inside the text box and then press Ctrl+E.

Maybe you are looking for

  • Oracle 8 installation in Windows 2000 Server

    I can't install oracle Enterprise Manager (Oracle 8 product) in a Windows 2000 Server system. The installation program show me this error message: "Unable to delete the NT Service for the SQL * NT V2 listener" Can any body have the solution?

  • After i reading bytes ,how do i get the image to display?

    After i reading bytes ,how do i get the image to display? i m lost after tis step: Image img=Toolkit.getDefaultToolkit().createImage(data1);

  • Time Machine and WD MyBook World Edition (white light)

    Dear All I have just given up on time machine set up after spending approx 8 hours and getting nowhere. I recently purchased a WD Mybook World Edition which states it is compatible for use with time machine. I have uploaded all the required updates a

  • Solution is not reflecting from SMSY to SMD

    Hello Experts, I have finished configuring SMD and now I am adding SMD agents in remote systems so that they can be seen in my SMD. The problem which I am facing is that when I create a solution in Solution manager I cannot see that solution in my SM

  • Unable to sync Lifedrive to Windows/Outlook

    I've tried syncing a Lifedrive to Outlook 2007 from several different machines and I am not having any luck. I'm running the latest version of Palm software and am trying to sync with the USB cable. Here is what my log file says: HotSync operation st