Fill text box background?

how do i get a text to fill with color?  i know its kind of a noob question but thank you

-Select the text.
-Go to the Inspector>Text Tab.
-Click the Style button.
-Change the face color.
OR
-Select the text
-Bring up the HUD (F7)
-Change the Color in the color swatch.

Similar Messages

  • How can type a word on an image in Ps and change the text box background

    How can I type a word on an Image in Ps and change the background of the text box

    Photoshop doesnt have an ability to fill a text box so you will have to create a layer underneath the text layer. A shape layer work work well. That can be filled and stroked quite easily with editability.

  • Crosshatch Pattern to fill Text Box or polygon shape???

    I often have a need to define a certain area or room of a floor plan as the part we'll be using.
    In the past, I've done this by creating a text box with No Borders, then filling it with a color and 25% opacity.
    Our new attorney says "no colors...use a cross-hatch pattern in the defined area".
    So, my question is, once I've defined the area with a text box or by using the Polygon Tool, how do I fill the space with a crosshatch pattern???
    I've tried creating a small jpg (attached) of the sort of pattern I'd like it to be filled with, but can't figure out how to implement it so it will be used as a fill option.
    Thanks in advance for any help you may provide.
    I'm using Adobe Acrobat Pro, Version 9.2.0.
    Thanks again,
    D Flash
    Durham, NC (usa)

    Michael,
    Thanks for your response (and lawyer humor!).
    I've attached a document showing the type of thing the lawyer's referring to.
    in the attached drawing it shows two spaces we're using, surrounded by a polygon box and "filled" with a slightly opaque color.
    His concern is after much copying, it would always be easier to see the defined area if it was filled with a crosshatch, as opposed to a color.
    Is there a way to do that, perhaps using a custom-made stamp...I tried that with the jpg I provided in my previous post, but the jpg would not "fill" the area, and I was not able to "size" it to fill my space.
    Do you (or anyone else) have any suggestions as to how to accomplish what he's asking of me, using Acrobat????
    Thanks so much,
    Flash

  • Why is text washed-out when I'm using a color-filled text box?

    I have created some text boxes in InDesign. I've colored them a lighht green, and I am trying to type into them but my text is washed out, even though I am picking a much darker text than the box fill. How do I fix this? I am working on a tight deadline! Please help.

    Thanks. Here's a screenshot. I'm referring to the light green boxes on the side. The text I'm using is the same color as the text above that says "appalachian ohio" but it isn't showing up.

  • Auto-fill text box field values based on pulldown selection

    Trying to fill in address, city, state, zip text fields based on option selected in a select form field. The following code works great in Internet Explorer, but in Chrome or Firefox, after making selection, text fields are populated with the word "undefined."
    I've found a PHP version of Jquery script here that would probabably fit the bill.
    http://stackoverflow.com/questions/3657127/jquery-populate-text-input-from-table-based-on- select-value
    Maybe someone has a CF version they could share?
    Thanks in advance to any who can point me to a solution for this code, or a better way to accomplish my need.
    <!--- Destinations with auto-fill of address, city, etc. --->
    <script type="text/javascript">
          function selectAddress(list) {
                // assume first item is empty
                if (list.selectedIndex > 0) {
                      var locationID = list.options[list.selectedIndex].value;
                      var locationAddress = list.options[list.selectedIndex].locationAddress;
                      var locationCity = list.options[list.selectedIndex].locationCity;
                  var locationState = list.options[list.selectedIndex].locationState;
                  var locationZip = list.options[list.selectedIndex].locationZip;
                  document.getElementById('locationID').value = locationID;
                      document.getElementById('locationAddress').value = locationAddress;
                      document.getElementById('locationCity').value = locationCity;
                  document.getElementById('locationState').value = locationState;
                  document.getElementById('locationZip').value = locationZip;
    </script>
    <tr>
    <td align="right" bgcolor="#FFFFFF" valign="top">Name of Destination</td>
    <td align="left" bgcolor="#FFFFFF" valign="top">
       <select name="locationID" onChange="selectAddress(this)" class="smallforms">
                 <option value="">SELECT DESTINATION ››››››››››</option>
                 <cfoutput query="allLocations">
                       <option value="#locationName#" locationAddress="#allLocations.locationAddress#" locationCity="#allLocations.locationCity#" locationState="#allLocations.locationState#" locationZip="#allLocations.locationZip#">#locationName#</option>
                 </cfoutput>
            </select> 
          Other: <cfinput name="destinationNameOther" type="text" class="smallforms" size="75">
          <br />
           <input id="locationID" name="locationID" type="hidden"><br>
             Address:    <input class="smallforms" id="locationAddress"    name="locationAddress"    type="text" size="30"> 
             City:       <input class="smallforms" id="locationCity"    name="locationCity"    type="text" size="20"> 
             State:       <input class="smallforms" id="locationState"    name="locationState"    type="text" size="2"> 
             Zip:       <input class="smallforms" id="locationZip"       name="locationZip"       type="text" size="8"><br />
    <br />
    </td></tr>

    Thanks a million for the help Steve, the array is being created in source as follows: 
    <script type="text/javascript">
    var addresses = [
       "locationName": "Airport Park School",
       "locationAddress": "",
       "locationCity": "",
       "locationState": "WI",
       "locationZip": ""
       "locationName": "American Legion Golf Course",
       "locationAddress": "1001 Golf Club Road",
       "locationCity": "Wausau",
       "locationState": "WI",
       "locationZip": "54403"
    but I'm lost at the
    // reference as address[index].locationName...address[index].locationZip where index = 0-[arraysize-1]
    direction, and just to double check, you named the Javascript var "addresses", so the "reference as address" s/b "reference as addresses" right?
    I've tried many iterations of "onchange" adding other variables (locationCity, locationZip, etc.) but coming up empty.
    Anyway, I wish I could buy you a beer or two for the help . . .
    Here's where I'm at, which ain't working. If you have a minute to look over, it would be MUCH appreciated. Try not to laugh at my (what's probably ugly) Javascript code:
    <!--- Code from Steve @ Adobe.com CF Forum --->
    <script type="text/javascript">
    var addresses = [
    <cfset variables.fs = "" />
    <cfoutput query="allLocations">
      #variables.fs#{
       "locationName": "#jsStringFormat(locationName)#",
       "locationAddress": "#jsStringFormat(locationAddress)#",
       "locationCity": "#jsStringFormat(locationCity)#",
       "locationState": "#jsStringFormat(locationState)#",
       "locationZip": "#jsStringFormat(locationZip)#"
      <cfset variables.fs = "," />
    </cfoutput>
    // reference as address[index].locationName...address[index].locationZip where index = 0-[arraysize-1]
    </script>
    <tr>
    <td align="right" bgcolor="#FFFFFF" valign="top">Name of Destination</td>
    <td align="left" bgcolor="#FFFFFF" valign="top">
      <select name="locationID" class="smallforms"
      onChange="var locationAddress = addresses[list.selectedIndex].locationAddress;">
                 <option value="">SELECT DESTINATION &#8250;&#8250;&#8250;&#8250;&#8250;&#8250;&#8250;&#8250;&#8250;&#8250;</option>
                 <cfoutput query="allLocations">
                       <option value="#locationName#">#locationName#</option>
                 </cfoutput>
          </select> 
      Other: <cfinput name="destinationNameOther" type="text" class="smallforms" size="75">
      <br />
      <cfoutput>
       <input id="locationID" name="locationID" type="hidden"><br>
       Address:  <cfinput class="smallforms" id="locationAddress"  name="locationAddress"  type="text" size="30"> 
       City:   <cfinput class="smallforms" id="locationCity"   name="locationCity"  type="text" size="20"> 
       State:   <cfinput class="smallforms" id="locationState"   name="locationState"  type="text" size="2"> 
       Zip:   <cfinput class="smallforms" id="locationZip"   name="locationZip"   type="text" size="8"><br />
      </cfoutput>
    <br />
    </td></tr>
    Thanks again Steve . . . much appreciated!

  • Stroke around text boxes??

    Is is possible to give text boxes a stroke?? I am creating a announcement sheet and the previous way they did it was in publisher where they had a background and then a filled text box with a stroke around each one.
    Thanks,
    Cory
    G4   Mac OS X (10.4.7)   MBP SOON

    duh

  • Change Fill In Box Format

    Hi All
    I have been looking around nad cant find how or where to change the format of the fill in box. See below. I have a lovely looking background, and the question font is good, but i want to make the fill in box, background black, and the font colour white. How do I do that ??
    I am using captivate 7
    Thanks

    Hi there
    Unfortunately it would appear that this is not configurable. At least, using the FIB question slide. If you created a normal slide you could accomplish it using a Text Entry Box object that you could score and count as a question. To configure the background color of the TEB, look at the "Fill & Stroke" section of the Properties panel.
    Cheers... Rick

  • Font color in text box

    Here's the scenario.  User copies text from black and white document in acrobat 8.2.  User then goes and pastes the text into a text box on a different page.  When the user leaves the text box, the text all goes to the same color as the text box background and looks like the text has disappeared.  The text can then be selected (although you can't see it until you hit ctrl+A or drag mouse).  Once the text is selected it can then be changed to a different color and viewed.  Although, sometimes the text is now in a different font (Symbol as far as I've seen).  The default text color is black.  This doesn't happen every time for various text throughout the pdf.  It does happen when trying to select the same problematic text.  I've tried uninstalling/reinstalling Acrobat and I've been unable to reproduce the problem on two other computers working with the same document.  Selecting the text and changing the color is "too much work" for the user and I'd like to find a more permanent solution.  Any suggestions please...

    sorry folks, found my answer..
    if anyone else has the problem - select the text, go to View - then toolbars - the the properties bar and the font is in that bar...

  • Creating a background fill in a text box

    Hi there,
    I am using CS4 and want to make text boxes with backgroud (e.g., white). I know I can add a white box but is there a easier way?
    Thanks!

    Yes. Make sure you're using Area Type, then select the Area type bounding box and assign a fill color. Use the Direct Selection tool so you select only the type box, not the type itself.
    You can also create a background color with Point Type by adding another fill attribute to the type, in the Appearance palette, then using "Effect>Convert to Shape" to convert it to a rectangle or oval. You can then move it behind the "Character" level in the Appearance panel and  assign it a color. This method allows the flexibility of defining margins around the text.

  • What is the technique for background color to text box?

    I expected that I could fill the background of a text box but
    I can't see any way to make the fill.
    Using the fill tool only effects the text,not its background.
    Perhaps I'm missing something in which case I'd appreciate a
    direct to the place in the help where this is described.
    Otherwise the implication is that you have to place a filled
    object behind the text, is that correct?
    Thanks

    "Otherwise the implication is that you have to place a filled
    object behind the text, is that correct?"
    This seems to be the approach to be followed.

  • Text Box Unwanted Color Fill ?

    I have added numerous text boxes to my design but now I'm getting a pinkish background fill in the text box.  I can change the color of the type, I can draw text boxes on different layers, but I don't know where this fill color is suddenly from.  Did I accidentally change a setting somewhere that I'm not aware of?
    Thanks,
    Greg

    Adding the Courier and MyriadPro fonts allows me to now open my document without getting a warning about fonts, although usually the warning was for MyriadPro.
    The following is kind of a journal-style entry as I note what happens when I try different things:
    I added the fonts as you suggested.  Then I closed and reopened my document.  No warning about missing typefaces this time, Helvetica Regular was default typeface, as I'd set it a bit earlier.  I can now add Placeholder Text without pink and I can apply my Character Style.  The only item that doesn't apply is the Tracking 30 setting.  I've tried to Redefine Style but it is grayed-out.
    Then I tried creating another text box and Courier T1 showed up in brackets again.  I set it to None Character Style, and the type changed to some other face.  I can't apply my Character Style  .  I selected the text and clicked on my Character Style but Courier T1 stayed there.
    If I draw a Text Box, my default Hel Reg appears.  I filled it with Placeholder Text.  Then I highlighted the text and successfully got it to take my Character Style.  Then I changed CS to None, it went to Hel Reg, then I changed it to another CS and it took, I went back and forth a couple times and then clicked on None again Courier T1 suddenly appeared.  Once that happens, all the other problems happen.  Before Courier decides to appear and my default is active, I can change Character Styles a few times before Courier appears again and I have to restart InDesign. 
    Sometimes I'll highlight the text and try adding a CS and a portion of my selection becomes pink. 
    I know this sounds disjointed, but this is the way it's behaving.  I can't predict exactly what is going to happen when, but sooner or later Courier T1 appears and I can't get my text to take my Character Style.  By the way, what is Courier T1, I added 3 different Courier fonts to my folder. 
    I hope there is a good clue somewhere in here.  I'm pretty baffled. 
    Greg

  • How to apply a semi-transparent background to a text box

    Hi Framers,
    The cover of my doc has a full-page .png file on a master page. I want to add the title of the manual on the body page of the cover in a text box. No problem. However, I want to apply a semi-transparent effect to the background of the text box, so the graphic behind it shows in a muted way.
    I'm sure this has to do with some combination of the Tint, Fill, and Overprint settings but none of my experiments have produced anything close to the desired effect.
    I did RTFM and also searched the Help and the forum. I truly hope I didn't overlook the answer---but if I did, it wasn't for lack of trying!
    As always, your expertise is very much appreciated.
    TIA,
    Gay

    Wow, I wish I had Photoshop! I use a less sophisticated image editor, which has always served quite adequately and since it supports layers, I'll try to figure out how to do what you're suggesting.
    (I did try a "None" fill and the bottom image does show up, but I wanted it a bit muted, as would happen with perhaps a "half transparency" and that is apparently what I can't achieve in FM.)
    If I understand correctly, I need to edit the imported graphic to make a portion of it appear semi-transparent, and then when I bring it back into FM and put my text box on top of it, it will appear the same as if I had been able to put a partial transparency in the fill of the text box...
    I really, really, really hate it when I find myself thinking "Word could do this easily, why can't Frame?"
    Thanks for your helpful suggestions, guys, you're great. As always!
    Gay

  • How to change texture backgrounds in Keynote text box

    I want to know if its possible to change the texture background image of a text box, keeping the background textured but in a different color.
    Sequence:
    Create a text box
    Add text
    In the inspector select "image fill"
    The result is a textured background in a particular color.
    Thinking I might be able to replace the image with another textured image but of a different color I click on "Choose" and a dialog opens that is located at the "pictures" folder in the home folder.
    This makes sense but I wonder if there is a group of textured images somewhere to use as backgrounds?
    And if so where are they located?
    I've searched around and can't find same.
    Perhaps the textured background is unique to the theme.
    Thanks

    Most of the textures are unique to the theme BUT try this:
    1. Put a chart on your slide
    2. Click on the Chart Colors button in the Chart Inspector
    3. See if any of the chart options match what you're looking for and hit Apply All in the chart colors window
    4. Click once on one of the bars in the chart to select it
    5. Choose Copy Style from the format menu
    6. Click on your text box and choose Paste Style from the format menu
    7. Go to the Graphic Inspector and change the fill type from Image Fill to Tinted Image fill
    8. Play around with the color/transparency settings for the Tinted image function by clicking on the box that looks like it's sliced in half diagonally.
    no idea if that's what you're looking for, but you can come up with some fun fills I think.

  • How can I fill in a default inputText in a Text Box

    How can I fill in a default inputText in a Text Box. Is it possible to create a button and then it should be possible some underlying data fill in the text boxes???
    Please help!

    My coding looks at the moment like that:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%@ page language="java" %>
    <html>
    <head>
    <title>
    JSF
    </title>
    </head>
    <body>
    <f:view>
    <h:form id="user">
    JSF Application View:<br><br><br>
    Credit Limit:.......
    <h:inputText value="#{User.username}"/><br>
    Currency:...........
    <h:inputText value="#{User.username}"/><br>
    Score:..............
    <h:inputText value="#{User.username}"/><br>
    Valid Date To:......
    <h:inputText value="#{User.username}"/><br><br>
    <h:commandButton value="Receive Data from Background" action="success" /><br>
    </h:form>
    </f:view>
    </body>
    </html>
    Now my question is how it is possible to fill in the inputTextvalue when I click on the Button "Receive Data from Background" Is it possible to define that in that coding above????
    Please help I'm not fit in JSF

  • When converting word doc to pdf, my images with text only show the background color of the text box.

    I have a word doc that I am trying to conver to pdf.  I have jpegs with text boxes on top of them on one page.  It looks great on the screen but after I convert to pdf, the text boxes only have half the text, the first half of the text box is just white - the background color.  If I take the background color out of the text box, the text converts over fine but I need the background color.
    I have tried many things here on the print settings, standard, high quality print, unchecking the compression on the images.  Any help?

    Thank you for your posting. These forums are specific to the
    Acrobat.com website and it's set of hosted services, and do not
    cover the Acrobat family of desktop products. Please visit the
    following forums for any questions related to the Acrobat family of
    desktop products:
    http://www.adobeforums.com/cgi-bin/webx/.3bbeda8b/

Maybe you are looking for

  • What's Happening? Airport Scanning keep defaulting to the wrong place

    Hello, Recently my internet went down and I had to reset my router and modem to increase my speed. Ever since my airport keeps defaulting to the wrong location and I have to keep opening it up and going to my airport name but it won't. I've unchecked

  • G5, Dell 30 inch monitor, Radeon Mac9600 PRO 256MB

    When I ordered this monitor, I read that my computer should have a dual-link DVI-D compatible graphics card. I had a dual-link DVI card, but soon found that the one I had didn't support the higher resolution of the 30 inch monitor. Apparently, the on

  • Audio Video Content created in 10.6 Downloads instead of Plays Back

    I have a situation where all content created in 10.6 will download instead of playing back with a browsers plug-in. That includes, mp3s (mp3s created with Logic) and all types of common video formats - DivX avi's, mp4's, mov's. I have tested on Safar

  • Can I have to User Task inside one BPEL

    Hi All Can I have to User Task inside one BPEL? Can any of U tell me ..? I am getting exception....like in case of user defined key it must be unique......

  • Illustrator CS6: deleting unwanted items outside a clipping path

    Hi everyone, I'm creating a logo that employs a stippled texture (a half-tone) in various sections of objects comprising the logo. I've placed the stipple where I want it, created a clipping path to capture the area. Now I have all these other points