Text box printing

I have a form with several textfields that are configured to expand to fit the height but two negative effects occur when the field needs to expand.
1) The field expands when you TAB out and it expands over the text of the next question so you can't read the next question.
2) When the form is printed it does not expand.
Ideally I want the textfield to add a scroll bar on the side for the electronic copy and only expand the fields when it is printed.
This is very easy but I have checked all my settings and read other posts that seem like I have everyrhing configured correctly.
Any help is GREATLY appreciated.

I realized that I needed to have a Flowed layout. I think I got it now.

Similar Messages

  • Some text is printing as boxes

    I am trying to print a document that has text box comments in it.  When I print a hard copy to our Konica Minolta C652 printer, some of the text boxes print out with the individual characters as boxes.  The document is 5 pages and we are printing 2-sided.  When I print an individual page that has the problematic text on it, the text prints out correctly.
    We have used the text boxes to comment in multple documents.  This is the first time we have had a problem.  Does anyone have any thoughts as to what may be causing this printing problem or a possible solution?  Do you think it may be an isolated incident and the document has become corrupt at some point?
    Thank you in advance for any assistance you may be able to provide.

    Fabio,
    Thank you for the reply.  I did the consistency check (shift-rt click(2x)).
    It is showing an X in the icon column for the WERKS field.  How do I remove that?
    Thanks,
    Andy

  • Expanding Text Boxes

    I don't know if this question is buried in some other place on the Muse site but I can't seem to find the answer to this.
    I am creating a site for a class I'm teaching and I would like to create a series of text boxes on a Master page, each one separated by headers or images.  However, each one of the child pages created from this Master will have different amounts of text in any given text box. For instance, Lesson #1 would have sections for Lesson, Homework, Handouts and the like, each one separated by a graphic or header for that section.  Another page -- let's say,  Lesson #2 -- would have the same sections and identical separating graphic, but different amounts of text in each of the text boxes.  The same for Lesson #3, Lesson #4, etc.
    Unless I'm missing something, it seems like there is no way to make a text box which varies in size from child page to child page.  If I need to create most of the elements on the page from scratch for each child page, what is the value of the Master page, aside from a very few repeatable elements?
    Is there something I'm missing here?
    Norman

    A colleague of mine pointed out to me that if a user fills out the form using Apple's Preview application, if the form is then viewed in Acrobat/Reader you will get the behaviors you describe of not seeing the entered text unless the field is selected and of the text boxes printing blank.
    This behavior may be true for other none Acrobat/Reader pdf clients as well.
    -Jeff Canepa

  • I am using the big date calendar template and when I submit it to apple for printing I lose the name of two months. These names are not text boxes. I see the names when I send it in but something happens during the transmission to apple. It was suggested

    I am using the big date calendar template in iPhoto. I am on Lion 10.7.2, macbook air. The names of the months are on each calendar page but something happens when I send the data to Apple. The names are part of the template. They are not text boxes. I lose two names on the calendar after it is sent to Apple. Apple suggested I make a pdf file of my calendar before sending it in and check to make sure every name shows. I did this with a calendar I just sent in. The calendar was correct. All names of the months were showing. After sending the data two month names disappeard because when it arrived by mail, it was incorrect. Apple looked at my calendar via a pdf file and it was incorrect.  This is second time this has happened. I called Apple and they had me delete several folders in the Library folder, some preferences and do a complete reinstall of iPhoto.  I have not yet remade the defective calendar. I am wondering if anyone else has had this problem?
    kathy

    Control-click on the background of the view all pages window and select "Preview Calendar" from the contextual menu.
    You can also save the pdf as a file to compare to the printed calendar.  If the two names are visible in the pdf file then the printed copy should show them.  Contact Apple for a refund.  Apple Print Products - Apple Store (U.S.)

  • How do I get a text box to expand by user and print all text?

    I am creating a form in Adobe Live Cycle Designer that was converted from a Word file that contains many text boxes.  I would like the text box to expand to accomodate each user's text in edit mode.  When the form is printed - all the entered text should print.  Even though I set the text box to allow multiple lines, all the user sees when they print is a box with just a couple of lines and a red + in the corner indicating that there is more text.  There must be a work around?  I am not very proficient in this software so would love someone to give me the necessary steps.  Thanks.

    It is a dynamic form feature available in Designer. To get more information, ask in the LiveCycle forum.

  • Adobe Acrobat Pro text box not printing and is hidden under box highlight.

    Adobe Acrobat Pro 10.1.13.  I am completing a form with text box throughout the document. I can no get the text box to printing and the text is hidden under box highlight.  I have tried printing with the print feature 'Comments & Forms/ Document and Markups' with no luck.

    It's doing that because you have field highlighting enabled. YOu can either turn it off or make the field read-only (if it's only used for display and not entry).

  • PowerPoint using macro to delete text boxes after printing

    Hi,
    We created custom shows in Powerpoint and are running a macro to insert temporary page numbers on the slides before printing.  The issue is that I need to remove the page numbers after printing.  I'm a novice at VBA so I'm sure there is an easy
    solution, but nothing I've tried so far has been successful.  The code is displayed below for your reference.  Any help is greatly appreciated. Thanks!
    Sub PrintCustomShow()
          ' Change this number to specify your starting slide number.
          Const lStartNum As Long = 1
          ' Ask the user which custom show they want to print.
          Dim strShowToPrint As String, strPrompt As String
          Dim strTitle As String, strDefault As String
          ' See if any custom shows are defined.
          If ActivePresentation.SlideShowSettings.NamedSlideShows.Count _
             < 1 Then
             ' No custom shows are defined.
             ' Set up the string for the message box.
             strPrompt = "You have no custom shows defined!"
             ' Display the message box and stop the macro.
             MsgBox strPrompt, vbCritical
             End
          End If
          ' Find the page number placeholder; if found, pick up the style.
          Dim rect As PageBoxSize
          Dim oPlaceHolder As Shape
          Dim bFound As Boolean: bFound = False
          For Each oPlaceHolder In _
             ActivePresentation.SlideMaster.Shapes.Placeholders
             ' Look for the slide number placeholder.
             If oPlaceHolder.PlaceholderFormat.Type = _
                ppPlaceholderSlideNumber Then
                ' Get the position of the page number placeholder.
                rect.l = oPlaceHolder.Left
                rect.t = oPlaceHolder.Top
                rect.w = oPlaceHolder.Width
                rect.h = oPlaceHolder.Height
                ' Get the formatting of the slide number placeholder.
                oPlaceHolder.PickUp
                ' Found the slide number placeholder, so set the
                ' bFound boolean to True.
                bFound = True
                Exit For
             End If
          Next oPlaceHolder
          ' See if a slide number placeholder was found.
          ' If not found, exit the macro.
          If bFound = False Then
             ' Unable to find slide number placeholder.
             MsgBox "Your master slide does not contain a slide number " _
                & "placeholder. Add a " & vbCrLf & "slide number placeholder" _
                & " and run the macro again.", vbCritical
             End
          End If
          ' Set up the string for the input box.
          strPrompt = "Type the name of the custom show you want to print." _
             & vbCrLf & vbCrLf & "Custom Show List" & vbCrLf _
             & "==============" & vbCrLf
          ' This is the title of the input box.
          strTitle = "Print Custom Show"
          ' Use the first defined show as the default.
          strDefault = _
             ActivePresentation.SlideShowSettings.NamedSlideShows(1).Name
          ' Obtain the names of all custom slide shows.
          Dim oCustomShow As NamedSlideShow
          For Each oCustomShow In _
             ActivePresentation.SlideShowSettings.NamedSlideShows
             strPrompt = strPrompt & oCustomShow.Name & vbCrLf
          Next oCustomShow
          Dim bMatch As Boolean: bMatch = False
          ' Loop until a named show is matched or user clicks Cancel.
          While (bMatch = False)
             ' Display the input box that prompts the user to type in
             ' the slide show they want to print.
             strShowToPrint = InputBox(strPrompt, strTitle, strDefault)
             ' See if user clicked Cancel.
             If strShowToPrint = "" Then
                End
             End If
             ' Make sure the return value of the input box is a valid name.
             For Each oCustomShow In _
                ActivePresentation.SlideShowSettings.NamedSlideShows
                ' See if the show is in the NamedSlideShows collection.
                If strShowToPrint = oCustomShow.Name Then
                   bMatch = True
                   ' Leave the For loop, because a match was found.
                   Exit For
                End If
                ' No match was found.
                bMatch = False
             Next oCustomShow
          Wend
          ' Get the array of slide IDs used in the show.
          Dim vShowSlideIDs As Variant
          With ActivePresentation.SlideShowSettings
              vShowSlideIDs = .NamedSlideShows(strShowToPrint).SlideIDs
          End With
          ' Loop through the slides and turn off page numbering.
          Dim vSlideID As Variant
          Dim oSlide As Slide
          Dim Info() As SlideInfo
          ' Make room in the array.
          ReDim Preserve Info(UBound(vShowSlideIDs) - 1)
          ' Save the current background printing setting and
          ' then turn background printing off.
          Dim bBackgroundPrinting As Boolean
          bBackgroundPrinting = _
             ActivePresentation.PrintOptions.PrintInBackground
          ActivePresentation.PrintOptions.PrintInBackground = msoFalse
          ' Loop through every slide in the custom show.
          Dim x As Long: x = 0
          For Each vSlideID In vShowSlideIDs
             ' The first element in the array is zero and not used.
             If vSlideID <> 0 Then
                ' Add slide ID to the array.
                Info(x).ID = CLng(vSlideID)
                ' Get a reference to the slide.
                Set oSlide = ActivePresentation.Slides.FindBySlideID(vSlideID)
                ' Store the visible state of the page number.
                Info(x).IsVisible = oSlide.HeadersFooters.SlideNumber.Visible
                ' Turn off page numbering, if needed.
                If Info(x).IsVisible = True Then
                   oSlide.HeadersFooters.SlideNumber.Visible = msoFalse
                End If
                ' Create a text box and add a temporary page number in it.
                Dim oShape As Shape
                Set oShape = _
                   oSlide.Shapes.AddTextbox(msoTextOrientationHorizontal, _
                                            rect.l, rect.t, _
                                            rect.w, rect.h)
                ' Apply the formatting used for the slide number placeholder to
                ' the text box you just created.
                oShape.Apply
                ' Add the page number text to the text box.
                oShape.TextFrame.TextRange = CStr(x + lStartNum)
                ' Increment the array element positon.
                x = x + 1
             End If
          Next vSlideID
    ' Print the custom show. NOTE: You must turn background printing off.
                 With ActivePresentation
                 With .PrintOptions
                 .RangeType = ppPrintNamedSlideShow
                 .SlideShowName = strShowToPrint
                 End With
                 .PrintOut
                End With
          ' Restore the slide information.
          For x = 0 To UBound(Info)
             ' Get a reference to the slide.
             Set oSlide = ActivePresentation.Slides.FindBySlideID(Info(x).ID)
             oSlide.HeadersFooters.SlideNumber.Visible = Info(x).IsVisible
          Next x
          ' Restore the background printing setting.
          ActivePresentation.PrintOptions.PrintInBackground = _
             bBackgroundPrinting
       End Sub

    Hi hlolrich,
    According to the description, you want to remove the shapes which created after you print the presentaion.
    I suggest that you name the shape you added with some rule, then we can delete thease shapes via the name rule.
    And here is a sample that you delete the shapes which name contains the
    myShape words on the first slide for your reference:
    Sub deleteShapes()
    For Each aShape In Application.ActivePresentation.Slides(1).Shapes
    If InStr(aShape.Name, "myShape") Then
    aShape.Delete
    End If
    Next aShape
    End Sub
    Also you can learn more about PowerPoint developing from link below:
    How do I... (PowerPoint 2013 developer reference)
    PowerPoint 2013
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I am unable to print the full content of a text box within a PDF that was emailed to me - help!

    I open the pdf in Adobe Reader, and can see all of the content on screen by scrolling within the text boxes. But, because the content is "bigger" than the text box in some cases, when I print the pdf, the text gets truncated. Can I print in a way that allows me to see all text that the user entered?
    Thanks in advance for any guidance.

    Quit Safari.
    Open the Library folder in your home folder as follows:
    ☞ If running OS X 10.7 or later, hold down the option key and select Go ▹ Library from the Finder menu bar.
    ☞ If running an older version of OS X, select Go ▹ Go to Folder… from the Finder menu bar and copy the line below into the text box that opens:
    ~/Library
    Delete the following items from the Library folder:
    Caches/com.apple.Safari/Cache.db
    Preferences/com.apple.quicktime.plugin.preferences.plist
    Preferences/QuickTime Preferences
    Relaunch Safari and test.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running OS X 10.7 or later, open LaunchPad. Click Utilities, then Console in the page that opens.
    Select "/var/log/cups/error_log" from the file list. Post the messages from the time of the last printing attempt.
    Post the log text, please, not a screenshot. If there are runs of repeated messages, post only one example of each. Don’t post many repetitions of the same message.

  • Text in "Text Box Tool" won't print

    I have Adobe 6 Professional and a Brother printer.
    You can print text box comments and highlighted text using "Document and comments" option under the "Print what" drop-down in your printer dialogue window.

    Thanks...
    Flatten sounds like a great way to go. I looked all over, but didn't see a flatten action, can you point me in right direction? I think Photoshop and/or Illustrator have this, but was hoping to just stay in Acrobat, and not get too involved/complicated, if possible.
    I stumbled upon a document that said flattening occurs if you save it to [a very old version of Acrobat, like 1.x] Didn't see any place to do this either... on the "Optimize" menu, mine only goes down to Readable by "4.0 and later". Welcome any suggestions.
    Re: using "real text" instead of comments, I'd like to, but in some cases the pdf is received, instead of created. So, would like to be able to work with what got (a pdf at the start), then just add the text and embed/flatten/integrate/save or whatever, permanently so to speak, into the document.
    Thanks again, and thank you for patience with these questions...

  • InDesign won't print colors in text boxes

    I have been working on a newsletter that includes some charts and tables in it. I put the tables and charts in a text box, and then added a background fill color to it. I exported the document to PDF, and the colors showed up there fine.
    The trouble occurs when I try to print the document. The fill color in the box does not show up at all. What can I do to fix that. Thanks for the help.

    This sounds more like an issue with the printer driver and the PDF than an InDesign issue, but one way to test would be to try to print direct from ID. Do the colors print correctly then?
    What do you see in Acrobat when you turn on Overprint Preview? Is the color still there?
    Can you post this PDF on a server someplace so we can download and test it?
    Peter

  • Cannot print document with added barcode text boxes

    G'day
    I'm adding two text boxes to an illustrator document with Applescript, but when I go to print, ?I get an error 'Cannot print the illustration. The Color Management settings are inconsistent.'
    The error message is not error trappable.
    I have to barcode thousands of documents a year, and this is a big deal breaker. Is there any fix, please?
    Regards
    Brian Christmas
    try
      set printerName to my theLargePagePrinter as string
      set paperOptions to {class:paper options, name:largePaperSize}
      set jobOptions to {class:job options, designation:all layers} # , print options:printOptions}
      set colorOptions to {class:color management options, profile kind:printer profile}
      set flatOpts to {class:flattening options, clip complex regions:true, gradient resolution:360, rasterization resolution:360}
      set printOptions to {class:print options, printer name:printerName, paper settings:paperOptions, flattener settings:flatOpts, job settings:jobOptions, color management settings:colorOptions}
      try
      set p to 17
      tell application "System Events" to tell process "Adobe Illustrator"
      click menu item "Fit to Artwork Bounds" of menu 1 of menu item "Artboards" of menu 1 of menu bar item "Object" of menu bar 1
      end tell
      end try
      set p to 18
      say 7
      print document 1 options printOptions
      say 8
      on error errmsg number errnum
      tell application "System Events" to display dialog "Error in printing illustrator document. " & errmsg & " number " & errnum giving up after 40
      end try

    G'day Owen, & W_J_T.
    Unfortunately your suggestions did not work for me.
    I've tried using the GUI to access the print dialog box, but as usual with Adobe, they've stuffed that up too. What I did find however, that the print dialog box recognised keystrokes, and always defaults to the Printer box when opening.
    Also, the Printer box sets itself to a matching item of whatever key is pressed, and so does the Printer Preset box.
    So, even tho I can't select any given box, provided I have a Printer Preset set, I can access it by the following (slower) method...
    activate
      tell application "System Events" to tell process "Adobe Illustrator"
      keystroke "p" using command down
      keystroke (character 1 of (my theLargePagePrinter as text)) as text
      repeat 17 times
      keystroke tab
      tell current application to delay 0.1
      end repeat
      keystroke (character 1 of (my theLargePagePrinter as text)) as text
      keystroke return
      end tell
    Note that if you have more than one printer or Printer Preset starting with the same letter, then you'll have to use more than just the first character of your printer name.
    Regards
    Brian Christmas

  • Text box on a mask prints with a 'watermark'

    I am using one of the template newsletters. It's the Family Newsletter template which says Johnson Family in the sample. I changed the text in the sky blue mast, provided with the template. On the computer, the appearance is fine, but when printed my mast text has this whitish rectangular halo (watermark?)around each word in the mast. Again, this only appears when printed, not when view on the computer. Any ideas? I have tried everything I can think of.

    Check whether you have shadowing on either the text or on the text box which is transparent.
    Peter

  • Printing a movie clip with dynamic text boxes

    I've got a certificate inside a movie clip, and i want the
    dynamic text box to dispay the user name, but for some reason it is
    coming up undefined, even though i have the dynamic text box set to
    finalname = _root.inputname, but it comes up as undefined on the
    screen. :( Can anyone tell me where i am going wrong?
    Is there a way to print just a specific movie clip on the
    screen? I can only print all the frames in the movie and without
    the dynamic text box... any help would be greatly
    appreciated.

    assign the mouseChildren property of your movieclip to false.

  • Text box should not appear when printed

    Need to create a 4-line text box/form field/comment to give users instructions, but box should not be visible when printed.  A form/text field can be set-up to be visible but not printed, however, it will not allow multiple lines of text in it.
    Any suggestions?

    You made my day, week, etc.!
    I assumed that feature was to allow users only to enter multiple lines.
    Thank you, thank you!
    Morgan Mattos
    Marin County Superior Court

  • Text Box in Header Won't Print

    I'm putting together an "Oscars Ballot Form", so (naturally!) the header has:
    "Oscar Night
    Sunday, February 24, 2008
    And the envelope, please..."
    in the centre, a .jpg of the little golden guy himself on the right, and a textbox on the left which includes the text:
    "<First Name> (This is a "merge field")
    has achieved a colossal score of:
    —————/24"
    BUT!!! When I print this, the text box doesn't appear in the print-out. (The "Golden Guy" .jpg prints fine!) If I go to preview and save it as a .pdf file, the text-box shows up on screen, but still doesn't show up when I print the .pdf version!!!
    If it's any help... Yes, I have selected the problematic text-box to cause "Wrap Left": That's the only way I know of to have it sit nicely beside the three-line text that's in the centre of the header.
    Any help or suggestions would be appreciated. This NE*V*ER used to happen when I did the same ballots on Appleworks!!! (Yes, I know I could go back to Appleworks, but I want to see it all happen on Pages, which I did, after all, pay for!)
    Much love, as always,
    Jim (XXX)

    Thank you for the response! This now gets curiouser and curiouser... The <First Name> is a recipient field in the text box, *IN the Header*, and now works fine. (It's merging with a group in Apple Address Book... friends who might be expected to watch the Academy Awards show if it actually takes place this year.) So where you say:
    "I had a look to the English PDF User's Guide.
    I understood it this way:
    We may put a sender field in the header
    but the recipient fields must be in the body of the document, not in headers"
    this doesn't actually seem to be the case. Perhaps inserting text-boxes (with recipient fields) into headers is a work-around for this, although why on earth recipient fields wouldn't be allowed in headers I have NO idea!!! Possibly the issue has now been sorted out in "Pages" but the manual hasn't been up-dated to reflect that.
    (I did, by the way, check out the trial version before purchase, but had no idea that this problem would occur. Alas, I have neither the skills nor the time to carry out a complete evaluation of Pages '08!)
    Much love, as always,
    Jim (XXX)

Maybe you are looking for

  • IW31 - User Exit or BADI for modifying Fund

    Hi, Would you know any user exit or BADI  in IW31 I Work Order Create) Transaction , to Modify Fund based during creation ? I am looking for User Exit or BADI  that could modift fund with my Logic, During SAVE "or" when ever user clicks on Menu GOTO-

  • Audio i/o not working properly after sofware update?

    i've been working along fine with my mac, then after my OS told me there was "security update 2007-005" i thought no problem and installed it, then my motu 828 only plays audio for about 5-10sec pop and clicks sometimes then gives up. i have perfectl

  • HT2736 How is it delivered and how do I know if has got there?

    If I gift an App,.... How do I know it has been delivered and how do I know it has got there? Do I get an email or message?

  • Bex Query which uses Dynamic columns to display actuals

    Hi Bex experts, I have a query issue/question. I currently have a Bex query which shows me the the planned values for each period, spanning 6 years into the future. My Key figure columns are defined as follows: Value type  = '020' Version  = mandator

  • Need to fill a lineart graphic based on its outline

    hello we a huge book of BW lineart tables and desks and stuff. the client now wants a blue fill behind them all. i can find no way of doing this short of taking the pen tool and connecting all the points to get an overall shape. this gets even harder