Email replying spanning bigger than screen.

Hey guys don't really know how to explain this, but when I'm replying to an email through "Mail" the text always spans past the screen size, so I find myself constantly moving the screen side to side just to see what I am writing.
Very annoying bug.
I've tried changing the font size and writing to various e-mail addresses does not make a difference.
Oh and I am just using a standard hotmail account, and never used to have the problem until 3.0.1 update?

Hi 39Larry,
If you are having issues with your email not fitting to the screen size on your iPad, you may want to try some things to troubleshoot.
First, quit all running applications and test again -
Force an app to close in iOS
Next, I would try restarting and if needed resetting the iPad -
Restart or reset your iPhone, iPad, or iPod touch
If the issue is still present, you may want to restore the iPad as a new device -
How to erase your iOS device and then set it up as a new device or restore it from backups
Thanks for using Apple Support Communities.
Best,
Brett L  

Similar Messages

  • Make JFrame bigger than screen size

    I have a JFrame which has several components. I need to print all the contents of this JFrame, but to do that I need to be able to make the JFrame bigger than the screen's resolution.
    When I change the size of my JFrame to anything bigger than the screens resolution it will just resize to the maximum resolution of my screen
    I tried with jFrame.getToolkit().setDynamicLayout(false); but it didn't seem have any effect
    This is the code I'm using for this:
    Some help would be appreciated!
    private void printFIButtonActionPerformed(java.awt.event.ActionEvent evt) {                                             
            // prints pay slip cards
            JFrame FIFrame2 = new JFrame();
            FIFrame2.setLayout(null);
            FIFrame2.setResizable(false);
            FIFrame2.getToolkit().setDynamicLayout(false);
            FIFrame2.setSize(594, 280*numPrintFI);
            this.incrementWeeks(cal, 2);
            int FIcount = 0;
            String line ="";
            String str ="";
            //sets up arrays to store swing components
            JPanel[] fip = new JPanel[numPrintFI];
            JTextArea[] fit = new JTextArea[numPrintFI];
            JLabel[] filbl1 = new JLabel[numPrintFI];
            JLabel[] filbl2 = new JLabel[numPrintFI];
            JLabel[] filbl3 = new JLabel[numPrintFI];
            //creates a font
            Font font = new Font("Pik", 0, 26);
            //loop creates the components needed for the pay slip cards
            for(int i = 0;i<numPrintFI;i++){
                BufferedReader in = null;
                try {
                    in = new BufferedReader(new FileReader("c:\\misc.txt"));
                line = in.readLine();
                FIcount = Integer.parseInt(line);
                } catch (FileNotFoundException ex) {
                    Logger.getLogger(CustomerIndexGUI.class.getName()).log(Level.SEVERE, null, ex);
                }catch(IOException e){
                    System.out.println("Something went wrong");
                str="";
                fip[i] = new BackgroundPanel();
                fip.setLayout( null );
    Insets insets = FIFrame2.getInsets();
    fip[i].setSize(594, 272);
    fip[i].setLocation(0 + insets.left, i*272 + insets.top);
    insets = fip[i].getInsets();
    //address field
    fit[i] = new JTextArea();
    fip[i].add(fit[i]);
    fit[i].setSize(230,80);
    fit[i].setLocation(10+insets.left,67+insets.top);
    fit[i].setText(customers[(int)printFI[i].getCustnumber()-1].getAddressee().getName().getFirstName() +
    " " + customers[(int)printFI[i].getCustnumber()-1].getAddressee().getName().getSecondName() +
    "\n" + customers[(int)printFI[i].getCustnumber()-1].getAddressee().getAddress() +
    "\n" + customers[(int)printFI[i].getCustnumber()-1].getAddressee().getPostCode());
    //left price label
    filbl1[i] = new JLabel();
    fip[i].add(filbl1[i]);
    filbl1[i].setLocation(103+insets.left,203+insets.top);
    filbl1[i].setSize(115,20);
    filbl1[i].setFont(font);
    filbl1[i].setText(Integer.toString(printFI[i].getPrice())+" 00");
    //date and price label
    filbl2[i] = new JLabel();
    fip[i].add(filbl2[i]);
    filbl2[i].setSize(370,20);
    filbl2[i].setFont(font);
    filbl2[i].setLocation(233+insets.left,203+insets.top);
    filbl2[i].setText(format.format(cal.getTime())+" "+
    Integer.toString(printFI[i].getPrice())+" 00");
    //botom line on pay slip label
    filbl3[i] = new JLabel();
    fip[i].add(filbl3[i]);
    filbl3[i].setSize(540,20);
    filbl3[i].setLocation(10+insets.left,240+insets.top);
    for(int q=0;;q++){
    if((str.length()+line.length())==15){
    break;
    str+="0";
    str+=line;
    String str2 = "+71<"+str+" +87830861< "+
    str;
    filbl3[i].setText(str2);
    FIcount++;
    String str3 = Integer.toString(FIcount);
    try {
    BufferedWriter bw = new BufferedWriter(new FileWriter("c:\\misc.txt", false));
    bw.write(str3);
    bw.flush();
    bw.close();
    } catch (IOException ex) {
    Logger.getLogger(CustomerIndexGUI.class.getName()).log(Level.SEVERE, null, ex);
    FIFrame2.getContentPane().add(fip[i]);
    FIFrame2.validate();
    FIFrame2.setVisible(true);
    System.out.println("height fiframe2: " + FIFrame2.getHeight());
    PrintUtilities pu = new PrintUtilities(FIFrame2);
    pu.printComponent(FIFrame2);
    this.incrementWeeks(cal, -2);

    Okay I just tried what you said and it doesn't work unfortunately. It will print the whole JScrollPane (e.g. the the scroll bars), but whatever components are on the JScrollPane outside of the screen will not be printed.
    This is the code I used to test it:
    package javaapplication3;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import javax.swing.*;
    * @author Mick
    public class Main {
         * @param args the command line arguments
        public static void main(String[] args) {
            // TODO code application logic here
           JFrame frame= new JFrame("test frame");
            JPanel panel= new JPanel();
            JLabel label= new JLabel("test");
            JLabel label2= new JLabel("test2");
            panel.add(label);
            panel.add(label2);
            label.setBounds(400, 1400, 60, 20);
            label2.setBounds(10, 10, 100, 100);
            panel.setPreferredSize(new Dimension(500, 1500));
            panel.setLayout(null);
            JScrollPane sp= new JScrollPane(panel);
            frame.getContentPane().add(sp, BorderLayout.CENTER);
            frame.pack();
            frame.setVisible(true);
            PrintUtilities pu = new PrintUtilities(sp);
            pu.printComponent(sp);
    import java.awt.*;
    import javax.swing.*;
    import java.awt.print.*;
    import javax.print.attribute.*;
    public class PrintUtilities implements Printable {
      private Component componentToBePrinted;
      private Paper paper = new Paper ();
      private PageFormat pageFormat = new PageFormat();
      public static void printComponent(Component c) {
        new PrintUtilities(c).print();
      public PrintUtilities(Component componentToBePrinted) {
        this.componentToBePrinted = componentToBePrinted;
        paper.setSize(594.936, 841.536);
        paper.setImageableArea(0, 0, 594.936, 841.536);
        this.pageFormat.setPaper(paper);
      public void print() {
        PrinterJob printJob = PrinterJob.getPrinterJob();
        printJob.setPrintable(this, this.pageFormat);
        if (printJob.printDialog())
          try {
            System.out.println("Calling PrintJob.print()");
            printJob.print();
            System.out.println("End PrintJob.print()");
          catch (PrinterException pe) {
            System.out.println("Error printing: " + pe);
      public int print(Graphics g, PageFormat pf, int pageIndex) {
        int response = NO_SUCH_PAGE;
        pf = this.pageFormat;
        Graphics2D g2 = (Graphics2D) g;
        //  for faster printing, turn off double buffering
        disableDoubleBuffering(componentToBePrinted);
        Dimension d = componentToBePrinted.getSize(); //get size of document
        double panelWidth = d.width; //width in pixels
        double panelHeight = d.height; //height in pixels
        double pageHeight = pageFormat.getImageableHeight(); //height of printer page
        double pageWidth = pageFormat.getImageableWidth(); //width of printer page
        double scale = pageWidth / panelWidth;
        int totalNumPages = (int) Math.ceil(scale * panelHeight / pageHeight);
        //  make sure not print empty pages
        if (pageIndex >= totalNumPages) {
          response = NO_SUCH_PAGE;
        else {
          //  shift Graphic to line up with beginning of print-imageable region
          g2.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
          //  shift Graphic to line up with beginning of next page to print
          g2.translate(0f, -pageIndex * pageHeight);
          //  scale the page so the width fits...
          g2.scale(scale, scale);
          componentToBePrinted.paint(g2); //repaint the page for printing
          enableDoubleBuffering(componentToBePrinted);
          response = Printable.PAGE_EXISTS;
        return response;
      public static void disableDoubleBuffering(Component c) {
        RepaintManager currentManager = RepaintManager.currentManager(c);
        currentManager.setDoubleBufferingEnabled(false);
      public static void enableDoubleBuffering(Component c) {
        RepaintManager currentManager = RepaintManager.currentManager(c);
        currentManager.setDoubleBufferingEnabled(true);
    }

  • JFrame bigger than screen Size (Width)

    I there a way to make the jframe bigger than the screen dimensions (800 by 800) to say 1200 by 800.
    I used netbeans to create a JFrame. I was using a laptop of screen size 1200 by 800 and I positioned my components according to those dimensions using grouplayout. Now when I run it on my desktop on lesser screen size the JFrame is truncated and I can see n operate on only 3/4 of the width. I have some buttons at the bottom right corner of the screen which I cannot totally see.
    Is there a way to make the JFrame to appear completly (Bigger than the screen size)
    Thanks in advance

    Frame built by netbeans probably uses
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    frame.setSize(screenSize.width.screenSize.height);
    or
    frame.setExtendedState(JFrame.MAXIMIZED_BOTH);you have to type the values you need by hand to setSize(); but you won't be able to get to part not visible on the screen. Better leave that as it is and employ JScrollPane

  • Wallpaper bigger than screen and moves when my mouse moves

    My wallpaper used to be fine but suddenly it became bigger than my screen such that the part of the menu bar or dock etc is out of the screen. And, when I move my mouse, the screen moves too. Anyone knows how to solve this?

    Hi
    It sounds like you might have the Zoom feature turned on. Go to System Preferences, Universal Access, and check Zoom - if it's on, turn it off.
    Matt

  • Art board bigger than screen

    My dartboard disappears off the top and bottom of my screen so I can not grab to adjust. How can I reset? I have tried using multiple screens but it does not appear across more than one screen.

    The Tab key toggles the Tool bar and Options bar on and off.
    But you might have switched to another view mode.  Tap the 'f' key which has three positions, to toggle through them.  If you turn on the Rulers (Ctrl r) they stay visible in all three modes.
    If you have Windows 7 or 8.1 you can make the workspace fit to the screen by using the Windows key along with the cursor keys, but I expect you knew that (if a Windows user).  If you can see the Options bar at any time, you can use the Workspace droop down to Rest the workspace.  That should fix all UI woes.
    Finally, if all else fails, you can go back to defaults for most things by resetting the Preferences
    Reset Preferences
    Windows — Hold down Shift Ctrl Alt immediately after starting Photoshop
    Mac — Hold down Shift Cmd Opt immediately after starting Photoshop
    BTW  Artboard is an Illustrator term, and sort of like the Photoshop Canvas, (but not really).

  • Copy window bigger than screen

    can I copy a window that is larger than the screen  without buying additional software like snagit ? Thanks. Zww27

    Some applications let you select and scan down without stopping, some do not.  Have you tried taking a screen shot of the to see if that captures content off the page - Command+Shift+3

  • Can't send emails with pictures bigger than 8mb on iphone 4s

    Hi , I can not send email with pictures attached (3 or 4 pictures) higher than 8MB. I have an Iphone 4S

    Pictures usually size is 2 or 2.2MB each, when i try to send 4 at the same time the phone takes about 10 minutes or more to send it and finally a message in the sent folder shows "Can not send email" and thats it, if I reduce the size of the pictures sending again to ~5MB the email goes ok.

  • Set startposition of a "bigger than screen site"

    Hi!
    Im doing a site that has a width of 4000 pix and i want to scroll with anchors from the middle to left or right. But where is the option to set the start position of a site?
    It always starts from the top left corner. But I wnt to start from the middle. I have an anchor that I can click for scrolling to the middle of the site but is it possible to activate that anchor when loading the site?
    Thanks a lot.

    I haven't tried this but you could maybe use a redirect when the page loads to go directly to that anchor ....
    Add this to the head section of your page in the Page Properties:
    <meta http-equiv="refresh" content="0; url=http://example.com/index.html#anchor" />
    Replaces the url with your own of course. Again, not sure if it will work in your case but you can try it. Other than that there is no way to set a default anchor so it would not be able to be done with just the domain name.

  • Image bigger than the screen

    i have a 4rd generation ipod touch and suddenly the image of desktop is bigger than the screen. i dont know how to solve this.

    Double tap the screen with 3 fingers.
    Stedman

  • How do i make the whole veiw of the computer smaller? it seems bigger than the whole screen

    how do i make the whole veiw of the computer smaller? it seems bigger than the whole screen

    often, this happens when you blunder into Accessibility/ Universal Access features, such as screen Zooming.
    System Preferences > Accessibility/ Universal Access > Seeing

  • Reply address: is it possible to use another reply address other than the pop address used in my account. I have a special work account and would like to send emails with that address as my reply address...or sent from address

    Reply address: is it possible to use another reply address other than the pop address used in my account. I have a special work account and would like to send emails with that address as my reply address...or sent from address

    i found out how to do this finally!
    1) set up google gmail account to forward your emails to (from the [email protected])
    2) go to your gmail account
    3) go to settings (cog in right hand corner)
    4) go to 'accounts and import'
    5) go to 'send mail as'
    6) click 'Add another email address you own' - add your [email protected] address
    7) google will send a verification email with code to that email address.
    8) enter code
    9) go back to gmail account  >'send mail as' and select 'make default'
    10) close mac 'mail' program and reopen it.
    as long as you have gmail account selected as the primary account in MAIL - mail will now come throught as being sent from that  [email protected] address!!

  • Imac screen is bigger than display  mouse scrolls

    imac screen is bigger than display like it is magnified mouse scrolls how do i reverse this?  I cannot find the option under display

    Hold the Control key down and scroll with the mouse or trackpad to unzooom.
    Captfred

  • Hi, I am using HP11 and iPlanet web server. When trying to upload files over HTTP using FORM ENCTYPE="multipart/form-data" that are bigger than a few Kilobytes i get a 408 error. (client timeout).

    Hi, I am using HP11 and iPlanet web server. When trying to upload files over HTTP using FORM ENCTYPE="multipart/form-data" that are bigger than a few Kilobytes i get a 408 error. (client timeout). It is as if the server has decided that the client has timed out during the file upload. The default setting is 30 seconds for AcceptTimeout in the magnus.conf file. This should be ample to get the file across, even increasing this to 2 minutes just produces the same error after 2 minutes. Any help appreciated. Apologies if this is not the correct forum for this, I couldn't see one for iPlanet and Web, many thanks, Kieran.

    Hi,
    You didnt mention which version of IWS. follow these steps.
    (1)Goto Web Server Administration Server, select the server you want to manage.
    (2)Select Preference >> Perfomance Tuning.
    (3)set HTTP Persistent Connection Timeout to your choice (eg 180 sec for three minutes)
    (4) Apply changes and restart the server.
    *Setting the timeout to a lower value, however, may    prevent the transfer of large files as timeout does not refer to the time that the connection has been idle. For example, if you are using a 2400 baud modem, and the request timeout is set to 180 seconds, then the maximum file size that can be transferred before   the connection is closed is 432000 bits (2400 multiplied by 180)
    Regards
    T.Raghulan
    [email protected]

  • What happens when an iPod is synchronized with an iTunes library that is bigger than the available space on the iPod?

    What happens when an iPod is synchronized with an iTunes library that is bigger than the available space on the iPod? I did this some time ago. On screen was shown available space somewhat less than 120 GB, but maybe somewhere between 10 and 20 GB more in the library. I had to get the iPod updated anyway, so I did proceed. However, afterwards the total content of the library was only about 110 GB. Now I wonder what did actually happen. Was the first sign only corrected for double copies of the same files or lost files or where files deleted from iTunes? And if files where deleted from iTunes, were they also deleted from my computer?

    Same as you would if you bought a pc; copy everything from your old computer to your new one.  Then you can just sync everything from the new computer, as you did with the old one.

  • How to add the rows formatted as table headings, Tables headings are repeated when a table spans more than one page.

    Hi all,
    i am facing problem while generating Test Result word document after successful execution of TestStand.
    The Problem is :
    i want to add rows Formatted as table headings, table headings are repeated when a table spans more than one page(marked as Red).
    Example:
    Page  No. 1
    |     Test case Number  |  Test Step number      |
    |      100                         |            100                   |
    Page  No. 2
    |     Test case Number  |  Test Step number      |
    |      200                         |            300                   |
    Test Result word document should generate with Table headings(marked as Red) in every pages of the document, but i am not getting as per above example.
    Please through light on this.
    Regards,
    Susa.

    Hi Santiago,
    Thank you very much for your valuable reply.
    i want to generate MS-word report for TestStand after successful testing using MS-word2000.
    Test report contains Actual values, Expected values and Pass/Fail status.
    In my program i have customized all  fields i can able to generate test report which contains Verification engineer name , test mode, test date, start time, end time Actual values, Expected values and Pass/Fail status.etc....
    To put all values of test case number, Test step number, Actual values, Expected values and Pass/Fail status in to table for each time, i will
    insert a row into table every time values arrives, once the table exceedes its page size it moves to the next page, next page should start with table row header  but it start with  values of above said parameters.
    so i'm not able to repeat table row header for each page.
    Please find the attached file for your reference.
    Attched file expected.doc  :   This file contains what i wanted to generate MS-word report. Here table row header "Test Case Number and Test Step Number " is repeated in second page.
    Attached file Actual output from source code.doc   :  This report generated from the source code. Here table row header "Test Case Number and Test Step Number" is not repeated in second page.
    Do you know any property to set "repeat as header row at the top of each page" using MS-word ActiveX in CVI/Labwindows.
    i think this information is sufficient for you,
    Still if you need some information please ask me.
    Thanks
    Susa.
    Attachments:
    Actual output from source code.doc ‏25 KB
    expected.doc ‏26 KB

Maybe you are looking for

  • Adding images and buttons without a frame appearing

    I would like to add images to some of my pages without having them appear in a frame. I would like to place some transparent gifs on the page to use as buttons for hyperlinks. I would also like to have some photos (with transparent backgrounds that a

  • Amount field in FB03 and FBV0

    I want the document amount coloumn in layout for the T.Codes FB03 and FBV0.  I am not able to find in the layout.  How to get.

  • QuickTime Error message

    After downloading a movie from a camera and then trying to open it in QuickTime, I get an error message "Error Opening Movie, The Movie could not be opened". I then tried to open other QuickTime movie I had previously been able to open and now get th

  • How to automate domain configuration creation for OAM11g

    Hi Please let me know is there any way to automate the domain configuration creation for OAM 11g . For ex- Using config.sh in silent mode to create the domain. Oracle Access Manager - Version 11.1.1.5.0 Thanks Anil

  • Update to Reader XI won't open

    I recently updated from Reader X to Reader XI. The new program initiates to blank document screen and closes immediately. It will not show new documents and it will not show documents previously viewed by Reader X.  I tried to revert to Reader X and