How do I create a text field that can be manipulated by the user?

I have created a form that will be changed by the user from month to month. In this form they may have the need to make some of the font bold.
The text fields that will end up being bold will not be the same every time so I can't format the field to be bold.
Is there any way to allow the user to be able to choose whether a text field is bold or not?
Thanks,
T_Sands

Thanks GKaiseril. When I do that and go to preview the form I see where the properties are listed as an option, but they are in light gray so I can't select them. Any idea why this is happening?

Similar Messages

  • How do I create a text field that automatically enters the same info on proceeding pages

    I know this is a basic question for Acrobat Pro, but I'm a newbie at it.  Basically, I work with pdf forms in education and I would like to figure out a way where if I enter for example someone's birthdate in page 1, and it automatically enters it in pages 2, 3, 4 and so on of the same document.
    Also, along the same lines, is there an easy way to be able to edit multiple pages of a document at once. Example: A lot of the people at my office that use the copy and paste feature in the pdf documents, and often overlook changing the "he" to a "she" and "his" to a "her" and as a result we end up with filled forms that use the incorrect sex.
    I apologize in advance if I'm not being very clear, but is the best way I can describe my problem.
    Thanks

    1. You can duplicate the field. Right-click it using the Select Object Tool and select Duplicate. You can then select the page range.
    Otherwise, you can copy&paste it, or create a new field and give it the same name as the original.
    2. No.

  • How do I create a text field the scrolls mutliple pages in Adobe Pro XI

    How do I create a text field that when filled in the alloted space on one page it opens a second page?

    Search the forum for "auto tab"...

  • How do i create an itunes account that can only download free apps

    how do i create an itunes account that can only download free apps

    Follow the instructions here > Create an iTunes App Store account without a credit card

  • Is there a way to create standard text messages that can be reused easily

    is there a way to create standard text messages that can be reused easily

    if you meant phrases, then Yes
    Setteings> general>keyboard> add new shortcut

  • Is there a way to create a text field that shows on all slides?

    I'm trying to create a "Revised On" date field that can be shown on every slide. Or, do I just have to copy and paste on all slides?
    Thanks in advance.
    - Michael

    use the master slides
    view > show master slides
    click on the master slide that has a tick mark
    add a text box to master slide and any other objects that you want on every slide; enter text, then position, size and set colour
    click on the normal slide and add other content that is to be seen on that slide only
    adding new slides will use the background design

  • How do I create a new Style that can be applied to an object?

    Under the Assets menu there is a tab called “Styles”.  My question is how do I create a new Style that I can apply to an object???  A link to a tutorial or something like that would be useful because I can’t find anything!!!    Thanks in advance for helping me eliminate this frustration!!! 

    KomputerMan.com wrote:
    What I want to do is create a library of styles that are basically pictures of various wood types.
    There are a couple of approaches you could try.
    Clipping paths
    1. Draw the part shape as a closed path.
    2. Position the image of woodgrain above or below the shape where you want it positioned.
    3. Cut
    4. Select the closed path.
    5. Paste Inside.
    See: Using FreeHand MX > Contents > Working with Objects > Working with clipping paths
    Tiled fills
    1. Use autotrace to trace the image of the woodgrain, using plenty of colors.
    Using FreeHand MX > Contents > Using Imported Artwork > Tracing bitmaps > Tracing an image
    2. Group the traced paths (but not the image) and create a tiled fill,
    Using FreeHand MX > Contents > Using Strokes and Fills > Applying attributes to fills > Using tiled fill attributes
    3. Make a style from a tile-filled object
    4. Apply the style to other objects.
    Judy Arndt

  • 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.

  • How to make a text field required at run time when the user clicks the checkbox ?

    I got a form where , there are several checkboxes and text fields associated with that checkboxes.If the use clicks on the check box then the associated
    text fields should become required.I have tried the change event and the click event for the checkboxes.It gives error in the onChnage event and I got some weird results in the on click event .Sometimes if the user click the check box , then for the 1st time the field doesnt become required , then the user onclicks the check box and when the user clicks the checkbox for the second time the field becomes required,but if i deselects the highlighted field option and selects it again the field becomes required even if the user onchecks it I am totally confused !!! Adding to it i have also written the wrong code still i achieved the desired result ?? How it can be possible . I am writing the codes below , please help me as i am working under a deadline from the client.
    onChange event :
    var newVal = this.boundItem(xfa.event.newText);
    if(newVal == 0)
        xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row4.Purchasecost3_1" ).validate.nullTest = "disabled";
      else
         xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row4.Purchasecost3_1" ).validate.nullTest = "error";
    For the onClick event :
    var a = xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row2.CostItemRecovere d_OnlyEnergyCharges").rawValue;
    //app.alert(a);
    if(a == 0)
        xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row4.ComplianceCheck_ L1_1").validate.nullTest = "error";
      if(a == 1)
          xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row4.ComplianceCheck_ L1_1").validate.nullTest = "disabled";
       Please help someone !!!

    I used the onchange event and wrote the code for it. I got the result . But there is a problem.All these fields are in a table and it's a dynamic table where you can add rows dynamically at the run time .I have other change event for some fields in this table .All are working fine when i add the row.But for this check box the required fields are not validated as required at the run time . I am here giving the code , Please help me .
    form1.Subform0.Subform1.Subform9.Subform10.Table48.Row2.CostItemRecovered_OnlyEnergyCharge s::change - (JavaScript, client)
    if(this.rawValue == "1")
      xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row4.ComplianceCheck_ L1_1").mandatory= "error";
      xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row4.ComplianceCheck_ L2_1").mandatory= "error";
      xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row5.ComplianceCheck_ L1_2").mandatory= "error";
      xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row5.ComplianceCheck_ L2_2").mandatory= "error";
      xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row6.ComplianceCheck_ L1_3").mandatory= "error";
      xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row6.ComplianceCheck_ L2_3").mandatory= "error";
      xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row7.ComplianceCheck_ L1_4").mandatory= "error";
      xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row7.ComplianceCheck_ L2_4").mandatory= "error";
      xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row8.ComplianceCheck_ L1_5").mandatory= "error";
      xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row8.ComplianceCheck_ L2_5").mandatory= "error";
    else
    xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row4.ComplianceCheck_ L1_1").mandator = "disabled";
    xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row4.ComplianceCheck_ L2_1").mandatory = "disabled";
    xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row5.ComplianceCheck_ L1_2").mandatory = "disabled";
    xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row5.ComplianceCheck_ L2_2").mandatory = "disabled";
    xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row6.ComplianceCheck_ L1_3").mandatory = "disabled";
    xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row6.ComplianceCheck_ L2_3").mandatory = "disabled";
    xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row7.ComplianceCheck_ L1_4").mandatory = "disabled";
    xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row7.ComplianceCheck_ L2_4").mandatory = "disabled";
    xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row8.ComplianceCheck_ L1_5").mandatory = "disabled";
    xfa.resolveNode("form1.Subform0.Subform1.Subform9.Subform10.Table48.Row8.ComplianceCheck_ L2_5").mandatory = "disabled";

  • How to create an OS command that can be used in the process chains

    I need to create a command that can copy files from one location to another for a unix machine.
    I have the commands for the unix machine, but need to create a Z customer command so it can be executed in a process chain in SAP

    Hi Again,
    You can use ABAP program in the process chain.
    I guess there are some OS level commands in ABAP which will allow you to open, close, read , write and move files.
    Serach in ABAP help or on net.
    Bes regards,
    Sunmit.

  • How should I create a swing UI that can be consumed by a variety of apps?

    Hi,
    I have written a few different swing based java applications that could use a similar user interface class. I would like to create user interface that opens in a popup window, allows the user to do some work, and then returns a resulting object to the parent UI. My needs are too cusomtized to use a standard dialog object.
    So, what is the proper way to build a UI class that can be consumed by other applications? I don't know if I build such a thing in a JFrame, JPanel, etc. Pointers to a specific tutorial would be very helpful. I just want to make sure I can build this as a stand alone project that I can consume by other projects.
    Thanks very much,
    Alan

    For a Swing GUI object which can be shared among several applications, I would use a JPanel. If you want something which pops up and returns an object based on user input, I would use one of the standard JDialog static methods, passing it an instance of this JPanel.

  • Can you create an item validation that's an "Alert" to the user?

    I have a report of Personal Facts that includes a birth date and anniversary date. These dates display on the report as DD-MON-YYYY. I would like to 'alert' the user with a message (e.g. Today is this Customer's birthday) when today's date equals the birth date (montha and day or anniversary date. Is the only way to create this 'alert' to create a Page Validation for the column (item) BIRTH_DATE like this:
    to_char(trunc(P4_BIRTH_DATE),'MMDD') = to_char(trunc(sysdate),'MMDD')
    I've tried this but it doesn't work.

    Doing it this way, how about creating a HTML region to hold your Alert message?
    The html region is based on a condition that: to_char(trunc( :P4_BIRTH_DATE),'MMDD') = to_char(trunc(sysdate),'MMDD').
    Probably the reason you are not seeing the value in debug is because you are using a report region. You cannot see the values of indivdual rows/columns for report regions in the debug.
    Actually, having said that, that is were your problem is at. For a report, your item is not :P4_BIRTH_DATE, but instead something like f05 (the number changes depending on where it's at, column-wise).
    The only way to reference it is with htmldb_application.g_f05 (or whatever the number is). But, with this referencing, your best bet would probably be to manually create your report with the htmldb_item syntax. And, if your going to that level of effort, you maight as well attach a javascript call to the BIRTH_DATE field that displays an alert box, though if you are unfamilar with javascript, the conditional HTML region approach should almost work as well, though I'd add another field for the person's identifier (name?), so when it appeared, you would know which user had a birthday, since report regions are usually used to retreive multiple records.
    Or, another approach would be to create a psudo-column through a view that populates the alert field if the condition matches, otherwise it contains a null, then base your report on the view.
    Hope this helps some.
    Bill Ferguson

  • Can you create a fillable form that can be saved by the client?

    I created a very lengthy business planing guide in this program and sent it out for testing - only to find out that if the user only has basic adobe (not any pro programs) they can't save the document - they have to complete it and print it or else loose all their work. Is there a setting somewhere that I missed that will allow the document to be saved? Any guidance on this would be greatly appreciated.
    Thanks!

    If using Acrobat, it depends on which version you're using:
    Acrobat 9: Advanced > Extend Features in Adobe Reader
    Acrobat 10: File > Save As > Reader Extended PDF > Enable Additional Features

  • How do I create a time field that's export value is 3 hours ahead of the current time?

    I need to create a field on one of our forms that takes the current time from another field and adds 3 hours to it. The JavaScript to pull the current time is:
    var tm = this.getField("Time");
    if(tm.value == '' || tm == ' ') tm.value =
    util.printd("HH:MM tt",new Date());

    Does your posted script work as expected?
    It does not fill-in the field for me.
    Is that code to get the time from a field or set the time for a field?
    Is the field you are trying to update?
    A time string for a computation is very limited or error prone unless it includes the date. There are many locations in the world that still observe Day Light Savings Time or Summer/Winter time and the time either moves forward one hour or falls back one hour at a certain date and time as prescribed by national or local law. So if one want to add 3 hours 1 hour before the time sift for the spring that would be 11:00pm adding 3 hours would result in a time value of 3:00 am the next day and not 2:00 am the next day. The hour between 1:00 am and 2:00 am does not exist for the local time zone.

  • How do you create PDF Form Fields that will expand to contain their content?

    I use Acrobat XI and so far as I know LiveCycle Manager taken away.
    1. Is there a way one can do it directly in Acrobat?
    2. Or is there a simple Javascript i can use?

    I know, but it should be possible to make it so that all items were moved forexample down if an item over was extended

Maybe you are looking for

  • Trying to set up a ssl vpn and can't get to it from outside?

    I have a barracuda sslvpn and a Hardware:   ASA5510, 1024 MB RAM, CPU Pentium 4 Celeron 1600 MHz Internal ATA Compact Flash, 256MB BIOS Flash M50FW016 @ 0xfff00000, 2048KB When I try and edit the vpn service object to say destination 444 source defau

  • Query taking so long to execute.

    I have one table with 211 rows, When i am executing Delete from TEHSIL_TBL; its taking too long time to delete 211 rows. I execute explain plan then i am getting the following results. SQL> explain plan for delete from TEHSIL_TBL; Explained. SQL> @C:

  • Print Studio Pro plugin is not compatible with Photoshop Elements 12 Editor for Mac

    It appears that the latest version of Print Studio Pro PlugIn is not compatible with the Editor version of Photoshop Elements 12 for Mac as available on the App store.  The install gives an error saying that it did not find a supported version of Pho

  • Help with itunes+internet+airport

    Hello, I've been looking and looking and can't quite find a good answer. Sorry if this is dumb. My imac intel is catching (barely) a public wifi signal via built-in airport. I have an airport express plugged in to my home stereo. I can stream itunes

  • How to get a list of heavily hit transactions?

    Hi, I was wondering  if there is an easy way of obatining a list heavily hit /highly used transactions. Any thoughts. I know ST03N would help but it is little labor intensive. Thanks, Santosh