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

Similar Messages

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

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

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

  • How to add text to a polygon shape?

    I created a triangle:
    <Polygon Name="triangle_top" Points="0,0 130,0, 130,130" Stroke="Black" />
    I would like to add text to it without adding a label.
    how should I do it?

    You should either not mark a thread as answered ( closed) or ask a new question on a new thread.
    I would start by removing the margin, but that's because there is no way of knowing how big that grid is from your code.
    <Grid x:Name="topTriangle" >
    <Polygon Name="triangle_top" Points="0,0 130,0, 130,130" Stroke="Black" Fill="Red" MouseEnter="triangle_MouseEnter" MouseLeave="triangle_MouseLeave" />
    <TextBlock Name="text_top" FontSize="25" Text="55" Foreground="Black" />
    </Grid>
    Hope that helps.
    Recent Technet articles:
    Property List Editing;  
    Dynamic XAML

  • In iWork Pages 5.1, how do I eliminate "text" in the Text Box?

    In iWork Pages 5.1, how do I eliminate the word "text" which appears in the Text Box, when I've used a color filler and no words?

    Select the text and delete.
    If you don't want text in the box, don't use a text box ie in Shapes there are various shapes. Select one without 'T'.

  • Help on resizing text boxes and general image techniques

    Using CS2.
    I have two basic questions.  One has to do with getting the best vector images (with text) that I can for placement in InDesign documents.  The other has to do with the specifics of working with text boxes in FW.
    The easiest way for me to produce vector images has been by using PowerPoint.  I do all the graphics work and then save it as a gif.  I do cropping in a graphics tool (Irfanview, PS) and then insert or place the image.  As long as there is no resizing, things work well.  I'm not sure how things like DPI are controlled using this technique but I'm assuming that also would be done with the graphics tool.  I know Irfanview allows for the dpi to be specified during resizing.
    The problem starts to show up when the gif object is resized.  Things get distorted and I lose the crispness of the image contents.  I'm certainly not an expert on graphics however I've been thinking I either need to 1) make the actual size of graphics in PP the size of the final placed image so there is no resizing (just some cropping) or 2) to work in a tool like FW where (I'm assuming) there are better capabilities to resize vector graphics.  My sense (again, not an expert) is that the process I'm using converts to vector graphics in PP to a bitmap image in the gif and that resizing doesn't work as well for bitmaps as for vector objects.  Do I have that right?
    Moving on to question 2:
    Can text boxes be resized in FW without distorting the text?  Can their size be seen when originally drasing them?  Perhaps spoiled by PowerPoint, I like to set the width of vector objects (e.g. rectangle) and the width of the text that will fill it to the same size.  (I know PP has the ability to put borders on text boxes but when working in FW I need to work with 2 objects, the rectangle and the text box).  Say I have a rectangle that is 81px wide.  Can I set a text box to 81px wide without distorting the text?
    I tend to want to control actual object sizes so I can get good spacial alignment.  For example, I tend to set the width of a text object to an odd number of px so that any line coming out of the text object aligns well with the text.  I must admit that it may be time for me to use a different technique in FW (e.g. more alignment of multiple objects vs. knowing dimensions and seting locations).  Does my approach need improvement?
    Thanks for any advice
    Tom

    As I wean off of PP I've started looking at FW and Illustrator (I have both).  I've done a logo or two in FW and have used it to build some simple web graphics (e.g. buttons, menus).  It can, as I recall, be a little more complex than what I need in this case.
    Since PP is not a graphics program, its drawing capabilities are very limited. As a consequence, any graphics application will have many more features than you're used to seeing and more than you need for any one project.
    I did a little experimenting with Illustrator and my first impression is that it will work better for me for this work.  It seems a little more intuitive.
    Is a general guideline to use FW for web-destined graphics and Illustrator for what I used to do in PP?
    Your suggested guideline is good. Also, note that if you make a logo or vector graphic in Illustrator (saving as .ai format), you can import that into Fireworks and work with it as a vector object there. FW can import and use, just not create, .ai objectes and files.
    FW has some vector tools, they are tucked away under Window > Others > Path. Since FW is intended for producing Web graphics, it is a hybrid application, capable of both vector and photo/image editing. Given that it has some of both, it necessarily doesn't have everything that Illustrator has nor everything that Photoshop has. It has most the features of both of those programs, as long as the feature is useful for a Web graphics designer. For pure photo editing Photoshop has the edge; for pure illustration, Illustrator has the edge. Both Photoshop and Illustrator support color profiles and other features important for print that Fireworks does not. All are good programs, but there are reasons to prefer one over the other depending on what kind of graphics you need to create or work with and what your intended use of the work is. (But any of them will be superior to PowerPoint! )
    I'm not sure I can unravel the mystery with the text box resizing.  I suspect theres an option selected.  Knowing it can be done is enough for me to do some homework.
    Maybe...don't think of text boxes at all. You have text objects. The object has a bounding box that is determined by the underlying definition of the font, but it isn't in a text box. (Sometimes swooshs will extend beyond the defining box of a character in the font, but that is another issue). The bounding box for the text object is similar to the bounding box of a circle or a star or an irregular shape. There's a reference box for the dimensions, but the text is not inside some other independent container.
    To resize, select the text object and change the font size either using the Properties palette or using the scale tool to drag on a corner of the scaling outline (different from the bounding box, and I don't know why, sorry).
    I think that,with Illustrator, you can define text boxes (or other shapes) and fill them with text. *searches* Ah.. Like these: http://school.tatoland.com/illustrator/aitype.html
    cheers!
    Lorraine

  • 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

  • Putting text in a shape vs in a text box on top of a shape

    I want to put text in a shape (eg a rectangle). You can put text directly in the shape, or you can put text in a text box on top of the shape. I am interested in the pros and cons of these two methods.
    It seems to me that putting it directly in the shape is better (if you are going to fill the shape with text). I don't see that using a text box adds any functionality.
    Any thoughts?
    thanks
    bob

    Put the text directly into the shape. Anyway, putting a text box into a shape does not work, I don't think. You can place shapes within shapes, but not text boxes.

  • How to center Text Box on Web Page? -- Web dev with Word 2013

    I'm trying to assist a user who wants to use Word 2013 for simple web page development.
    There are many tools but they want to use Word 2013.
    Actually have it working by saving the Word 2013 files as web pages... like index.htm, about.htm, etc.
    The problem is when we use the "Insert" tab in Word to create a "Text Box" or a "Shape" ...
    And align it centered on the page... it looks fine in Word but when we open it with a web browser the "Text Box" or "shape" are no longeer centered.
    We thought we had it fixed by making the "Text Box" Layout Options "In Line with Text" but again... looks fine in Word but not in a web browser.
    The question: How can we get a "Text Box" in Word 2013 to appear centered on a web page?
    thanks for any help.

    Hi:
    For webpage design, I would suggest customized form under develop tab on the Ribbon over insert object directly. I tested from my side, using customized form will lock the object position on the
    page.

  • Grouping text boxes/objects

    Hi- 1) I've created a text navbar for the top of the page, consisting of 10 text boxes on a shape, with lines (from the shape menu) between each box. I now want to paste this onto every other page.
    2) I've repeated this for the bottom of the page but without the shape.
    Is it possible to group all these together in one action, so afterwards it needs only one click to select the navbar before copying and pasting, ot simply re-positioning it ?
    Thanks, Kay.

    Hi Cyclosaurus, thanks for answering. I've got Rulers - which is a really neat little programme- for actually lining up objects.
    What I meant was something different: that the objects/text boxes can be 'stuck to each other' so that they become one unit,which can then be copied and pasted with one click.
    I've also experienced that- especially viewed in Windows -the text moves independently to the objects and a disaster results. Like yesterday when I uploaded all the changes I'd made to my site.
    Kay.

  • Cannot resize text boxes or shapes

    I have done something, somehow and can't figure it out. When I draw a text box or a shape I am unable to resize with my marquis tool. I have to use the transform tool or the group marquis to grab individual points. I was able to before but must have hit a quick key by accident and can't figure out what I have done. Any help would be appreciated!
    CS1 for Mac.
    Thanks,
    Nicole

    Hi Nicole,
    Try View > Show Bounding Box.
    You probably mistakenly hit the shortcut key to turn it off at some point.
    And just for future reference, they are Selection tools in Illustrator, not Marquis tools. Someone may be confused by your terminology and it'll help to use the proper names.
    Hope that helps.

  • Rounded Corner Text Box in iWeb 2.0 - just like this site

    As you can see on this very apple site the corners of its main boxes are rounded. In iWeb you can't make your text box rounded unless you place your text in a rounded corner shaped box. However for formatting purposes the shaped box won't expand or contract as you see your site on different browsers because it is saved as either an image.
    1. If you place text directly in a shape it publishes as an image with the text not able to be highlighted or searched.
    2. If you place a text box over a shape. The text will not adapt to the boundaries of the box. So if you view you site on the web it is possible for your text to go outside the boundaries of the box. This is not good.
    3. I tried creating a rounded png box with transparency that I then made as the background image for a text box. The corners showed properly on iWeb but once published the rounded corners showed properly when there was no drop shadow applied to the text box. With a drop shadow the corner squared off to display some of the background corner. I know this is not the clearest -- forgive me.
    4. You can add a picture frame to a text box which expands and contracts so why not simply be able to add a rounded corned picture frame to a text box.
    Finally, the simple solution to me should be that the text box should be capable of being rounded. I know why iWeb doesn't do this because rounded corners are complex. I know because I've designed sites with Dreamweaver and GoLive.
    I hope they add this to the iWeb in an update. You'd think they'd have a template similar to their own site which has rounded corners.

    The rounded corners are images.
    [TopLeft|http://discussions.apple.com/images/header.gif] & [Topright|http://discussions.apple.com/images/header_rightcap.gif]
    [BottomLeft|http://discussions.apple.com/images/bottom.gif] & [Bottomright|http://discussions.apple.com/images/bottom_rightcap.gif]
    You want prefab solutions.
    Web design is also about finding solutions yourself. It's part of the creative process.
    The textboxes are <div> elements in the final result. W3 CSS does not specify rounded corners, but [it is possible in CSS3|http://www.w3.org/TR/css3-background/#the-border-radius].
    Safari supports the +-webkit-border-radius: 10px;+ style.
    You can see it on [my custom webpage|http://myworld.webhop.org].
    So, if you have the knowlegde, you can apply what you want with a HTML snippet.

  • CVP Opsconsole: Patterns for RNA timeout on outbound SIP calls - Dialed Number (DN) text box does not take any input

    Hi there,
    I'm having problems modifying the 'Dialed Number (DN)' text box under 'Advanced Configuration->Patterns for RNA timeout on outbound SIP calls' of the SIP tab in the Cisco Unified Customer Voice Portal 8.5(1) opsconsole. In a nut shell, I need to change the RNA timeout but some reason when typing into the Dialed Number text box, the input is not taken. The reason I want to change this settings is because my ICM Rona is not working with CVP:
    https://supportforums.cisco.com/thread/2031366
    Thanks in advance for any help.
    Carlos A Trivino
    [email protected]

    Hello Dale,
    CVP doesn't allow you to exceed the RNA more than 60  Seconds. If you want to configure the timer for DN Patterns you should  do it via OPS console, It would update the sip.properties files in  correct way, the above way is incorrect.
    Regards,
    Senthil

  • I can't change a shape or a text box fill color

    Hello community,
    I used to change the colors of my shapes and text boxes, but suddenly I can't do it anymore. I restarted my Mac 'cause it appeared to be something about the memory... but unsuccessfully...
    This is how I do: I select my shape, then go to the Graphic window, select Color Fill (then a white or a grey appears into my shape), and I double-click at the color menu to change it, but the shape remains the same (white or grey). I can choice between fill and no fill, but not change the color!
    Does it happened with anybody yet?
    Thanks a lot,
    Dea.

    Try quitting iWeb, deleting the preference file - Home Folder/Library/Preferences/com.apple.iWeb.plist,
    restarting your Mac and running Disk Utility to repair permissions.
    Deleting the .plist fixes a lot of things but I rarely have to do it as I restart a lot and run Disk Utility at least once a week.

Maybe you are looking for